@charset "UTF-8";
:root {
    --ink: #151a17;
    --ink-soft: #3b443e;
    --muted: #717a74;
    --paper: #f5f3ed;
    --paper-deep: #eae6dc;
    --white: #ffffff;
    --line: #dcded8;
    --forest: #16392c;
    --forest-light: #235440;
    --accent: #e45c31;
    --accent-dark: #ba4020;
    --sand: #d8b36a;
    --sky: #a9cbd2;
    --radius: 8px;
    --shadow: 0 24px 60px rgba(19, 27, 22, .12);
    --display: "Bahnschrift", "DIN Alternate", "PingFang SC", "Microsoft YaHei", sans-serif;
    --body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.is-menu-open,
body.is-search-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 1.14;
}

.shell {
    width: min(1380px, calc(100% - 64px));
    margin-inline: auto;
}

.section {
    padding: 96px 0;
}

.section--paper {
    background: var(--paper);
}

.section--list {
    padding-top: 56px;
}

.eyebrow {
    display: inline-block;
    color: var(--accent);
    font-family: var(--display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.topbar {
    position: relative;
    z-index: 50;
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

.topbar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar p {
    margin: 0;
}

.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(228, 92, 49, .14);
}

.topbar__links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar__links a:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(21, 26, 23, .08);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(17, 27, 21, .08);
}

.site-header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: none;
    gap: 11px;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--forest);
    border-radius: 50% 50% 50% 10px;
}

.brand__mark svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand__copy {
    display: grid;
    line-height: 1;
}

.brand__copy strong {
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: .02em;
}

.brand__copy small {
    margin-top: 5px;
    color: var(--muted);
    font-family: var(--display);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
}

.main-nav > a,
.nav-dropdown > a {
    position: relative;
    padding: 28px 0;
}

.main-nav > a:after,
.nav-dropdown > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 2px;
    background: var(--accent);
    transition: right .25s ease;
}

.main-nav > a:hover:after,
.main-nav > a.is-active:after,
.nav-dropdown > a:hover:after,
.nav-dropdown > a.is-active:after {
    right: 0;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    min-width: 150px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: .2s ease;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--ink-soft);
}

.nav-dropdown__menu a:hover {
    background: var(--paper);
    color: var(--forest);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button,
.menu-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.icon-button svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.menu-button {
    display: none;
    border: 0;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: currentColor;
    transition: .2s ease;
}

.header-search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
}

body.is-search-open .header-search {
    max-height: 140px;
}

.search-form {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 92px;
}

.search-form label {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.search-form input {
    height: 48px;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #bfc4be;
    outline: 0;
}

.search-form button {
    height: 42px;
    padding: 0 24px;
    color: var(--white);
    background: var(--forest);
    border: 0;
    border-radius: 999px;
    font-weight: 700;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(21, 26, 23, .35);
    font-size: 13px;
    font-weight: 800;
}

.text-link span {
    color: var(--accent);
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.text-link--light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .5);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
}

.button--dark {
    color: var(--white);
    background: var(--ink);
}

.button--light {
    color: var(--ink);
    background: var(--white);
}

.button--accent {
    color: var(--white);
    background: var(--accent);
}

.home-intro {
    padding: 86px 0 52px;
    background: var(--paper);
}

.home-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    align-items: end;
    gap: 80px;
}

.home-intro h1 {
    max-width: 840px;
    margin: 14px 0 0;
    font-size: 96px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .98;
}

.home-intro p {
    max-width: 500px;
    margin: 0 0 12px auto;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.8;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(330px, .75fr);
    min-height: 690px;
    margin-top: -1px;
    background: var(--forest);
}

.hero-feature {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    color: var(--white);
}

.hero-feature__media {
    position: absolute;
    inset: 0;
}

.hero-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.hero-feature:hover .hero-feature__media img {
    transform: scale(1.025);
}

.hero-feature__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 10, 7, .03) 25%, rgba(4, 10, 7, .86) 100%);
}

.hero-feature__content {
    position: absolute;
    left: clamp(24px, 5vw, 74px);
    right: clamp(24px, 6vw, 90px);
    bottom: clamp(34px, 5vw, 72px);
    max-width: 790px;
    z-index: 1;
}

.hero-feature__content h2 {
    margin: 14px 0 18px;
    font-size: 54px;
    letter-spacing: 0;
}

.hero-feature__content p {
    max-width: 670px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.85;
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.story-meta span + span:before {
    content: "·";
    margin-right: 12px;
    color: var(--accent);
}

.story-meta--light {
    color: rgba(255, 255, 255, .7);
}

.hero-side {
    padding: 42px 36px 36px;
    color: var(--white);
    background: var(--forest);
}

.section-kicker {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.section-kicker > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--forest);
    background: var(--sand);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
}

