/* featured.css — moved from site.css */
.page-featured {
    padding: 0;
    background: #000;
}
.hero {
    --col: min(var(--max), calc(100% - (var(--gutter) * 2)));
    --scale: min(1, 100vw / 772px);
    --glow-x: 45%;
    position: relative;
    height: calc(520px * var(--scale));
    overflow: hidden;
    background: #000;
    color: #fff;
}
.hero--right { --glow-x: 55%; }
.hero-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #000;
}
.hero-visual {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(395px * var(--scale));
    background-image: var(--hero-bg);
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
}
.hero-shade-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    height: calc(207px * var(--scale));
    background: linear-gradient(180deg, #000 0, #000 calc(20px * var(--scale)), rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}
.hero.is-first .hero-shade-top { display: none; }
.hero-shade-bot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: calc(130px * var(--scale));
    background: #000;
    pointer-events: none;
}
.hero-shade-bot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 110% at var(--glow-x) -10%, #fff 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.25;
    pointer-events: none;
}
.hero-car {
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: calc(772px * var(--scale));
    height: calc(383px * var(--scale));
    object-fit: contain;
    object-position: bottom center;
    pointer-events: none;
}
.hero--left .hero-car {
    left: calc(50% - (var(--col) / 2) - (83px * var(--scale)));
}
.hero--right .hero-car {
    left: auto;
    right: calc(50% - (var(--col) / 2) - (83px * var(--scale)));
}
.hero-stage {
    position: relative;
    z-index: 4;
    width: var(--col);
    height: 100%;
    margin-inline: auto;
    pointer-events: none;
}
.hero-card {
    position: absolute;
    top: auto;
    bottom: 48px;
    z-index: 5;
    width: min(492px, 43%);
    min-height: 259px;
    max-height: 430px;
    border-radius: 25px;
    box-shadow: var(--frame-shadow);
    pointer-events: auto;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease;
}
.hero--left .hero-card { right: 0; }
.hero--right .hero-card { left: 0; }
.hero-card.is-link { cursor: pointer; }
.hero-card-clip {
    position: relative;
    min-height: 259px;
    max-height: 430px;
    height: 100%;
    border-radius: 25px;
}
.hero-card-fill {
    position: relative;
    box-sizing: border-box;
    min-height: 259px;
    height: 100%;
    padding: 1.45rem 2.6rem 1rem;
    overflow: hidden;
    border-radius: 25px;
}
.hero-card-hit {
    position: absolute;
    inset: 0;
    z-index: 7;
    border-radius: inherit;
}
.hero-card:hover,
.hero-card:has(.hero-card-hit:focus-visible) {
    transform: translateY(-4px);
    box-shadow: var(--frame-shadow-hover);
}
.hero-card:hover .sheen,
.hero-card:has(.hero-card-hit:focus-visible) .sheen {
    opacity: 0.3;
    transform: translate(0, 0);
}
.hero-kicker,
.hero-card h2,
.hero-copy,
.hero-link { position: relative; z-index: 3; }
.hero-kicker {
    margin: 0 0 0.45rem;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 1.75px;
    line-height: 1.28;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.45;
}
.hero-card h2 {
    margin: 0 0 0.7rem;
    font-size: 23.2px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: #fff;
}
.hero-copy {
    margin: 0 0 0.85rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5315;
    color: #fff;
    opacity: 0.45;
}
.hero-link {
    display: none;
    align-items: center;
    gap: 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.53;
}
.hero-link-text {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}
.hero-link .legal-mail-arrow {
    --arrow-gap: 0px;
    --arrow-size: 18px;
    --arrow-nudge: 0px;
}
.hero-link:hover { color: #fff; }
.hero-last {
    --scale: min(1, 100vw / 772px);
    position: relative;
    height: 560px;
    overflow: hidden;
    background: #000;
}
.hero-last-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #000;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-last.is-first .hero-shade-top { display: none; }
.hero-last-stage {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    height: 100%;
    width: min(var(--max), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}
.hero-last-stage img {
    display: block;
    width: min(760px, 88%);
    height: auto;
}

@media (max-width: 899px) {
    .hero {
        height: auto;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #000;
    }
    .hero-frame {
        position: relative;
        inset: auto;
        height: calc(520px * var(--scale));
        flex: none;
    }
    .hero-car {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }
    .hero-stage {
        position: relative;
        height: auto;
        width: min(var(--max), calc(100% - (var(--gutter) * 2)));
        pointer-events: auto;
    }
    .hero-card {
        position: relative;
        left: auto !important;
        right: auto !important;
        bottom: auto;
        width: 100%;
        min-height: 0;
        max-height: none;
        margin: 0;
        padding-bottom: 3rem;
        border-radius: 0;
        box-shadow: none;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: none;
    }
    .hero-card-clip {
        min-height: 0;
        max-height: none;
        height: auto;
        border-radius: 0;
    }
    .hero-card-fill {
        min-height: 0;
        height: auto;
        padding: 0;
        overflow: visible;
        border-radius: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .hero-card-hit,
    .hero-card .sheen,
    .hero-card .frame-stroke,
    .hero-card .spot { display: none; }
    .hero-card:hover,
    .hero-card:has(.hero-card-hit:focus-visible) {
        transform: none;
        box-shadow: none;
    }
    .hero-link { display: inline-flex; }
    .hero-kicker { font-size: 12px; letter-spacing: 1.6px; }
    .hero-card h2 { font-size: 22px; }
    .hero-copy { font-size: 15px; opacity: 0.5; }
    .hero-last { height: auto; min-height: 0; padding: 2.2rem 0 2.8rem; }
    .hero-last-bg { inset: 0; }
    .hero-last-stage { height: auto; }
    .hero-last-stage img { width: min(640px, 100%); }
}
