.absc-our-story,
.absc-our-story * {
    box-sizing: border-box;
}

.absc-our-story {
    --absc-story-left: 50%;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 820px;
    overflow: hidden;
    background: #fff;
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: #111;
}

.absc-our-story__inner {
    position: relative;
    width: auto;
    min-height: inherit;
    margin-left: 68px;
    margin-right: 68px;
    display: grid;
    grid-template-columns: minmax(0, var(--absc-story-left)) minmax(0, calc(100% - var(--absc-story-left)));
    overflow: hidden;
    background: #fff;
}

.absc-our-story--full-bleed .absc-our-story__inner {
    margin-left: 0;
    margin-right: 0;
}

.absc-our-story__content {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 72px 34px;
    background: #fff;
}

.absc-our-story__content-inner {
    width: 100%;
    max-width: 835px;
    margin: 0 auto 0 0;
}

.absc-our-story__eyebrow {
    margin: 0 0 22px;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.absc-our-story__title {
    margin: 0 0 22px;
    padding: 0;
    color: #111;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.absc-our-story__body {
    margin: 0;
    color: #111;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.absc-our-story__body p {
    margin: 0 0 10px;
    padding: 0;
}

.absc-our-story__body p:last-child {
    margin-bottom: 0;
}

.absc-our-story__button {
    position: relative;
    isolation: isolate;
    width: 255px;
    min-height: 62px;
    margin-top: 34px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #111;
    background: #fff;
    border: 1px solid #111;
    border-radius: 0;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color .3s ease, border-color .3s ease, transform .35s cubic-bezier(.22,1,.36,1);
    -webkit-tap-highlight-color: transparent;
}

.absc-our-story__button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #111;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .42s cubic-bezier(.77,0,.18,1);
}

.absc-our-story__button:hover,
.absc-our-story__button:focus-visible {
    color: #fff;
    text-decoration: none !important;
    transform: translateY(-2px);
}

.absc-our-story__button:hover::before,
.absc-our-story__button:focus-visible::before {
    transform: scaleX(1);
}

.absc-our-story__button:focus-visible {
    outline: 1px dashed currentColor;
    outline-offset: 3px;
}

.absc-our-story__button-inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.absc-our-story__button-prefix,
.absc-our-story__button-label {
    display: inline-block;
}

.absc-our-story__media {
    --absc-story-image-height: 520px;
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #111;
}

.absc-our-story__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

.absc-our-story__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 1024px) {
    .absc-our-story:not(.absc-our-story--full-bleed) .absc-our-story__inner {
        margin-left: 26px;
        margin-right: 26px;
    }


    .absc-our-story {
        min-height: 680px;
    }

    .absc-our-story__content {
        padding: 56px 28px;
    }

    .absc-our-story__title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .absc-our-story {
        min-height: 0 !important;
    }

    .absc-our-story__inner {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .absc-our-story__content,
    .absc-our-story__media {
        width: 100%;
    }

    .absc-our-story__content {
        order: 1;
        padding: 44px 20px 48px;
    }

    .absc-our-story__media {
        order: 2;
        height: var(--absc-story-image-height);
        min-height: var(--absc-story-image-height);
    }

    .absc-our-story__image {
        position: absolute;
    }

    .absc-our-story__eyebrow {
        margin-bottom: 18px;
        font-size: 12px;
    }

    .absc-our-story__title {
        margin-bottom: 18px;
        font-size: 30px;
        letter-spacing: 1.5px;
    }

    .absc-our-story__body {
        font-size: 12px;
        line-height: 1.55;
    }

    .absc-our-story__button {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .absc-our-story__button,
    .absc-our-story__button::before {
        transition: none !important;
    }
}

/* v1.15.3 — hard full-cover protection for the right image column.
   Some themes/global Elementor rules force img height:auto or max-width:100%,
   so the image is explicitly locked to the media box. */
.absc-our-story__media {
    align-self: stretch;
    height: 100%;
}

.absc-our-story__media > img.absc-our-story__image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 767px) {
    .absc-our-story__media {
        height: var(--absc-story-image-height) !important;
        min-height: var(--absc-story-image-height) !important;
    }

    .absc-our-story__media > img.absc-our-story__image {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
    }
}