.section-kicker h2 {
    margin: 0;
    font-size: 20px;
}

.section-kicker a {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.hero-side__item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.hero-side__item:last-child {
    border-bottom: 0;
}

.hero-side__number {
    padding-top: 2px;
    color: var(--sand);
    font-family: var(--display);
    font-size: 12px;
    font-weight: 800;
}

.hero-side .story-meta {
    color: rgba(255, 255, 255, .45);
}

.hero-side h3 {
    margin: 8px 0 0;
    font-size: 18px;
    line-height: 1.42;
}

.hero-side h3 a:hover {
    color: #f0c47f;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 38px;
}

.section-heading h2 {
    margin: 9px 0 0;
    font-size: 44px;
    letter-spacing: 0;
}

.section-heading p {
    max-width: 650px;
    margin: 10px 0 0;
    color: var(--muted);
}

.section-heading--compact {
    margin-bottom: 26px;
}

.section-heading--compact h2 {
    font-size: 34px;
}

.story-grid {
    display: grid;
    gap: 38px 24px;
}

.story-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--paper-deep);
    border-radius: var(--radius);
}

.story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.story-card:hover .story-card__media img {
    transform: scale(1.045);
}

.story-card__body {
    padding-top: 18px;
}

.story-card__meta,
.video-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.story-card__meta a,
.video-card__meta a {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: .06em;
}

.story-card h3,
.video-card h3 {
    margin: 12px 0 10px;
    font-size: 21px;
    line-height: 1.4;
}

.story-card h3 a:hover,
.video-card h3 a:hover {
    color: var(--accent);
}

.story-card p,
.video-card p {
    margin-bottom: 13px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.story-card__foot {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
}

.video-wall {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 24px;
}

.video-wall__item--lead {
    grid-column: span 2;
}

.video-wall__item--lead .video-card__media {
    aspect-ratio: 16 / 8.8;
}

.video-wall__item--lead h3 {
    font-size: 28px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 26px;
}

.video-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #dce2de;
    border-radius: var(--radius);
}

.video-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.video-card:hover .video-card__media img {
    transform: scale(1.045);
}

.play-button,
.video-lead__play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--ink);
    background: rgba(255, 255, 255, .93);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: .25s ease;
}

.play-button svg,
.video-lead__play svg {
    width: 24px;
    fill: currentColor;
}

.video-card:hover .play-button,
.video-lead__frame:hover .video-lead__play {
    color: var(--white);
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.08);
}

.video-card__duration,
.video-lead__duration {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 4px 7px;
    color: var(--white);
    background: rgba(8, 12, 10, .75);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

.video-card__body {
    padding-top: 16px;
}

.category-band:nth-of-type(even) {
    background: var(--paper);
}

.manifesto {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    color: var(--white);
    background: linear-gradient(90deg, rgba(7, 14, 10, .92), rgba(7, 14, 10, .48)), url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=2200&q=88") center/cover;
}

.manifesto__inner {
    max-width: 1040px;
    text-align: center;
}

.manifesto blockquote {
    margin: 24px 0;
    font-family: var(--display);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
}

.manifesto p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    letter-spacing: .08em;
}

.page-masthead {
    position: relative;
    overflow: hidden;
    padding: 86px 0 70px;
    color: var(--white);
    background: var(--forest);
}

.page-masthead:after {
    content: "JOURNAL";
    position: absolute;
    right: 4vw;
    bottom: -42px;
    color: rgba(255, 255, 255, .045);
    font-family: var(--display);
    font-size: 200px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.page-masthead--video {
    background: #15202a;
}

.page-masthead--video:after {
    content: "FILMS";
}

.page-masthead--search {
    background: var(--accent-dark);
}

.page-masthead--search:after {
    content: "SEARCH";
}

.page-masthead__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(340px, .7fr);
    align-items: end;
    gap: 80px;
}

.page-masthead h1 {
    margin: 10px 0 0;
    font-size: 82px;
    letter-spacing: 0;
}

.page-masthead .eyebrow {
    color: var(--sand);
}

.page-masthead p {
    max-width: 540px;
    margin: 0 0 12px auto;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
}

