/* Premium Features article — isolated from standard post and Foundation layouts. */
.feature-story {
    --feature-ink: #171715;
    --feature-paper: #f5f2ec;
    --feature-accent: #d7b778;
    --feature-warm: var(--feature-accent);
    --feature-line: rgba(23, 23, 21, .17);
    --feature-sans: 'Roboto', Arial, Helvetica, sans-serif;
    --feature-serif: Georgia, 'Times New Roman', serif;
    background: var(--feature-paper);
    color: var(--feature-ink);
    font-family: var(--feature-sans);
    overflow: hidden;
}

.feature-story *,
.feature-story *::before,
.feature-story *::after {
    box-sizing: border-box;
}

.feature-story__hero {
    align-items: flex-end;
    background: #181817;
    color: #fff;
    display: flex;
    min-height: clamp(620px, 91vh, 1040px);
    overflow: hidden;
    padding: clamp(100px, 14vw, 190px) max(24px, 7vw) clamp(70px, 9vw, 120px);
    position: relative;
}

.feature-story--no-hero .feature-story__hero {
    background:
        radial-gradient(circle at 78% 22%, rgba(215, 183, 120, .2), transparent 27%),
        linear-gradient(135deg, #171715 0%, #292824 100%);
    min-height: min(760px, 82vh);
}

.feature-story__hero-media,
.feature-story__hero-shade {
    inset: 0;
    position: absolute;
}

.feature-story__hero-media {
    --feature-parallax-y: 0px;
    height: calc(100% + 180px);
    top: -90px;
    transform: translate3d(0, var(--feature-parallax-y), 0) scale(1.035);
    will-change: transform;
}

.feature-story__hero-image {
    height: 100%;
    max-width: none;
    object-fit: cover;
    width: 100%;
}

.feature-story__hero-shade {
    background:
        linear-gradient(90deg, rgba(8, 8, 7, .78) 0%, rgba(8, 8, 7, .22) 63%, rgba(8, 8, 7, .08) 100%),
        linear-gradient(0deg, rgba(8, 8, 7, .66) 0%, transparent 55%);
}

.feature-story__hero-copy {
    max-width: 1040px;
    position: relative;
    width: 88%;
    z-index: 2;
}

.feature-story__eyebrow {
    align-items: center;
    display: flex;
    font-size: 11px;
    font-weight: 700;
    gap: 20px;
    letter-spacing: .2em;
    margin: 0 0 28px;
    text-transform: uppercase;
}

.feature-story__eyebrow span {
    color: var(--feature-warm);
}

.feature-story__eyebrow time {
    border-left: 1px solid rgba(255, 255, 255, .42);
    color: rgba(255, 255, 255, .72);
    padding-left: 20px;
}

.feature-story__hero h1 {
    color: inherit;
    font-family: var(--feature-serif);
    font-size: clamp(48px, 7.6vw, 124px);
    font-weight: 400;
    letter-spacing: -.052em;
    line-height: .92;
    margin: 0;
    max-width: 1000px;
    text-wrap: balance;
}

.feature-story__byline {
    align-items: center;
    color: rgba(255, 255, 255, .75);
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    gap: 14px 28px;
    letter-spacing: .12em;
    margin-top: 34px;
    text-transform: uppercase;
}

.feature-story__byline span + span::before {
    background: var(--feature-warm);
    border-radius: 50%;
    content: '';
    display: inline-block;
    height: 4px;
    margin: 0 28px 2px 0;
    width: 4px;
}

.feature-story__scroll {
    align-items: center;
    bottom: 50px;
    color: #fff;
    display: flex;
    font-size: 10px;
    gap: 14px;
    letter-spacing: .22em;
    position: absolute;
    right: max(24px, 7vw);
    text-transform: uppercase;
    z-index: 3;
}

.feature-story__scroll:hover,
.feature-story__scroll:focus {
    color: var(--feature-warm);
}

.feature-story__scroll i {
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    height: 42px;
    position: relative;
    width: 42px;
}

.feature-story__scroll i::after {
    border-bottom: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: '';
    height: 7px;
    left: 16px;
    position: absolute;
    top: 14px;
    transform: rotate(45deg);
    width: 7px;
}

.feature-story__article {
    padding-top: clamp(75px, 10vw, 150px);
}

.feature-story__body {
    font-family: var(--feature-sans);
    font-size: clamp(18px, 1.65vw, 23px);
    line-height: 1.78;
}

.feature-story__body > p,
.feature-story__body > h2,
.feature-story__body > h3,
.feature-story__body > h4,
.feature-story__body > ul,
.feature-story__body > ol,
.feature-story__body > blockquote,
.feature-story__body > .flex-video,
.feature-story__body > .wp-caption {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    padding-left: 24px;
    padding-right: 24px;
}

.feature-story__body > p {
    margin-bottom: 1.55em;
}

.feature-story__body > p:first-child::first-letter {
    color: var(--feature-ink);
    float: left;
    font-size: 4.35em;
    line-height: .72;
    margin: .12em .11em 0 0;
}

.feature-story__body h2,
.feature-story__body h3,
.feature-story__body h4 {
    color: var(--feature-ink);
    font-family: var(--feature-sans);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.08;
    margin-bottom: .75em;
    margin-top: 2.2em;
}

.feature-story__body h2 {
    font-size: clamp(34px, 4.8vw, 68px);
}

.feature-story__body h3 {
    font-size: clamp(27px, 3.2vw, 44px);
}

.feature-story__body a:not(.lightgallery) {
    border-bottom: 1px solid var(--feature-warm);
    color: inherit;
}

.feature-story__body blockquote {
    border: 0;
    color: var(--feature-ink);
    font-size: clamp(29px, 4vw, 54px);
    font-family: var(--feature-serif);
    font-style: italic;
    line-height: 1.22;
    margin-bottom: clamp(70px, 10vw, 140px);
    margin-top: clamp(70px, 10vw, 140px);
    max-width: 990px;
    position: relative;
    text-align: center;
}

.feature-story__body blockquote::before {
    background: var(--feature-warm);
    content: '';
    height: 2px;
    left: calc(50% - 38px);
    position: absolute;
    top: -34px;
    width: 76px;
}

.feature-story__body .feature-story__video {
    background: #0d0d0c;
    border: 0;
    border-radius: 0;
    box-shadow: 0 35px 80px rgba(15, 14, 12, .2);
    margin: clamp(100px, 14vw, 190px) auto;
    max-width: min(1280px, 92vw);
    overflow: visible;
    position: relative;
    width: auto;
}

.feature-story__body .feature-story__video::before {
    color: var(--feature-ink);
    content: 'Watch the film';
    font-family: var(--feature-sans);
    font-size: 10px;
    font-weight: 700;
    left: 0;
    letter-spacing: .2em;
    position: absolute;
    text-transform: uppercase;
    top: -32px;
}

.feature-story__video .flex-video {
    background: #000;
    margin: 0;
}

.feature-story__video iframe {
    border: 0;
}

.feature-story__youtube-link {
    align-items: center;
    background: var(--feature-ink);
    border: 0 !important;
    color: #fff !important;
    display: flex;
    font-family: var(--feature-sans);
    font-size: 12px;
    font-weight: 700;
    gap: 16px;
    letter-spacing: .1em;
    margin: 35px 0;
    padding: 22px 25px;
    text-transform: uppercase;
    transition: background-color .25s ease, transform .25s ease;
}

.feature-story__youtube-link::before {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: var(--feature-ink);
    content: '\25B6';
    display: inline-flex;
    flex: 0 0 38px;
    font-size: 10px;
    height: 38px;
    justify-content: center;
    padding-left: 2px;
    width: 38px;
}

.feature-story__youtube-link:hover,
.feature-story__youtube-link:focus {
    background: #292824;
    transform: translateY(-2px);
}

.feature-story__body > .feature-story__gallery {
    --feature-parallax-y: 0px;
    clear: both;
    display: flex;
    float: none;
    flex-wrap: wrap;
    isolation: isolate;
    margin-bottom: clamp(100px, 14vw, 210px);
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(100px, 14vw, 210px);
    max-width: min(1380px, 90vw);
    width: auto;
}

.feature-story__body > .feature-story__gallery::before,
.feature-story__body > .feature-story__gallery::after {
    display: none;
}

.feature-story__gallery--left {
    margin-left: 0 !important;
    margin-right: 7vw !important;
}

.feature-story__gallery--right {
    margin-left: 7vw !important;
    margin-right: 0 !important;
}

.feature-story__body > .feature-story__gallery--has-overlap {
    margin-bottom: 0;
}

.feature-story__gallery .columns {
    float: none;
    padding: 0;
}

.feature-story__gallery .module {
    background: transparent;
    border: 0;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
}

.feature-story__gallery .relative {
    min-height: clamp(420px, 68vw, 860px);
    overflow: hidden;
}

.feature-story__gallery .medium-4 .relative {
    min-height: clamp(300px, 34vw, 520px);
}

.feature-story__gallery img {
    height: calc(100% + 130px);
    left: 0;
    max-width: none;
    object-fit: cover;
    position: absolute;
    top: -65px;
    transform: translate3d(0, var(--feature-parallax-y), 0) scale(1.035);
    transition: transform 1.1s cubic-bezier(.2, .75, .25, 1);
    width: 100%;
    will-change: transform;
}

.feature-story__gallery a:hover img,
.feature-story__gallery a:focus img {
    transform: translate3d(0, var(--feature-parallax-y), 0) scale(1.065);
}

.feature-story__gallery--collection img {
    height: calc(100% + 90px);
    top: -45px;
    transform: translate3d(0, var(--feature-parallax-y), 0) scale(1.015);
}

.feature-story__gallery--collection a:hover img,
.feature-story__gallery--collection a:focus img {
    transform: translate3d(0, var(--feature-parallax-y), 0) scale(1.04);
}

.feature-story__gallery .overlay-title {
    background: linear-gradient(0deg, rgba(10, 10, 9, .7), transparent);
    bottom: 0;
    color: #fff;
    font-family: var(--feature-sans);
    font-size: 11px;
    font-weight: 400;
    left: 0;
    letter-spacing: .12em;
    margin: 0;
    overflow: visible;
    padding: 70px 5vw 28px;
    right: 0;
    text-align: left !important;
    text-overflow: initial;
    text-shadow: none;
    text-transform: uppercase;
    white-space: normal;
}

/* The paragraph after an image becomes an editorial overlap card. */
.feature-story__body > .feature-story__gallery + p {
    background: #fbfaf7;
    border-top: 2px solid var(--feature-warm);
    box-shadow: 0 30px 75px rgba(20, 18, 14, .13);
    clear: both;
    display: block;
    float: none;
    isolation: isolate;
    margin-top: clamp(-210px, -13vw, -130px);
    max-width: 740px;
    padding: clamp(35px, 5vw, 70px);
    position: relative;
    z-index: 2;
}

.feature-story__body > .feature-story__standalone-quote {
    margin-bottom: clamp(80px, 9vw, 125px);
    margin-top: clamp(100px, 11vw, 155px);
    max-width: 1080px;
}

.feature-story__standalone-quote p {
    margin: 0;
}

.feature-story__body > .feature-story__standalone-quote + .feature-story__gallery {
    margin-top: clamp(65px, 6vw, 100px);
}

.feature-story__body > .feature-story__gallery--left + p {
    margin-right: clamp(24px, 3vw, 55px);
}

.feature-story__body > .feature-story__gallery--right + p {
    margin-left: clamp(24px, 3vw, 55px);
}

/* Rebalance the hand-off from an overlap card, through body copy, to the next image. */
.feature-story__body > .feature-story__gallery + p + p {
    margin-top: clamp(55px, 5vw, 80px);
}

.feature-story__body > p + .feature-story__gallery {
    margin-top: clamp(75px, 6vw, 105px);
}

.feature-story__end {
    border-top: 1px solid var(--feature-line);
    display: grid;
    gap: 50px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: clamp(100px, 14vw, 190px) auto 0;
    max-width: 1180px;
    padding: clamp(50px, 7vw, 85px) 24px;
}

.feature-story__author {
    align-items: flex-start;
    display: flex;
    gap: 24px;
    max-width: 670px;
}

.feature-story__author img {
    border-radius: 50%;
    height: 80px;
    object-fit: cover;
    width: 80px;
}

.feature-story__author span,
.feature-story__share > span {
    display: block;
    font-size: 10px;
    letter-spacing: .18em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.feature-story__author strong {
    display: block;
    font-family: var(--feature-serif);
    font-size: 25px;
    font-weight: 400;
}

.feature-story__author p {
    color: rgba(23, 23, 21, .68);
    font-family: var(--feature-sans);
    line-height: 1.6;
    margin: 12px 0 0;
}

.feature-story__share {
    white-space: nowrap;
}

.feature-story__share a {
    align-items: center;
    border: 1px solid var(--feature-line);
    border-radius: 50%;
    color: var(--feature-ink);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    margin: 8px 4px 0 0;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
    width: 42px;
}

.feature-story__share a:hover,
.feature-story__share a:focus {
    background: var(--feature-ink);
    color: #fff;
    transform: translateY(-2px);
}

.feature-story__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    grid-column: 1 / -1;
}

.feature-story__tags a {
    border: 1px solid var(--feature-line);
    border-radius: 999px;
    color: var(--feature-ink);
    font-size: 10px;
    letter-spacing: .12em;
    padding: 9px 14px;
    text-transform: uppercase;
}

.feature-story__navigation {
    background: #181817;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-story__navigation-link {
    color: #fff;
    min-height: 290px;
    padding: clamp(55px, 8vw, 110px);
    position: relative;
    transition: background-color .3s ease;
}

.feature-story__navigation-link + .feature-story__navigation-link {
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.feature-story__navigation-link--next {
    grid-column: 2;
    text-align: right;
}

.feature-story__navigation-link:hover,
.feature-story__navigation-link:focus {
    background: #22211f;
    color: var(--feature-warm);
}

.feature-story__navigation-link span {
    display: block;
    font-size: 10px;
    letter-spacing: .18em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.feature-story__navigation-link strong {
    display: block;
    font-family: var(--feature-serif);
    font-size: clamp(25px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.12;
}

.feature-reveal {
    opacity: 0;
    transform: translate3d(0, 35px, 0);
    transition: opacity .85s ease, transform .95s cubic-bezier(.22, .75, .25, 1);
}

.feature-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 760px) {
    .feature-story__hero {
        min-height: 78vh;
        padding-bottom: 70px;
    }

    .feature-story__hero-copy {
        width: 100%;
    }

    .feature-story__hero-shade {
        background: linear-gradient(0deg, rgba(8, 8, 7, .8) 0%, rgba(8, 8, 7, .18) 80%);
    }

    .feature-story__scroll {
        display: none;
    }

    .feature-story__byline span + span::before {
        margin-right: 14px;
    }

    .feature-story__body > .feature-story__gallery {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: none;
    }

    .feature-story__gallery .relative,
    .feature-story__gallery .medium-4 .relative {
        min-height: 70vh;
    }

    .feature-story__gallery .medium-4 {
        float: none;
        width: 100%;
    }

    .feature-story__body .feature-story__video {
        box-shadow: none;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .feature-story__body .feature-story__video::before {
        left: 20px;
    }

    .feature-story__body > .feature-story__gallery + p,
    .feature-story__body > .feature-story__gallery--left + p,
    .feature-story__body > .feature-story__gallery--right + p {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -75px;
        padding: 30px;
    }

    .feature-story__body > .feature-story__gallery + p + p {
        margin-top: 45px;
    }

    .feature-story__body > p + .feature-story__gallery {
        margin-top: 75px;
    }

    .feature-story__body > .feature-story__standalone-quote {
        margin-bottom: 60px;
        margin-top: 75px;
    }

    .feature-story__body > .feature-story__standalone-quote + .feature-story__gallery {
        margin-top: 60px;
    }

    .feature-story__end {
        grid-template-columns: 1fr;
    }

    .feature-story__navigation {
        grid-template-columns: 1fr;
    }

    .feature-story__navigation-link,
    .feature-story__navigation-link--next {
        grid-column: 1;
        min-height: 220px;
        text-align: left;
    }

    .feature-story__navigation-link + .feature-story__navigation-link {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .14);
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-story *,
    .feature-story *::before,
    .feature-story *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .feature-story__hero-media,
    .feature-story__gallery,
    .feature-reveal {
        opacity: 1;
        transform: none !important;
    }
}

@media print {
    .feature-story__hero {
        min-height: 500px;
    }

    .feature-story__scroll,
    .feature-story__share,
    .feature-story__navigation {
        display: none;
    }

    .feature-reveal {
        opacity: 1;
        transform: none;
    }
}
