/*
 * Copyright © 2026 Marco. All rights reserved.
 * Licensed to Pioneers and Veterans Base Camp INC.
 */
:root {
    --brand-navy: #152536;
    --brand-olive: #6B7045;
    --brand-olive-dark: #4F5633;
    --brand-olive-bright: #A8AA83;
    --accent: #6B7045;
    --bg: #FCFBF7;
    --paper: #FCFBF7;
    --ink: #24313A;
    --muted: #66727A;
    --soft: #F1EDE4;
    --line: #D3CEC1;
    --strong: #152536;
    --focus: #4F5633;
    --header-nav-bg: #DCD8D0;
    --header-nav-text: #152536;
    --header-nav-muted: #36444D;
    --header-nav-line: rgba(21, 37, 54, .16);
    --serif: var(--gh-font-heading, Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif);
    --sans: var(--gh-font-body, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    --max: 1280px;
    --reading: 720px;
    --gutter: 28px;
    --radius-media: 4px;
    --radius-control: 4px;
    --tracking-body: 0;
    --tracking-heading: 0;
    --tracking-ui: 0;
    --tracking-meta: 0;
    --leading-body: 1.58;
    --leading-content: 1.72;
    --leading-heading: 1.12;
    --word-spacing-body: .012em;
    --word-spacing-ui: .015em;
    --word-spacing-meta: .025em;
    --content-image-standard: 680px;
    --content-image-wide: 900px;
    --content-image-full: 1100px;
    --post-feature-image-max: 920px;
    --page-feature-image-max: 840px;
    --mobile-header-bar-height: 72px;
    --mobile-header-safe-top: env(safe-area-inset-top, 0px);
    --mobile-drawer-top: 0px;
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--resolved-bg, #ffffff);
    color: var(--site-text, var(--ink));
    font-family: var(--sans);
    font-size: 18px;
    line-height: var(--leading-body);
    letter-spacing: var(--tracking-body);
    word-spacing: var(--word-spacing-body);
    font-kerning: normal;
    font-variant-ligatures: common-ligatures contextual;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
    letter-spacing: var(--tracking-ui);
    word-spacing: var(--word-spacing-ui);
    font-kerning: normal;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-kerning: normal;
    letter-spacing: var(--tracking-heading);
    word-spacing: 0;
    overflow-wrap: anywhere;
}

img,
picture,
svg,
video,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.site-header :focus-visible {
    outline-color: var(--header-focus, var(--header-text, #ffffff));
}

.site-footer :focus-visible {
    outline-color: var(--footer-focus, var(--footer-text, #ffffff));
}

.wrap {
    width: min(var(--max), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 11px 16px;
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    border-radius: var(--radius-control);
    font-weight: 800;
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

#site-content {
    min-height: 45vh;
    transition: opacity 160ms ease;
}

#site-content:focus {
    outline: 0;
}

[data-ghost-cards-pending="true"] .kg-audio-player-container {
    visibility: hidden;
}

.is-pjax-loading #site-content {
    opacity: .45;
}

/* Header */

.site-header {
    position: relative;
    z-index: 40;
    padding-bottom: var(--sticky-nav-height, 0);
    background: var(--resolved-header-bg, var(--header-bg, #DEDBD3));
    color: var(--header-text, var(--brand-navy));
}

.site-header > * {
    position: relative;
    z-index: 1;
}

.brand {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(360px, 760px) minmax(220px, 1fr);
    align-items: center;
    width: 100%;
    max-width: none;
    min-height: clamp(124px, 8.594vw, 132px);
    padding: 10px max(var(--gutter), calc((100vw - var(--max)) / 2));
    background: var(--resolved-header-bg, var(--header-bg, #DEDBD3));
    isolation: isolate;
    overflow: hidden;
}

.header-mountains {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: var(--header-art-filter, none);
    pointer-events: none;
}

.brand-cover {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
    filter: grayscale(1);
    opacity: .14;
    pointer-events: none;
}

.brand-main {
    display: grid;
    grid-column: 2;
    justify-items: center;
    align-content: center;
    min-width: 0;
    text-align: center;
}

.site-title,
.footer-title {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.site-title:hover,
.footer-title:hover {
    color: inherit;
}

.site-logo {
    width: auto;
    max-width: 360px;
    max-height: 66px;
    filter: var(--header-logo-filter, none);
    object-fit: contain;
}

.brand-main p {
    max-width: 680px;
    margin: 4px 0 0;
    color: var(--header-muted, rgba(255, 255, 255, .88));
    font-family: var(--sans);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.4;
}

.socials,
.header-actions,
.mobile-menu-socials {
    display: flex;
    align-items: center;
}

.header-socials {
    grid-column: 1;
    align-self: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
    width: min(100%, 236px);
    margin-top: 2px;
}

.socials:not(:has(.social-link)) {
    display: none;
}

.social-link {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: var(--radius-control);
    color: inherit;
    line-height: 1;
    text-decoration: none;
}

.social-link:hover {
    background: var(--header-line, rgba(255, 255, 255, .18));
    color: inherit;
}

.social-icon,
.utility-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.social-icon {
    fill: currentColor;
}

.visually-hidden,
.social-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header-actions {
    align-self: start;
    grid-column: 3;
    justify-content: flex-end;
    gap: 0;
    margin-top: 2px;
    white-space: nowrap;
}

.search-btn,
.mobile-menu-search {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 11px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: var(--tracking-ui);
    word-spacing: var(--word-spacing-ui);
    text-decoration: none;
}

.search-btn:hover {
    background: var(--header-line, rgba(255, 255, 255, .16));
    color: inherit;
}

.mobile-header-shell,
.mobile-nav-overlay,
.mobile-menu-tools,
.mobile-nav-toggle {
    display: none;
}

/* Navigation */

.mainnav {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 54px;
    align-items: center;
    padding: 0 max(var(--gutter), calc((100vw - var(--max)) / 2));
    border-bottom: 1px solid var(--header-nav-line, rgba(255, 255, 255, .24));
    background: var(--header-nav-bg, #0f3659);
    box-shadow: inset 0 1px 0 var(--header-nav-line, rgba(255, 255, 255, .18));
    color: var(--header-nav-text, #ffffff);
    transition: box-shadow 180ms ease, min-height 180ms ease, background-color 180ms ease;
}

.mainnav :focus-visible {
    outline-color: var(--header-nav-focus, var(--header-nav-text, #ffffff));
}

.sticky-nav-brand {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: inherit;
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    transform: translateX(var(--sticky-nav-icon-offset, -12px));
    transition: opacity 180ms ease;
}

.sticky-nav-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.sticky-nav-brand span {
    font-weight: 850;
}

.mainnav.is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 70;
    min-height: 58px;
    padding-inline: var(--sticky-nav-side, var(--gutter));
    border: 0;
    box-shadow: 0 5px 20px rgba(6, 28, 48, .18);
}

.mainnav.is-sticky .sticky-nav-brand {
    opacity: var(--sticky-nav-progress, 1);
    pointer-events: auto;
}

.menu {
    display: flex;
    min-width: 0;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

.nav-enhancement-pending .mainnav > .menu:not(.is-ready) {
    visibility: hidden;
}

.mainnav.is-sticky > .menu {
    width: 100%;
    justify-content: flex-end;
    padding-left: var(--sticky-nav-menu-pad, 0);
    transform: translateX(var(--sticky-nav-menu-offset, 0));
}

.menu-item {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: stretch;
}

.menu-item > a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    padding: 0 14px;
    color: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: var(--tracking-ui);
    word-spacing: var(--word-spacing-ui);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.mainnav > .menu > .menu-item > a:hover,
.mainnav > .menu > .menu-item:focus-within > a {
    background: var(--header-nav-hover, rgba(255, 255, 255, .10));
    color: inherit;
}

.mainnav > .menu > .nav-current > a,
.mainnav > .menu > .nav-current-parent > a {
    box-shadow: inset 0 -3px 0 var(--brand-olive);
}

.dropdown-toggle {
    display: none;
    width: 36px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}

.has-dropdown > .dropdown-toggle {
    display: inline-flex;
    margin-left: -10px;
}

.nav-chevron {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 180ms ease;
}

.has-dropdown.is-open > .dropdown-toggle .nav-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.dropdown {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    z-index: 90;
    display: grid;
    width: max-content;
    min-width: 250px;
    max-width: min(360px, calc(100vw - 32px));
    gap: 0;
    padding: 8px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 0 0 6px 6px;
    background: var(--site-dropdown-bg, #ffffff);
    box-shadow: 0 16px 34px rgba(8, 31, 48, .18);
    color: var(--site-text, var(--ink));
    list-style: none;
}

.mainnav > .menu > .menu-item:last-child > .dropdown,
.mainnav.is-sticky > .menu > .menu-item:nth-last-child(-n + 2) > .dropdown {
    right: 0;
    left: auto;
}

.dropdown .menu-item {
    display: block;
}

.dropdown .menu-item > a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 10px 12px;
    color: inherit;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    text-transform: none;
}

.dropdown .menu-item > a:hover,
.dropdown .menu-item > a:focus-visible {
    background: var(--soft);
    color: var(--ink);
}

/* Homepage */

.home-layout,
.archive-layout,
.page-layout,
.post-layout-news {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.archive-layout,
.page-layout,
.post--article {
    padding-block: 30px 64px;
}

.home-main,
.archive-main,
.page-main,
.post-main {
    min-width: 0;
}

.home-layout {
    padding: 0 0 72px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr);
    min-height: min(760px, calc(100vh - 160px));
    border-bottom: 1px solid var(--site-line, var(--line));
    background: var(--paper);
}

.home-hero__media {
    min-height: 620px;
    overflow: hidden;
    background: var(--soft);
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
}

.home-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(52px, 6vw, 96px) clamp(42px, 6vw, 92px);
}

.home-hero__content h1 {
    max-width: 780px;
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--serif);
    font-size: clamp(52px, 5.1vw, 82px);
    font-weight: 700;
    line-height: .99;
}

.home-hero__tagline {
    margin: 28px 0 0;
    color: var(--accent);
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 800;
    line-height: 1.35;
}

.home-hero__intro {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--site-text, var(--ink));
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.64;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.home-content {
    padding-top: clamp(70px, 8vw, 116px);
}

.home-mission {
    display: grid;
    gap: 0;
}

.home-section-heading {
    max-width: 860px;
    margin-bottom: 42px;
}

.home-section-heading > p,
.mission-pillar__content > p {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.home-section-heading h2 {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 700;
    line-height: 1.02;
}

.home-section-heading > span {
    display: block;
    max-width: 680px;
    margin-top: 20px;
    color: var(--site-soft-text, var(--muted));
    font-size: 19px;
    line-height: 1.62;
}

.mission-pillar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 480px;
    border-top: 1px solid var(--site-line, var(--line));
}

.mission-pillar:last-child {
    border-bottom: 1px solid var(--site-line, var(--line));
}

.mission-pillar__media {
    min-height: 480px;
    overflow: hidden;
    background: var(--soft);
}

.mission-pillar__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-pillar:first-of-type .mission-pillar__media img {
    object-position: center 44%;
}

.mission-pillar__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 84px);
    background: color-mix(in srgb, var(--header-bg, #DEDBD3) 72%, var(--paper));
}

.mission-pillar--reverse .mission-pillar__media {
    grid-column: 2;
}

.mission-pillar--reverse .mission-pillar__content {
    grid-column: 1;
    grid-row: 1;
    background: var(--paper);
}

.mission-pillar__content h3 {
    max-width: 560px;
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--serif);
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 700;
    line-height: 1.04;
}

.mission-pillar__content > span {
    display: block;
    max-width: 600px;
    margin-top: 22px;
    color: var(--site-text, var(--ink));
    font-size: 18px;
    line-height: 1.68;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    gap: 10px;
    align-items: center;
    margin-top: 26px;
    color: var(--accent);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .035em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span {
    transition: transform 160ms ease;
}

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

.home-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: clamp(76px, 9vw, 128px) 0;
    border-top: 1px solid var(--site-line, var(--line));
    border-bottom: 1px solid var(--site-line, var(--line));
}

.home-principles > div {
    min-width: 0;
    padding: 42px clamp(22px, 4vw, 54px);
    text-align: center;
}

.home-principles > div + div {
    border-left: 1px solid var(--site-line, var(--line));
}

.home-principles h2 {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--serif);
    font-size: clamp(34px, 3.3vw, 48px);
    line-height: 1;
}

.home-principles p {
    max-width: 300px;
    margin: 18px auto 0;
    color: var(--site-soft-text, var(--muted));
    font-size: 16px;
    line-height: 1.58;
}

.home-updates-heading {
    margin: 0;
}

.wp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, .9fr));
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--site-strong, var(--strong));
}

.main-story {
    grid-row: 1 / 3;
    min-width: 0;
    padding-right: 24px;
    border-right: 1px solid var(--site-line, var(--line));
}

.main-story > a,
.compact-story > a,
.section-line > a,
.card-image,
.read-more-image {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-media);
    background: var(--soft);
}

.main-story img,
.compact-story img,
.section-line img,
.card-image img,
.read-more-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.main-story img {
    aspect-ratio: 4 / 3;
}

.compact-story img {
    aspect-ratio: 16 / 10;
}

.main-story a:hover img,
.compact-story a:hover img,
.section-line a:hover img,
.card-image:hover img,
.read-more-image:hover img {
    transform: scale(1.018);
}

.main-story h1,
.compact-story h2,
.card h2,
.archive-header h1,
.post-header h1,
.read-more-card h3,
.error-page h1 {
    margin: 0;
    color: var(--site-strong, var(--strong));
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: var(--tracking-heading);
    word-spacing: 0;
    overflow-wrap: anywhere;
}

.main-story h1 {
    margin-top: 10px;
    font-size: 56px;
    line-height: 1.06;
}

.main-story h1 a,
.compact-story h2 a,
.card h2 a,
.read-more-card h3 a {
    text-decoration: none;
}

.main-story h1 a:hover,
.compact-story h2 a:hover,
.card h2 a:hover,
.read-more-card h3 a:hover {
    color: var(--accent);
}

.main-story > p {
    max-width: 42rem;
    margin: 14px 0 0;
    color: var(--site-soft-text, var(--muted));
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.62;
}

.compact-story {
    min-width: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--site-line, var(--line));
}

.compact-story h2 {
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.16;
}

.meta,
.byline,
.post-byline,
.post-kicker,
.error-code {
    color: var(--site-muted, var(--muted));
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.48;
    letter-spacing: var(--tracking-meta);
    word-spacing: var(--word-spacing-meta);
    text-transform: uppercase;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 12px;
}

.meta a,
.post-kicker a {
    color: var(--accent);
    text-decoration: none;
}

.meta > span[aria-hidden="true"]::before {
    content: "/";
}

.byline {
    margin-top: 16px;
}

.home-lead-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.home-lead-more a,
.text-section header > a,
.slug-section header > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.home-lead-more a {
    padding: 0 18px;
    border: 1px solid currentColor;
    border-radius: var(--radius-control);
}

.home-lead-more a:hover {
    background: var(--accent);
    color: #ffffff;
}

.btn,
.error-search,
.kg-button-card a,
.kg-cta-card .kg-cta-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-control);
    background: var(--accent);
    color: #ffffff;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: var(--tracking-ui);
    word-spacing: var(--word-spacing-ui);
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.btn--secondary {
    border-color: var(--accent);
    background: transparent;
    color: var(--accent);
}

.btn--secondary:hover {
    background: var(--accent);
    color: #ffffff;
}

.btn:hover,
.error-search:hover,
.kg-button-card a:hover,
.kg-cta-card .kg-cta-button:hover {
    filter: brightness(.92);
}

.named-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    margin-top: 38px;
}

.slug-section,
.text-section {
    min-width: 0;
}

.slug-section header,
.text-section header,
.read-more-header {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 0 6px;
    border-top: 2px solid var(--site-strong, var(--strong));
    border-bottom: 1px solid var(--site-line, var(--line));
}

.slug-section header h2,
.slug-section header h3,
.text-section header h2,
.text-section header h3,
.read-more-header h2 {
    margin: 0;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-transform: uppercase;
}

.slug-section header h2 a,
.slug-section header h3 a,
.text-section header h2 a,
.text-section header h3 a {
    text-decoration: none;
}

.section-line {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid var(--site-line, var(--line));
}

.section-line img {
    aspect-ratio: 4 / 3;
}

.section-line h3,
.section-line h4,
.text-section > h3,
.text-section > h4 {
    margin: 0;
    color: var(--site-strong, var(--strong));
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.section-line h3 a,
.section-line h4 a,
.text-section > h3 a,
.text-section > h4 a {
    text-decoration: none;
}

.section-line .meta {
    margin-top: 7px;
}

.text-section > h3,
.text-section > h4 {
    padding: 15px 0;
    border-bottom: 1px solid var(--site-line, var(--line));
}

/* Archives */

.archive-header {
    margin-bottom: 30px;
    padding: 4px 0 24px;
    border-bottom: 1px solid var(--site-line, var(--line));
}

.archive-header h1 {
    font-size: 54px;
    line-height: 1.05;
}

.archive-header p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--site-soft-text, var(--muted));
    font-family: var(--serif);
    font-size: 20px;
}