.category-tabs {
    display: flex;
    gap: 8px;
    padding-top: 24px;
    padding-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tabs a {
    flex: none;
    padding: 10px 18px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.category-tabs a.is-active,
.category-tabs a:hover {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.news-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr);
    min-height: 520px;
    margin-top: 24px;
    background: var(--paper);
}

.news-lead__image {
    min-height: 520px;
    overflow: hidden;
}

.news-lead__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-lead__content {
    align-self: center;
    padding: 58px;
}

.news-lead__content h2 {
    margin: 18px 0;
    font-size: 46px;
    letter-spacing: 0;
}

.news-lead__content h2 a:hover {
    color: var(--accent);
}

.news-lead__content > p {
    color: var(--muted);
    line-height: 1.9;
}

.byline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.video-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(360px, .75fr);
    min-height: 540px;
    margin-top: 24px;
    color: var(--white);
    background: #17232d;
}

.video-lead__frame {
    position: relative;
    min-height: 540px;
    overflow: hidden;
}

.video-lead__frame > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-lead__frame:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 14, 18, .06), rgba(8, 14, 18, .35));
}

.video-lead__play {
    z-index: 2;
    width: 76px;
    height: 76px;
}

.video-lead__duration {
    z-index: 2;
    right: 18px;
    bottom: 18px;
    padding: 6px 9px;
}

.video-lead__copy {
    align-self: center;
    padding: 56px;
}

.video-lead__copy h2 {
    margin: 18px 0;
    font-size: 48px;
    letter-spacing: 0;
}

.video-lead__copy p {
    color: rgba(255, 255, 255, .65);
}

.pagination {
    margin-top: 66px;
}

.pagination__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.pagination a.is-active,
.pagination a:hover {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.empty-state {
    padding: 100px 24px;
    text-align: center;
    background: var(--paper);
    border-radius: var(--radius);
}

.empty-state h1,
.empty-state h2 {
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--muted);
}

.article-detail {
    background: var(--white);
}

.article-hero {
    padding: 60px 0 0;
    background: var(--paper);
}

.article-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 62px;
    align-items: center;
}

.article-hero__copy {
    padding-bottom: 60px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 12px;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs span {
    color: #aeb4af;
}

.article-hero h1 {
    margin: 14px 0 24px;
    font-size: 68px;
    letter-spacing: 0;
}

.article-hero__summary {
    max-width: 700px;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.9;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--forest);
    border-radius: 50%;
    font-weight: 800;
}

.article-byline > div {
    display: grid;
    line-height: 1.35;
}

.article-byline strong {
    font-size: 14px;
}

.article-byline div span {
    color: var(--muted);
    font-size: 11px;
}

.source-tag {
    margin-left: auto;
    padding: 6px 10px;
    color: var(--forest);
    background: rgba(22, 57, 44, .08);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.article-hero__image {
    height: 620px;
    margin: 0;
    overflow: hidden;
}

.article-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
    justify-content: center;
    gap: 90px;
    padding-top: 78px;
    padding-bottom: 110px;
}

.article-content {
    color: #29302b;
    font-size: 17px;
    line-height: 2;
}

.article-content > p:first-child,
.article-content > .lead:first-child {
    color: var(--ink);
    font-size: 21px;
    line-height: 1.85;
}

.article-content h2 {
    margin: 58px 0 20px;
    font-size: 34px;
    letter-spacing: 0;
}

.article-content h3 {
    margin: 42px 0 16px;
    font-size: 25px;
}

.article-content a {
    color: var(--accent-dark);
    border-bottom: 1px solid currentColor;
}

.article-content blockquote {
    margin: 46px 0;
    padding: 8px 0 8px 30px;
    color: var(--forest);
    border-left: 4px solid var(--accent);
    font-family: var(--display);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.65;
}

.article-content ul,
.article-content ol {
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 9px;
}

.article-content img {
    margin: 36px 0;
    border-radius: var(--radius);
}

.article-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 56px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.article-actions > span {
    margin-right: 12px;
    color: var(--muted);
    font-weight: 700;
}

.article-actions button,
.article-actions a {
    padding: 7px 12px;
    color: var(--ink-soft);
    background: var(--paper);
    border: 0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.article-actions button:hover,
.article-actions a:hover {
    color: var(--white);
    background: var(--forest);
}

.article-pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 34px;
}

.article-pager > div {
    display: grid;
    gap: 8px;
}

.article-pager > div:last-child {
    text-align: right;
}

.article-pager span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.article-pager a {
    font-weight: 800;
    line-height: 1.5;
}

.article-pager a:hover {
    color: var(--accent);
}

.article-pager em {
    color: var(--muted);
    font-style: normal;
}

.aside-sticky {
    position: sticky;
    top: 112px;
}

