.more-post-hero {
    --more-hero-grid: 1400px;
    --more-hero-side: 20px;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
    color: #fff;
    isolation: isolate;
}

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

.more-post-hero__media,
.more-post-hero__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.more-post-hero__media {
    /* Desktop: fill the viewport below More's 80px header/menu. */
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
    min-height: 520px;
    max-height: none;
}

.more-post-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.more-post-hero__gradient {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 65%,
        rgba(0, 0, 0, .15) 72%,
        rgba(0, 0, 0, .50) 88%,
        rgba(0, 0, 0, .78) 100%
    );
}

.more-post-hero__content-wrap {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.more-post-hero__content {
    box-sizing: border-box;
    width: 100%;
    max-width: calc(var(--more-hero-grid) + (var(--more-hero-side) * 2));
    margin: 0 auto;
    padding: 0 var(--more-hero-side) clamp(34px, 4.5vw, 68px);
    text-align: center;
}

.more-post-hero__category {
    display: inline-block;
    margin: 0 0 26px;
    color: #fff !important;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none !important;
}

.more-post-hero__category:hover {
    opacity: .78;
}

.more-post-hero__title {
    width: min(1180px, 100%);
    margin: 0 auto !important;
    color: #fff !important;
    font-family: "Newsreader", Georgia, serif !important;
    font-size: clamp(42px, 3.5vw, 52px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: 0;
    text-align: center;
    text-wrap: balance;
    text-shadow: 0 1px 18px rgba(0, 0, 0, .16);
}

.more-post-hero__subtitle {
    width: min(820px, 100%);
    margin: 20px auto 0;
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(17px, 1.35vw, 21px);
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: -.01em;
    opacity: 1;
    text-align: center;
    text-wrap: balance;
}

@media (max-width: 1140px) {
    .more-post-hero__title {
        font-size: clamp(40px, 4.8vw, 50px);
    }

    .more-post-hero__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .more-post-hero {
        --more-hero-side: 20px;
    }

    .more-post-hero__media {
        /* Mobile keeps the editorial 4:5 frame and uses slider_image_mobile when available. */
        height: auto;
        aspect-ratio: 4 / 5;
        min-height: 0;
        max-height: none;
    }

    .more-post-hero__gradient {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 62%,
            rgba(0, 0, 0, .15) 70%,
            rgba(0, 0, 0, .52) 88%,
            rgba(0, 0, 0, .80) 100%
        );
    }

    .more-post-hero__content {
        padding-bottom: 28px;
    }

    .more-post-hero__category {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .more-post-hero__title {
        width: 100%;
        font-size: clamp(32px, 8.5vw, 40px);
        line-height: 1;
        letter-spacing: 0;
    }

    .more-post-hero__subtitle {
        width: min(560px, 100%);
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.4;
    }
}

@media (max-width: 420px) {
    .more-post-hero {
        --more-hero-side: 16px;
    }

    .more-post-hero__content {
        padding-bottom: 22px;
    }

    .more-post-hero__title {
        font-size: clamp(30px, 8vw, 38px);
    }

    .more-post-hero__subtitle {
        font-size: 14px;
    }
}