.archive-description {
    white-space: pre-line;
}

.archive-header--with-image {
    display: grid;
    grid-template-columns: clamp(150px, 22vw, 210px) minmax(0, 1fr);
    column-gap: clamp(22px, 3vw, 34px);
    row-gap: 0;
    align-items: start;
}

.archive-header__image {
    grid-row: 1 / span 2;
    width: 100%;
    margin: 0;
}

.archive-header--with-image .archive-header__copy,
.archive-header--with-image .archive-description {
    grid-column: 2;
}

.archive-header__image img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-media);
    background: var(--site-subtle-surface, #f5f7f9);
    object-fit: contain;
}

@media (max-width: 520px) {
    .archive-header--with-image {
        grid-template-columns: 96px minmax(0, 1fr);
        column-gap: 16px;
        row-gap: 18px;
    }

    .archive-header__image {
        grid-row: 1;
    }

    .archive-header--with-image .archive-header__copy {
        grid-column: 2;
        align-self: center;
    }

    .archive-header--with-image .archive-description {
        grid-row: 2;
        grid-column: 1 / -1;
        margin-top: 0;
    }
}

.author-page {
    max-width: 1180px;
    padding-block: clamp(34px, 5vw, 72px) 72px;
}

.author-profile {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding-block: clamp(24px, 4vw, 48px);
    border-top: 4px solid var(--site-strong, var(--strong));
    border-bottom: 1px solid var(--site-line, var(--line));
}