.aside-heading {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.aside-heading h2 {
    margin: 6px 0 0;
    font-size: 26px;
}

.aside-stories article {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.aside-stories img {
    width: 108px;
    height: 82px;
    object-fit: cover;
    border-radius: 6px;
}

.aside-stories span {
    color: var(--muted);
    font-size: 10px;
}

.aside-stories h3 {
    margin: 7px 0 0;
    font-size: 15px;
    line-height: 1.45;
}

.aside-stories h3 a:hover {
    color: var(--accent);
}

.aside-cta {
    margin-top: 28px;
    padding: 28px;
    color: var(--white);
    background: var(--forest);
    border-radius: var(--radius);
}

.aside-cta > span {
    color: var(--sand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.aside-cta h3 {
    margin: 10px 0 18px;
    font-size: 23px;
}

.video-detail {
    background: var(--white);
}

.video-detail__head {
    padding: 62px 0 34px;
    background: #f4f5f3;
}

.video-detail__head h1 {
    max-width: 1100px;
    margin: 12px 0 20px;
    font-size: 62px;
    letter-spacing: 0;
}

.video-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: var(--muted);
    font-size: 12px;
}

.video-detail__meta a {
    color: var(--accent-dark);
    font-weight: 700;
}

.video-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 54px;
    padding-top: 44px;
    padding-bottom: 110px;
}

.video-player {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050807;
    border-radius: var(--radius);
}

.video-player video,
.video-player iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-player__fallback {
    position: relative;
    height: 100%;
}

.video-player__fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
}

.video-player__fallback .button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-description {
    margin-top: 48px;
    padding-top: 38px;
    border-top: 1px solid var(--line);
}

.video-list-mini article {
    border-bottom: 1px solid var(--line);
}

.video-list-mini article:first-child {
    border-top: 1px solid var(--line);
}

.video-list-mini a {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 16px 0;
}

.video-list-mini a > span {
    position: relative;
    height: 92px;
    overflow: hidden;
    border-radius: 6px;
}

.video-list-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-list-mini i {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--white);
    background: rgba(0, 0, 0, .6);
    border-radius: 50%;
    font-size: 10px;
    font-style: normal;
    transform: translate(-50%, -50%);
}

.video-list-mini h3 {
    margin: 5px 0 8px;
    font-size: 15px;
    line-height: 1.45;
}

.video-list-mini a:hover h3 {
    color: var(--accent);
}

.video-list-mini small {
    color: var(--muted);
}

.search-page {
    padding-top: 58px;
    padding-bottom: 110px;
}

.search-page__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    max-width: 940px;
    margin: 0 auto 68px;
}

.search-page__form input {
    height: 62px;
    padding: 0 22px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
}

.search-page__form input:focus {
    border-color: var(--forest);
}

.search-page__form .button {
    min-width: 130px;
}

.search-empty {
    padding: 120px 24px;
    text-align: center;
    background: var(--paper);
    border-radius: var(--radius);
}

.search-empty > span {
    color: var(--accent);
    font-family: var(--display);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.search-empty h2 {
    margin: 14px 0 8px;
    font-size: 36px;
}

.search-empty p,
.search-summary {
    color: var(--muted);
}

.search-summary {
    margin-bottom: 48px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.search-section + .search-section {
    margin-top: 86px;
}

.empty-inline {
    padding: 34px;
    color: var(--muted);
    background: var(--paper);
    border-radius: var(--radius);
}

.site-footer {
    padding-top: 74px;
    color: rgba(255, 255, 255, .68);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.5fr) .7fr .7fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
}

.brand--footer {
    color: var(--white);
}

.brand--footer .brand__mark {
    color: var(--ink);
    background: var(--sand);
}

.brand--footer .brand__copy small {
    color: rgba(255, 255, 255, .43);
}

.footer-brand p {
    max-width: 440px;
    margin: 24px 0 0;
    line-height: 1.9;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-links h3,
.footer-note h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 15px;
}

.footer-links a {
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--sand);
}

.footer-note p {
    margin-bottom: 18px;
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 35;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--accent);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .main-nav {
        gap: 20px;
    }

    .story-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-side {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 34px;
    }

    .hero-side__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 28px;
    }

    .article-layout {
        grid-template-columns: minmax(0, 760px);
    }

    .article-aside {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1.3fr .8fr .8fr;
    }

    .footer-note {
        grid-column: 1 / -1;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }
}

