.absc-story-hero {
    --absc-story-bg: none;
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 860px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: var(--absc-story-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
}

.absc-story-hero--full-bleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.absc-story-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.08);
}

.absc-story-hero__content {
    width: calc(100% - 48px);
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(-8px);
    box-sizing: border-box;
}

.absc-story-hero__heading {
    margin: 0;
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-wrap: balance;
}

.absc-story-hero__button {
    position: relative;
    isolation: isolate;
    width: 250px;
    min-height: 78px;
    margin-top: 32px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.16);
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    transition: translate 320ms cubic-bezier(.22,1,.36,1), box-shadow 320ms cubic-bezier(.22,1,.36,1), background-color 320ms ease;
    -webkit-tap-highlight-color: transparent;
}

.absc-story-hero__button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.92);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 420ms cubic-bezier(.77,0,.18,1);
}

.absc-story-hero__button:hover,
.absc-story-hero__button:focus,
.absc-story-hero__button:focus-visible,
.absc-story-hero__button:active {
    text-decoration: none !important;
    outline: none;
    background-image: none !important;
}

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

.absc-story-hero__button:hover,
.absc-story-hero__button:focus-visible {
    translate: 0 -3px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.absc-story-hero__button-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.absc-story-hero__button-number {
    flex: 0 0 auto;
    color: rgba(15, 15, 15, 0.72);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
    transition: color 280ms ease, transform 420ms cubic-bezier(.22,1,.36,1);
}

.absc-story-hero__button-label {
    flex: 0 0 auto;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 280ms ease, transform 420ms cubic-bezier(.22,1,.36,1);
}

.absc-story-hero__button:hover .absc-story-hero__button-number,
.absc-story-hero__button:focus-visible .absc-story-hero__button-number {
    color: #111;
    transform: translateX(-2px);
}

.absc-story-hero__button:hover .absc-story-hero__button-label,
.absc-story-hero__button:focus-visible .absc-story-hero__button-label {
    color: #111;
    transform: translateX(2px);
}

@media (max-width: 1024px) {
    .absc-story-hero {
        min-height: 720px;
    }

    .absc-story-hero__content {
        width: calc(100% - 40px);
        max-width: 520px;
    }

    .absc-story-hero__heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .absc-story-hero {
        min-height: 620px;
    }

    .absc-story-hero__content {
        width: calc(100% - 32px);
        max-width: 420px;
    }

    .absc-story-hero__heading {
        font-size: 22px;
        line-height: 1.3;
        letter-spacing: -0.25px;
    }

    .absc-story-hero__button {
        width: 220px;
        min-height: 70px;
        margin-top: 26px;
    }

    .absc-story-hero__button-number {
        font-size: 44px;
    }

    .absc-story-hero__button-label {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .absc-story-hero__button,
    .absc-story-hero__button::before,
    .absc-story-hero__button-number,
    .absc-story-hero__button-label {
        transition: none !important;
    }
}