.author-profile__portrait,
.author-profile__portrait img,
.author-profile__portrait-fallback {
    width: 220px;
    aspect-ratio: 1;
}

.author-profile__portrait img,
.author-profile__portrait-fallback {
    border-radius: var(--radius-media);
}

.author-profile__portrait img {
    height: 100%;
    object-fit: cover;
}

.author-profile__portrait-fallback {
    display: grid;
    place-items: center;
    border: 1px solid var(--site-line, var(--line));
    background: var(--site-soft, var(--soft));
    color: var(--site-soft-text, var(--muted));
}

.author-profile__portrait-fallback svg {
    width: 44%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.5;
}

.author-profile__body {
    min-width: 0;
}

.author-profile h1 {
    max-width: 900px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    overflow-wrap: anywhere;
}

.author-profile__bio {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--site-soft-text, var(--muted));
    font-family: var(--serif);
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.5;
}

.author-profile__count {
    margin: 20px 0 0;
    color: var(--site-soft-text, var(--muted));
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.author-socials {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.author-socials .social-link {
    border: 1px solid var(--site-line, var(--line));
    background: var(--site-paper, var(--paper));
    color: var(--site-text, var(--ink));
}

.author-socials .social-link:hover,
.author-socials .social-link:focus-visible {
    border-color: var(--site-strong, var(--strong));
    background: var(--site-soft, var(--soft));
    color: var(--site-text, var(--ink));
}

.author-posts {
    margin-top: clamp(42px, 6vw, 72px);
}

.author-posts__heading {
    padding: 0 0 18px;
    border-bottom: 2px solid var(--site-strong, var(--strong));
}

.author-posts__heading h2 {
    font-size: clamp(29px, 3.5vw, 40px);
    line-height: 1.08;
}

.author-posts .card:first-child {
    border-top: 0;
}

.author-posts__empty {
    margin: 0;
    padding: 28px 0;
    border-bottom: 1px solid var(--site-line, var(--line));
    color: var(--site-soft-text, var(--muted));
}

.latest-list,
.archive-list {
    display: grid;
    gap: 0;
}

.card {
    display: grid;
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--site-line, var(--line));
}

.card:first-child {
    border-top: 2px solid var(--site-strong, var(--strong));
}

.card-image img {
    aspect-ratio: 16 / 10;
}

.card-body {
    min-width: 0;
}

.card .meta {
    margin-top: 0;
}

.card h2 {
    margin-top: 8px;
    font-size: 32px;
    line-height: 1.13;
}

.card p {
    margin: 10px 0 0;
    color: var(--site-soft-text, var(--muted));
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.58;
}

.pagination-wrap {
    margin-top: 34px;
    padding: 18px 0;
    border-top: 2px solid var(--site-strong, var(--strong));
    border-bottom: 1px solid var(--site-line, var(--line));
}

.pagination-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.pagination-btn {
    display: inline-flex;
    width: 170px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--site-line, var(--line));
    border-radius: var(--radius-control);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: var(--tracking-ui);
    word-spacing: var(--word-spacing-ui);
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.pagination-older {
    justify-self: end;
}

.pagination-btn[href]:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.pagination-disabled {
    color: var(--site-muted, var(--muted));
    opacity: 1;
}

.pagination-status {
    color: var(--site-muted, var(--muted));
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: var(--tracking-meta);
    word-spacing: var(--word-spacing-meta);
    text-transform: uppercase;
}

/* Posts and pages */

.post-layout-news {
    grid-template-columns: minmax(0, 1fr);
}

.post-header-news {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    padding: 6px 0 24px;
    border-bottom: 1px solid var(--site-line, var(--line));
    text-align: center;
}

.post-kicker {
    margin-bottom: 10px;
}

.post-header-news h1 {
    max-width: 940px;
    margin-inline: auto;
    font-size: 62px;
    line-height: 1.06;
}

.page .post-header {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--site-line, var(--line));
    text-align: center;
}