@media (max-width: 960px) {
    .shell {
        width: min(100% - 40px, 1380px);
    }

    .section {
        padding: 72px 0;
    }

    .topbar__links {
        display: none;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .menu-button {
        display: grid;
    }

    .main-nav {
        position: fixed;
        inset: 106px 0 0;
        z-index: 45;
        display: grid;
        align-content: start;
        gap: 0;
        margin: 0;
        padding: 26px 20px 60px;
        background: var(--paper);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .25s ease;
    }

    body.is-menu-open .main-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav > a,
    .nav-dropdown > a {
        padding: 17px 4px;
        border-bottom: 1px solid var(--line);
        font-family: var(--display);
        font-size: 22px;
    }

    .main-nav > a:after,
    .nav-dropdown > a:after {
        display: none;
    }

    .nav-dropdown__menu {
        position: static;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 12px 0 18px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown__menu a {
        padding: 10px 4px;
        color: var(--muted);
        background: transparent;
        font-size: 13px;
    }

    body.is-menu-open .menu-button span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    body.is-menu-open .menu-button span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .home-intro__inner,
    .page-masthead__inner,
    .news-lead,
    .video-lead,
    .video-detail__layout {
        grid-template-columns: 1fr;
    }

    .home-intro__inner {
        gap: 34px;
    }

    .home-intro p,
    .page-masthead p {
        margin-left: 0;
    }

    .hero-side {
        grid-template-columns: 1fr;
    }

    .video-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-wall__item--lead {
        grid-column: span 2;
    }

    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-hero__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .article-hero__copy {
        padding-bottom: 0;
    }

    .article-hero__image {
        height: 520px;
    }

    .video-detail__layout {
        gap: 62px;
    }

    .video-list-mini {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 24px;
    }
}

@media (max-width: 680px) {
    .shell {
        width: min(100% - 30px, 1380px);
    }

    .section {
        padding: 58px 0;
    }

    .home-intro {
        padding: 56px 0 38px;
    }

    .home-intro h1 {
        font-size: 50px;
    }

    .home-intro p,
    .page-masthead p {
        font-size: 15px;
    }

    .hero-feature,
    .hero-grid {
        min-height: 580px;
    }

    .hero-feature__content h2 {
        font-size: 34px;
    }

    .hero-feature__content p {
        display: none;
    }

    .hero-side {
        padding: 30px 20px;
    }

    .hero-side__list {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .story-grid--four,
    .story-grid--three,
    .video-grid,
    .video-wall {
        grid-template-columns: 1fr;
    }

    .video-wall__item--lead {
        grid-column: auto;
    }

    .video-wall__item--lead h3 {
        font-size: 22px;
    }

    .page-masthead {
        padding: 60px 0 48px;
    }

    .page-masthead h1 {
        font-size: 48px;
    }

    .page-masthead:after {
        opacity: .55;
    }

    .news-lead__image,
    .news-lead {
        min-height: 360px;
    }

    .news-lead__content,
    .video-lead__copy {
        padding: 34px 24px 42px;
    }

    .news-lead__content h2,
    .video-lead__copy h2 {
        font-size: 32px;
    }

    .video-lead__frame {
        min-height: 320px;
    }

    .article-hero {
        padding-top: 38px;
    }

    .article-hero h1 {
        font-size: 40px;
    }

    .article-hero__summary {
        font-size: 16px;
    }

    .article-hero__image {
        height: 300px;
    }

    .article-layout {
        gap: 0;
        padding-top: 46px;
        padding-bottom: 72px;
    }

    .article-content {
        font-size: 16px;
    }

    .article-content > p:first-child,
    .article-content > .lead:first-child {
        font-size: 18px;
    }

    .article-content h2 {
        margin-top: 42px;
        font-size: 29px;
    }

    .article-content blockquote {
        padding-left: 20px;
        font-size: 21px;
    }

    .article-pager {
        grid-template-columns: 1fr;
    }

    .article-pager > div:last-child {
        text-align: left;
    }

    .video-detail__head {
        padding-top: 42px;
    }

    .video-detail__head h1 {
        font-size: 38px;
    }

    .video-detail__layout {
        padding-top: 24px;
        padding-bottom: 72px;
    }

    .video-list-mini {
        grid-template-columns: 1fr;
    }

    .video-list-mini a {
        grid-template-columns: 128px 1fr;
    }

    .search-page {
        padding-top: 34px;
        padding-bottom: 72px;
    }

    .search-page__form {
        grid-template-columns: 1fr;
        margin-bottom: 44px;
    }

    .search-page__form .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px 24px;
    }

    .footer-brand,
    .footer-note {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .search-form {
        grid-template-columns: 1fr auto;
        min-height: 76px;
    }

    .search-form label {
        display: none;
    }

    .search-form button {
        padding: 0 18px;
    }

    .pagination__inner {
        flex-wrap: wrap;
    }
}

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