.page .post-header h1 {
    margin-inline: auto;
    font-size: 56px;
    line-height: 1.08;
}

.dek {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--site-soft-text, var(--muted));
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.45;
}

.post-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 18px;
    text-transform: none;
}

.post-header-news .dek,
.page .post-header .dek {
    margin-right: auto;
    margin-left: auto;
}

.post-header-news .post-byline,
.post-header-news .post-share {
    justify-content: center;
}

.post-byline-separator::before {
    content: "/";
}

.post-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.post-share-button,
.post-share-noscript {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--site-line, var(--line));
    border-radius: var(--radius-control);
    background: transparent;
    color: var(--site-text, var(--ink));
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: var(--tracking-ui);
    word-spacing: var(--word-spacing-ui);
    text-decoration: none;
}

.post-share-button svg {
    width: 20px;
    height: 20px;
}

.post-share-button:hover,
.post-share-noscript:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.post-share-status {
    color: var(--site-muted, var(--muted));
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.post-image {
    width: fit-content;
    max-width: min(100%, var(--post-feature-image-max));
    margin: 28px auto 32px;
}

.page-main > .post-image {
    max-width: min(100%, var(--page-feature-image-max));
}

.post-image img {
    width: auto;
    max-width: 100%;
    max-height: min(70vh, 640px);
    margin-inline: auto;
    border-radius: var(--radius-media);
    object-fit: contain;
}

.post-image figcaption,
.kg-card figcaption,
.kg-image-card figcaption,
.kg-gallery-card figcaption {
    margin-top: 8px;
    color: var(--site-muted, var(--muted));
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: var(--tracking-meta);
    word-spacing: var(--word-spacing-meta);
    text-align: left;
}

.content {
    max-width: var(--reading);
    margin-inline: auto;
    color: var(--site-text, var(--ink));
    font-family: var(--serif);
    font-size: 19px;
    line-height: var(--leading-content);
    letter-spacing: var(--tracking-body);
    word-spacing: var(--word-spacing-body);
}

.page-main .content {
    max-width: 920px;
}

.content > * {
    margin-top: 0;
    margin-bottom: 1.35em;
}

.content > :first-child {
    margin-top: 0;
}

.content h2,
.content h3,
.content h4 {
    margin-top: 1.8em;
    margin-bottom: .55em;
    color: var(--site-strong, var(--strong));
    font-family: var(--serif);
    line-height: var(--leading-heading);
    letter-spacing: var(--tracking-heading);
    word-spacing: 0;
    overflow-wrap: anywhere;
}

.content h2 {
    font-size: 36px;
}

.content h3 {
    font-size: 29px;
}

.content h4 {
    font-size: 23px;
}

.content a {
    color: var(--accent);
    font-weight: 650;
}

.content a:hover {
    text-decoration-thickness: .14em;
}

.content blockquote {
    margin: 1.7em 0;
    padding: 4px 0 4px 22px;
    border-left: 4px solid var(--brand-olive);
    color: var(--site-strong, var(--strong));
    font-size: 23px;
    font-style: italic;
    line-height: 1.5;
}

.content hr {
    width: 100%;
    margin: 2.5em 0;
    border: 0;
    border-top: 1px solid var(--site-line, var(--line));
}

.content ul,
.content ol {
    padding-left: 1.4em;
}

.content li + li {
    margin-top: .45em;
}

.content pre,
.content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.content pre {
    max-width: 100%;
    padding: 18px;
    overflow: auto;
    border: 1px solid var(--site-line, var(--line));
    border-radius: var(--radius-control);
    background: var(--soft);
    color: var(--ink);
    font-size: 14px;
    line-height: 1.55;
}

.content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    font-family: var(--sans);
    font-size: 15px;
}

.content th,
.content td {
    padding: 10px 12px;
    border: 1px solid var(--site-line, var(--line));
    text-align: left;
}

.content iframe,
.content video {
    width: 100%;
    border: 0;
}

.kg-card {
    margin: 2em 0;
}

.content > .kg-width-wide,
.content > .kg-width-full,
.content > .kg-gallery-card,
.content > .kg-video-card,
.content > .kg-audio-card,
.content > .kg-bookmark-card,
.content > .kg-header-card,
.content > .kg-cta-card,
.content > .kg-signup-card {
    width: min(var(--content-image-full), calc(100vw - (var(--gutter) * 2)));
    max-width: none;
    margin-right: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* Keep Ghost audio cards inside the reading column. */
.content > .kg-audio-card {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    transform: none;
}

.content > .kg-header-card.kg-width-regular {
    width: min(100%, var(--content-image-standard));
    max-width: 100%;
    margin-inline: auto;
    transform: none;
}

.content > .kg-header-card.kg-width-wide {
    width: min(100%, var(--content-image-wide));
    max-width: 100%;
    margin-inline: auto;
    transform: none;
}

/* Ghost full-width header cards break out of the centered reading column. */
.content > .kg-header-card.kg-width-full {
    position: relative;
    right: 50%;
    left: 50%;
    width: 100vw;
    max-width: none;
    margin-right: -50vw;
    margin-left: -50vw;
    transform: none;
    border-radius: 0;
}

.content > .kg-image-card:not(.kg-width-wide):not(.kg-width-full) {
    width: fit-content;
    max-width: min(100%, var(--content-image-standard));
    margin-right: auto;
    margin-left: auto;
    transform: none;
}

.content > .kg-image-card.kg-width-wide {
    width: max-content;
    max-width: min(var(--content-image-wide), calc(100vw - (var(--gutter) * 2)));
}

.content > .kg-image-card.kg-width-full {
    width: max-content;
    max-width: min(var(--content-image-full), calc(100vw - (var(--gutter) * 2)));
}

.content > .kg-cta-card.kg-cta-minimal {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    transform: none;
}

.kg-gallery-image img,
.kg-video-card video {
    width: 100%;
    border-radius: var(--radius-media);
}

.kg-image-card img {
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    border-radius: var(--radius-media);
}

.content > .kg-image-card:not(.kg-width-wide):not(.kg-width-full) img {
    width: auto;
    max-width: 100%;
    max-height: min(76vh, 760px);
    margin-inline: auto;
    object-fit: contain;
}

.content > .kg-image-card:not(.kg-width-wide):not(.kg-width-full) > a {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
}

.content > .kg-image-card.kg-width-wide > a,
.content > .kg-image-card.kg-width-full > a {
    display: block;
}

.content > img,
.content > p > img:only-child {
    width: auto;
    max-width: min(100%, var(--content-image-standard));
    margin-inline: auto;
    object-fit: contain;
}

.kg-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kg-gallery-row {
    display: flex;
    gap: 6px;
}

.kg-gallery-image {
    min-width: 0;
}

.kg-gallery-image img {
    height: 100%;
    object-fit: cover;
}

.kg-bookmark-container,
.kg-callout-card,
.kg-toggle-card,
.kg-product-card-container,
.kg-file-card-container,
.kg-audio-card,
.kg-signup-card {
    border: 1px solid var(--site-line, var(--line));
    border-radius: 6px;
    background: var(--site-card-bg, rgba(255, 255, 255, .72));
}

.kg-audio-card .kg-audio-player-container,
.kg-audio-card .kg-audio-player,
.kg-audio-card .kg-audio-title {
    min-width: 0;
    max-width: 100%;
}

.kg-audio-card .kg-audio-player-container {
    overflow: hidden;
}

.kg-audio-card .kg-audio-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kg-bookmark-container {
    display: flex;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.kg-bookmark-content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px;
}

.kg-bookmark-title {
    color: var(--site-strong, var(--strong));
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.kg-bookmark-description {
    margin-top: 7px;
    color: var(--site-soft-text, var(--muted));
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.kg-bookmark-metadata {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 14px;
    color: var(--site-muted, var(--muted));
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.kg-bookmark-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    object-fit: contain;
}

.kg-bookmark-author,
.kg-bookmark-publisher {
    min-width: 0;
    overflow-wrap: anywhere;
}

.kg-bookmark-thumbnail {
    position: relative;
    width: min(34%, 260px);
    min-width: 180px;
    flex: 0 0 auto;
}

.kg-bookmark-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kg-button-card a {
    min-height: 48px;
}

.content .kg-button-card .kg-btn,
.content .kg-cta-card .kg-cta-button {
    color: var(--pv-card-button-text, #ffffff);
}

.kg-cta-card {
    overflow: hidden;
    border: 1px solid var(--site-line, var(--line));
    border-radius: 6px;
    font-family: var(--sans);
}

.kg-cta-bg-grey {
    background: rgba(151, 163, 175, .14);
}

.kg-cta-bg-white {
    background: transparent;
}

.kg-cta-bg-blue {
    background: rgba(33, 172, 232, .12);
}

.kg-cta-bg-green {
    background: rgba(52, 183, 67, .12);
}

.kg-cta-bg-yellow {
    background: rgba(240, 165, 15, .13);
}

.kg-cta-bg-red {
    background: rgba(209, 46, 46, .11);
}

.kg-cta-bg-pink {
    background: rgba(225, 71, 174, .11);
}

.kg-cta-bg-purple {
    background: rgba(135, 85, 236, .12);
}

.kg-cta-card .kg-cta-content {
    display: block;
    padding: 24px;
}

.kg-cta-card.kg-cta-has-img .kg-cta-content {
    display: grid;
    grid-template-columns: minmax(180px, .8fr) minmax(0, 1.4fr);
    gap: 24px;
    align-items: center;
}

.content .kg-cta-card.kg-cta-minimal.kg-cta-has-img .kg-cta-content {
    grid-template-columns: clamp(132px, 24%, 220px) minmax(0, 1fr);
}

.content .kg-cta-card.kg-cta-minimal .kg-cta-image-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-media);
}

.content .kg-cta-card.kg-cta-minimal .kg-cta-image-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.content .kg-cta-card.kg-cta-minimal .kg-cta-image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kg-cta-card .kg-cta-image-container img {
    width: 100%;
    border-radius: var(--radius-media);
}

.kg-cta-card .kg-cta-content-inner,
.kg-cta-card .kg-cta-text {
    min-width: 0;
}

.kg-cta-card .kg-cta-text p {
    margin: 0 0 16px;
}

.kg-cta-card .kg-cta-button:not([style*="background-color"]) {
    background-color: var(--ghost-accent-color, var(--accent));
}

.kg-cta-card .kg-cta-button:not([style*=" color:"]) {
    color: #ffffff;
}

.kg-cta-card .kg-cta-text a,
.kg-cta-card .kg-cta-sponsor-label a {
    color: currentColor;
}

.kg-cta-link-accent .kg-cta-text a,
.kg-cta-link-accent .kg-cta-sponsor-label a {
    color: var(--ghost-accent-color, var(--accent));
}

.kg-header-card {
    overflow: hidden;
    border-radius: 6px;
}

.kg-header-card .kg-header-card-content {
    min-height: 320px;
}

.kg-header-card.kg-layout-split .kg-header-card-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kg-header-card picture,
.kg-header-card-image {
    min-height: 100%;
}

.kg-header-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kg-header-card .kg-header-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.kg-header-card .kg-header-card-heading,
.kg-header-card .kg-header-card-subheading {
    letter-spacing: var(--tracking-heading);
}

.kg-header-card .kg-header-card-heading {
    font-family: var(--serif);
}

.kg-header-card.pv-card-contrast-adjusted .kg-header-card-heading,
.kg-header-card.pv-card-contrast-adjusted .kg-header-card-subheading {
    color: var(--pv-card-text) !important;
}

.gh-post-upgrade-cta,
.gh-post-upgrade-cta-content {
    border-radius: 6px;
    font-family: var(--sans);
}

.read-more-section {
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid var(--site-line, var(--line));
}

.read-more-header {
    margin-bottom: 0;
}

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

.read-more-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--site-line, var(--line));
}

.read-more-image {
    grid-row: 1 / 4;
}

.read-more-image img {
    aspect-ratio: 4 / 3;
}

.read-more-card h3 {
    font-size: 19px;
    line-height: 1.18;
}

.read-more-card p {
    display: none;
}

.read-more-card .meta {
    margin-top: 7px;
}

/* Footer */

.site-footer {
    padding: 44px 0 28px;
    background: var(--resolved-footer-bg, var(--brand-olive-dark));
    color: var(--footer-text, #ffffff);
}

.footer-grid-simple {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 70px;
    align-items: start;
}

.footer-logo {
    width: auto;
    max-width: 310px;
    max-height: 58px;
    filter: var(--footer-logo-filter, none);
    object-fit: contain;
}

.footer-grid p {
    max-width: 520px;
    margin: 20px 0 0;
    color: var(--footer-muted, rgba(255, 255, 255, .78));
    font-size: 16px;
    line-height: 1.62;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.footer-nav .menu {
    display: grid;
    width: min(100%, 720px);
    grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
    gap: 32px 40px;
    align-items: start;
    justify-content: end;
    margin: 0 0 0 auto;
}

.footer-nav .menu > .menu-item {
    display: block;
    min-width: 0;
}

.footer-nav .menu-item > a,
.footer-menu-label {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    min-height: 24px;
    align-items: center;
    padding: 0;
    color: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: var(--tracking-ui);
    word-spacing: var(--word-spacing-ui);
    text-align: left;
    text-transform: none;
}

.footer-nav .menu > .footer-menu-group > .footer-menu-label,
.footer-nav .menu > .footer-menu-group > a {
    margin-bottom: 14px;
    color: var(--brand-olive);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.footer-nav .dropdown-toggle {
    display: none;
}

.footer-nav .has-dropdown,
.footer-nav .dropdown {
    position: static;
}

.footer-nav .dropdown {
    display: grid;
    width: auto;
    min-width: 0;
    max-width: none;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
}

.footer-nav .dropdown .menu-item > a {
    min-height: 30px;
    padding: 0;
    color: inherit;
    font-size: 15px;
    font-weight: 650;
}

.footer-nav .dropdown .menu-item > a:hover,
.footer-nav .dropdown .menu-item > a:focus-visible {
    background: transparent;
    color: var(--brand-olive);
}

.footer-nav .footer-menu-group--wide {
    grid-column: span 2;
}

.footer-nav .footer-submenu--multicolumn {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    column-gap: 28px;
}

.footer-legal {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid var(--footer-line, rgba(255, 255, 255, .3));
    color: var(--footer-muted, rgba(255, 255, 255, .78));
    font-size: 14px;
    line-height: 1.58;
    letter-spacing: var(--tracking-meta);
    word-spacing: var(--word-spacing-meta);
}

.footer-legal p {
    margin: 0;
}

.footer-theme-license {
    max-width: 680px;
    line-height: 1.58;
}

/* Error page */

.error-page {
    display: grid;
    max-width: 760px;
    min-height: 56vh;
    align-content: center;
    padding-block: 72px;
    text-align: center;
}

.error-code {
    margin: 0 0 8px;
    color: var(--accent);
}

.error-page h1 {
    font-size: 56px;
    line-height: 1.04;
}

.error-page > p:not(.error-code) {
    margin: 14px 0 0;
    color: var(--site-soft-text, var(--muted));
    font-family: var(--serif);
    font-size: 21px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.error-search {
    border-color: var(--site-line, var(--line));
    background: transparent;
    color: var(--site-text, var(--ink));
}

/* Responsive */

@media (max-width: 1220px) {
    :root {
        --gutter: 22px;
    }

    .brand {
        grid-template-columns: minmax(130px, .8fr) minmax(340px, 1.4fr) minmax(220px, .8fr);
    }

    .site-logo {
        max-width: 300px;
        max-height: 68px;
    }

    .menu-item > a {
        padding-inline: 10px;
        font-size: 14px;
    }

    .home-layout,
    .archive-layout,
    .page-layout,
    .post-layout-news {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .wp-grid {
        gap: 18px;
    }

    .main-story {
        padding-right: 18px;
    }

    .main-story h1 {
        font-size: 46px;
    }

    .compact-story h2 {
        font-size: 21px;
    }

    .post-header-news h1 {
        font-size: 54px;
    }
}

@media (max-width: 1020px) and (min-width: 901px) {
    .search-btn {
        padding-inline: 8px;
        font-size: 14px;
    }

    .mainnav {
        padding-inline: 14px;
    }

    .menu-item > a {
        padding-inline: 8px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    :root {
        --gutter: 16px;
    }

    body {
        font-size: 17px;
    }

    .brand,
    .header-socials,
    .header-actions {
        display: none;
    }

    .site-header {
        position: static;
        z-index: auto;
        padding-bottom: 0;
    }

    .mobile-header-shell {
        display: block;
        position: relative;
        min-height: calc(var(--mobile-header-bar-height) + var(--mobile-header-safe-top));
        background: var(--resolved-header-bg, var(--header-bg, #DEDBD3));
        isolation: isolate;
        overflow: hidden;
    }

    .mobile-header-shell::before {
        position: absolute;
        inset: 0 -8px;
        z-index: -1;
        background: url("../images/wilderness-mountains.svg") left bottom / auto 150% no-repeat;
        content: "";
        filter: var(--header-art-filter, none);
        opacity: .68;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    .mobile-header {
        display: grid;
        position: relative;
        height: calc(var(--mobile-header-bar-height) + var(--mobile-header-safe-top));
        grid-template-columns: 48px minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
        padding: var(--mobile-header-safe-top) 14px 0;
        color: var(--header-text, #ffffff);
        transition: height 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
    }

    .mobile-nav-toggle {
        display: inline-grid;
        width: 44px;
        height: 44px;
        place-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        color: inherit;
    }

    .mobile-nav-icon,
    .mobile-nav-icon::before,
    .mobile-nav-icon::after {
        display: block;
        width: 24px;
        height: 2px;
        background: currentColor;
        content: "";
        transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
    }

    .mobile-nav-icon {
        position: relative;
    }

    .mobile-nav-icon::before {
        position: absolute;
        top: -7px;
    }

    .mobile-nav-icon::after {
        position: absolute;
        top: 7px;
    }

    .mobile-menu-is-open .mobile-nav-icon {
        background: transparent;
    }

    .mobile-menu-is-open .mobile-nav-icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobile-menu-is-open .mobile-nav-icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .mobile-nav-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .mobile-header-brand {
        display: inline-flex;
        min-width: 0;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
    }

    .mobile-header-brand--full {
        position: absolute;
        left: 50%;
        max-width: 210px;
        transform: translateX(-50%);
    }

    .mobile-header-brand--full img {
        width: auto;
        max-width: 205px;
        max-height: 43px;
        filter: var(--header-logo-filter, none);
        object-fit: contain;
    }

    .mobile-header-brand--compact {
        display: none;
        grid-column: 2;
        justify-self: start;
    }

    .mobile-header-brand--compact img {
        width: 38px;
        height: 38px;
        object-fit: contain;
    }

    .mobile-header-is-scrolled .mobile-header-shell {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 100;
        min-height: calc(58px + var(--mobile-header-safe-top));
        background: #ffffff;
    }

    .mobile-header-is-scrolled .mobile-header-shell::before {
        opacity: 0;
    }

    .mobile-header-is-scrolled .site-header {
        padding-top: calc(58px + var(--mobile-header-safe-top));
    }

    .mobile-header-is-scrolled .mobile-header {
        height: calc(58px + var(--mobile-header-safe-top));
        grid-template-columns: 44px 46px minmax(0, 1fr);
        gap: 6px;
        padding-inline: 10px;
        background: #ffffff;
        box-shadow: 0 2px 12px rgba(10, 32, 48, .12);
        color: #142433;
    }

    .mobile-header-is-scrolled .mobile-header-brand--full {
        display: none;
    }

    .mobile-header-is-scrolled .mobile-header-brand--compact {
        display: inline-flex;
    }

    .mobile-header-is-scrolled .mobile-header :focus-visible {
        outline-color: var(--focus);
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        top: var(--mobile-drawer-top, 0);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 78;
        background: rgba(7, 22, 33, .58);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    .mobile-menu-is-open .mobile-nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .mainnav {
        display: block;
        position: fixed;
        top: var(--mobile-drawer-top, 0);
        bottom: 0;
        left: 0;
        z-index: 80;
        width: min(88vw, 390px);
        min-height: 0;
        padding: 0 20px 34px;
        border: 0;
        background: #ffffff;
        box-shadow: 16px 0 38px rgba(7, 22, 33, .20);
        color: #142433;
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(-104%);
        transition: transform 220ms ease;
    }

    .mainnav :focus-visible {
        outline-color: var(--focus);
    }

    .mainnav.is-mobile-open {
        transform: translateX(0);
    }

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

    body.mobile-menu-is-open {
        position: fixed;
        width: 100%;
    }

    .sticky-nav-brand {
        display: none;
    }

    .mobile-menu-tools {
        display: block;
        padding: 22px 0 18px;
        border-bottom: 1px solid #d2dade;
    }

    .mobile-drawer-brand a {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #142433;
        font-family: var(--serif);
        font-size: 25px;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-drawer-brand img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    .mobile-menu-search {
        width: 100%;
        justify-content: flex-start;
        margin-top: 12px;
        border: 1px solid #b9c5cb;
        border-radius: var(--radius-control);
        color: #263746;
        text-align: left;
    }

    .mobile-menu-socials {
        gap: 8px;
        margin-top: 14px;
    }

    .mobile-menu-socials .social-link {
        border: 1px solid #b9c5cb;
        border-radius: 50%;
        border-color: #b9c5cb;
        color: var(--brand-navy);
    }

    .mainnav > .menu {
        display: block;
        width: 100%;
        margin: 0;
    }

    .mainnav .menu-item {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        border-bottom: 1px solid #d2dade;
    }

    .mainnav .menu-item > a {
        min-height: 58px;
        flex: 1 1 auto;
        justify-content: flex-start;
        padding: 0 4px;
        color: #142433;
        font-size: 17px;
        text-align: left;
        text-transform: none;
    }

    .mainnav .has-dropdown > .dropdown-toggle {
        width: 48px;
        min-height: 58px;
        margin: 0;
        color: var(--brand-navy);
    }

    .mainnav .dropdown {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none;
        flex: 1 0 100%;
        padding: 0 0 10px 16px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .mainnav .dropdown .menu-item {
        border-bottom: 0;
    }

    .mainnav .dropdown .menu-item > a {
        min-height: 46px;
        padding: 6px 8px;
        font-size: 15px;
    }

    .home-layout,
    .archive-layout,
    .page-layout,
    .post-layout-news {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }

    .archive-layout,
    .page-layout,
    .post--article {
        padding-block: 24px 48px;
    }

    .home-layout {
        gap: 0;
        padding: 0 0 48px;
    }

    .home-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .home-hero__media {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .home-hero__content {
        padding: 52px max(var(--gutter), 6vw) 60px;
    }

    .home-hero__content h1 {
        max-width: 680px;
        font-size: clamp(48px, 9vw, 70px);
    }

    .home-content {
        padding-top: 70px;
    }

    .mission-pillar,
    .mission-pillar--reverse {
        grid-template-columns: minmax(0, 1fr);
    }

    .mission-pillar__media,
    .mission-pillar--reverse .mission-pillar__media {
        grid-column: 1;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .mission-pillar__content,
    .mission-pillar--reverse .mission-pillar__content {
        grid-column: 1;
        grid-row: auto;
        min-height: 360px;
        padding: 48px;
    }

    .mission-pillar--reverse .mission-pillar__content {
        order: 2;
    }

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

    .main-story {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 0 0 24px;
        border-right: 0;
        border-bottom: 1px solid var(--site-line, var(--line));
    }

    .main-story h1 {
        font-size: 44px;
    }

    .compact-story h2 {
        font-size: 23px;
    }

    .post-header-news h1,
    .page .post-header h1 {
        font-size: 48px;
    }

    .content > .kg-width-wide,
    .content > .kg-width-full,
    .content > .kg-gallery-card,
    .content > .kg-image-card,
    .content > .kg-video-card,
    .content > .kg-audio-card,
    .content > .kg-bookmark-card,
    .content > .kg-header-card,
    .content > .kg-cta-card,
    .content > .kg-signup-card {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        transform: none;
    }

    .footer-grid-simple {
        grid-template-columns: minmax(0, 1fr);
        gap: 38px;
    }

    .footer-nav,
    .footer-nav .menu {
        width: 100%;
        justify-content: start;
        margin-left: 0;
    }
}

@media (max-width: 620px) {
    .wrap {
        width: calc(100% - 28px);
    }

    .home-hero__media {
        aspect-ratio: 4 / 3;
    }

    .home-hero__media img {
        object-position: 57% center;
    }

    .home-hero__content {
        padding: 42px 20px 50px;
    }

    .home-hero__content h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .home-hero__tagline {
        margin-top: 22px;
        font-size: 17px;
    }

    .home-hero__intro {
        margin-top: 18px;
        font-size: 16px;
    }

    .home-hero__actions,
    .home-hero__actions .btn {
        width: 100%;
    }

    .home-content {
        padding-top: 54px;
    }

    .home-section-heading {
        margin-bottom: 30px;
    }

    .home-section-heading h2 {
        font-size: 40px;
    }

    .home-section-heading > span {
        font-size: 17px;
    }

    .mission-pillar__media,
    .mission-pillar--reverse .mission-pillar__media {
        aspect-ratio: 4 / 3;
    }

    .mission-pillar__content,
    .mission-pillar--reverse .mission-pillar__content {
        min-height: 0;
        padding: 38px 22px 44px;
    }

    .mission-pillar__content h3 {
        font-size: 38px;
    }

    .mission-pillar__content > span {
        font-size: 16px;
    }

    .home-principles {
        grid-template-columns: minmax(0, 1fr);
        margin: 64px 0;
    }

    .home-principles > div {
        padding: 34px 22px;
    }

    .home-principles > div + div {
        border-top: 1px solid var(--site-line, var(--line));
        border-left: 0;
    }

    .mobile-header-brand--full {
        max-width: 170px;
    }

    .mobile-header-brand--full img {
        max-width: 166px;
        max-height: 38px;
    }

    .mobile-header-is-scrolled .mobile-header {
        grid-template-columns: 42px 42px minmax(0, 1fr);
    }

    .wp-grid {
        display: block;
        padding-top: 18px;
    }

    .main-story {
        margin-bottom: 8px;
    }

    .main-story img {
        aspect-ratio: 4 / 3;
    }

    .main-story h1 {
        font-size: 39px;
    }

    .main-story > p {
        font-size: 18px;
    }

    .compact-story {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        grid-template-rows: auto 1fr;
        gap: 0 14px;
        padding: 16px 0;
    }

    .compact-story > a {
        grid-row: 1 / 3;
    }

    .compact-story img {
        height: 100%;
        min-height: 94px;
        aspect-ratio: 4 / 3;
    }

    .compact-story .meta {
        align-self: end;
        margin: 0 0 5px;
    }

    .compact-story h2 {
        align-self: start;
        margin: 0;
        font-size: 20px;
    }

    .home-lead-more {
        margin-top: 16px;
    }

    .home-lead-more a {
        width: 100%;
        justify-content: center;
    }

    .named-sections,
    .read-more-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .archive-header h1,
    .error-page h1 {
        font-size: 42px;
    }

    .card {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .card h2 {
        font-size: 29px;
    }

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

    .pagination-btn {
        width: 100%;
        justify-content: center;
        padding-inline: 10px;
    }

    .pagination-status {
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: center;
    }

    .post-header-news h1,
    .page .post-header h1 {
        font-size: 42px;
    }

    .dek {
        font-size: 20px;
    }

    .content {
        font-size: 18px;
        line-height: var(--leading-content);
    }

    .kg-bookmark-container {
        flex-direction: column-reverse;
    }

    .kg-bookmark-thumbnail {
        width: 100%;
        min-width: 0;
        aspect-ratio: 16 / 9;
    }

    .content h2 {
        font-size: 31px;
    }

    .content h3 {
        font-size: 26px;
    }

    .kg-cta-card.kg-cta-has-img .kg-cta-content,
    .kg-header-card.kg-layout-split .kg-header-card-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .content .kg-cta-card.kg-cta-minimal.kg-cta-has-img .kg-cta-content {
        grid-template-columns: clamp(80px, 28vw, 112px) minmax(0, 1fr);
        gap: 16px;
        align-items: start;
        padding: 18px;
    }

    .read-more-card {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .author-profile {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        align-items: start;
    }

    .author-profile__portrait,
    .author-profile__portrait img,
    .author-profile__portrait-fallback {
        width: 148px;
    }

    .author-profile h1 {
        font-size: 44px;
    }

    .footer-nav .menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 22px;
    }

    .footer-nav .footer-menu-group--wide {
        grid-column: 1 / -1;
    }

}

@media (max-width: 380px) {
    .compact-story {
        grid-template-columns: 106px minmax(0, 1fr);
        gap: 0 12px;
    }

    .compact-story h2 {
        font-size: 18px;
    }

    .footer-nav .menu {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-nav .footer-menu-group--wide {
        grid-column: auto;
    }

    .footer-nav .footer-submenu--multicolumn {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media print {
    body {
        padding: 0;
        color: #000000;
        background: #ffffff;
    }

    .site-header,
    .site-footer,
    .read-more-section,
    .post-share {
        display: none !important;
    }

    .post-layout-news,
    .page-layout {
        display: block;
    }

    .content,
    .page-main .content {
        max-width: none;
        font-size: 12pt;
    }
}
