*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

:root {
    --forest: #1B4332;
    --forest2: #14532D;
    --forest3: #166534;
    --forest-l: #DCFCE7;
    --gold: #C9A227;
    --gold2: #A67C00;
    --gold3: #E2B93B;
    --gold-l: #FEF9E7;
    --cream: #FAFAF5;
    --cream2: #F3F3EA;
    --cream3: #E8E8DD;
    --ink: #1A1A12;
    --ink2: #2D2D20;
    --muted: #5C5C48;
    --muted2: #8C8C78;
    --rule: #D8D8C8;
    --rule2: #C0C0A8;
    --white: #FFFFFF;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --measure: 680px;
}

body {
    font-family: var(--serif);
    background: var(--cream);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased
}

a {
    color: var(--forest);
    text-decoration: none
}

a:hover {
    color: var(--forest2);
    text-decoration: underline
}

p {
    margin-bottom: 1em
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

.adv-bar {
    background: var(--forest);
    border-bottom: 3px solid var(--gold);
    padding: 6px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 11px;
    color: rgba(255, 255, 255, .5)
}

.adv-badge {
    background: var(--gold);
    color: var(--forest2);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 2px 8px;
    flex-shrink: 0
}

.masthead {
    border-bottom: 3px double var(--rule2);
    padding: 0 24px;
    background: var(--cream)
}

.masthead__top {
    max-width: var(--measure);
    margin: 0 auto;
    padding: 9px 0 7px;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--sans);
    font-size: 10.5px;
    color: var(--muted);
    letter-spacing: .3px
}

.masthead__main {
    max-width: var(--measure);
    margin: 0 auto;
    padding: 16px 0 14px;
    text-align: center;
    border-bottom: 1px solid var(--rule)
}

.masthead__pub {
    font-family: var(--serif);
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.5px;
    line-height: 1
}

.masthead__pub em {
    font-style: normal;
    color: var(--forest)
}

.masthead__tagline {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    margin-top: 5px;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.nav {
    background: var(--forest);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--gold)
}

.nav__in {
    max-width: var(--measure);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 40px
}

.nav__links {
    display: flex;
    list-style: none
}

.nav__links a {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    padding: 0 12px;
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: all .15s;
    text-transform: uppercase;
    letter-spacing: .5px
}

.nav__links a:hover, .nav__links a.active {
    color: var(--gold3);
    border-bottom-color: var(--gold);
    text-decoration: none
}

@media (max-width: 640px) {
    .nav__links li:nth-child(n+4) {
        display: none
    }
}

.main {
    max-width: var(--measure);
    margin: 0 auto;
    padding: 0 24px
}

/* SECTION HEADER */
.section-hd {
    padding: 28px 0 20px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 28px
}

.section-kicker {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px
}

.section-kicker::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0
}

.section-h1 {
    font-family: var(--serif);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.3px;
    line-height: 1.2;
    margin-bottom: 8px
}

.section-desc {
    font-size: 15px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.6
}

/* ARTICLE CARDS */
.cards {
    display: flex;
    flex-direction: column;
    gap: 0
}

.card {
    display: grid;
    grid-template-columns:180px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
    text-decoration: none;
    color: inherit;
    transition: all .15s
}

.card:hover {
    color: inherit
}

.card:last-child {
    border-bottom: none
}

.card__img {
    width: 180px;
    height: 110px;
    object-fit: cover;
    filter: saturate(.85) brightness(.93);
    flex-shrink: 0
}

.card__meta {
    font-family: var(--sans);
    font-size: 10.5px;
    color: var(--muted2);
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.card__title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 6px;
    letter-spacing: -.2px
}

.card:hover .card__title {
    color: var(--forest)
}

.card__excerpt {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55
}

.card__read {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 8px;
    display: inline-block
}

@media (max-width: 560px) {
    .card {
        grid-template-columns:1fr
    }

    .card__img {
        width: 100%;
        height: 160px
    }
}

/* ARTICLE STYLES */
.art-header {
    padding: 32px 0 0;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px
}

.art-section {
    font-family: var(--sans);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.art-section::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0
}

.art-h1 {
    font-family: var(--serif);
    font-size: clamp(24px, 3.8vw, 36px);
    font-weight: 700;
    line-height: 1.18;
    color: var(--ink);
    letter-spacing: -.5px;
    margin-bottom: 12px
}

.art-deck {
    font-size: 17px;
    color: var(--ink2);
    line-height: 1.58;
    font-style: italic;
    margin-bottom: 12px
}

.art-byline {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    padding: 10px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid var(--rule);
    margin-top: 8px
}

.art-byline strong {
    color: var(--ink2)
}

.hero-img-wrap {
    margin-bottom: 24px
}

.hero-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: saturate(.88) brightness(.94)
}

.hero-caption {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted2);
    padding: 6px 0;
    border-bottom: 1px solid var(--rule);
    font-style: italic
}

.art-body p {
    font-size: 17px;
    color: var(--ink2);
    line-height: 1.75;
    margin-bottom: 1.1em
}

.art-body h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin: 2em 0 .6em;
    padding-top: 1em;
    border-top: 1px solid var(--rule);
    line-height: 1.25
}

.art-body h3 {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 1.6em 0 .4em
}

.art-body ul {
    margin: .6em 0 1.1em 0;
    padding: 0;
    list-style: none
}

.art-body ul li {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.65;
    padding: 6px 0 6px 18px;
    border-bottom: 1px solid var(--rule);
    position: relative
}

.art-body ul li:last-child {
    border-bottom: none
}

.art-body ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold2);
    font-weight: 700
}

.art-body strong {
    color: var(--ink)
}

.art-body a {
    color: var(--forest)
}

.warn {
    background: var(--gold-l);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.6;
    margin: 20px 0
}

.warn a {
    color: var(--forest2);
    font-weight: 600
}

.pq {
    margin: 28px 0;
    padding: 18px 0;
    border-top: 2px solid var(--forest);
    border-bottom: 2px solid var(--forest);
    text-align: center
}

.pq p {
    font-family: var(--serif);
    font-size: 19px !important;
    font-style: italic;
    color: var(--ink) !important;
    line-height: 1.5 !important;
    margin: 0 !important
}

.pq cite {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px;
    font-style: normal;
    letter-spacing: .5px;
    text-transform: uppercase
}

.mid-photo {
    margin: 28px 0
}

.mid-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(.85) brightness(.92)
}

.mid-cap {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted2);
    padding: 5px 0;
    font-style: italic;
    border-bottom: 1px solid var(--rule)
}

.checklist {
    background: var(--cream2);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--forest);
    padding: 18px 20px;
    margin: 24px 0
}

.checklist__title {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rule)
}

.checklist ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.checklist li {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.55;
    padding: 7px 0 7px 22px;
    border-bottom: 1px solid var(--rule);
    position: relative
}

.checklist li:last-child {
    border-bottom: none
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest);
    font-weight: 700
}

.checklist a {
    color: var(--forest)
}

.art-table-wrap {
    overflow-x: auto;
    margin: 20px 0
}

.art-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--sans);
    font-size: 13px
}

.art-table th {
    background: var(--forest);
    color: white;
    padding: 9px 12px;
    text-align: left;
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 600
}

.art-table td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--rule);
    color: var(--ink2);
    line-height: 1.45;
    vertical-align: top
}

.art-table tr:nth-child(even) td {
    background: var(--cream2)
}

.art-table a {
    color: var(--forest)
}

.art-sources {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    border-top: 1px solid var(--rule);
    padding-top: 10px;
    margin-top: 24px;
    line-height: 1.7
}

.art-sources a {
    color: var(--muted);
    text-decoration: underline
}

.also-read {
    background: var(--cream2);
    border: 1px solid var(--rule);
    border-top: 2px solid var(--forest);
    padding: 16px 20px;
    margin: 28px 0
}

.also-read__title {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px
}

.also-read ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.also-read li {
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid var(--rule)
}

.also-read li:last-child {
    border-bottom: none
}

.also-read a {
    color: var(--forest);
    font-style: italic
}

.site-disc {
    background: var(--cream2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 12px 24px;
    margin-top: 32px
}

.site-disc p {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    line-height: 1.65;
    max-width: var(--measure);
    margin: 0 auto;
    text-align: center
}

.site-disc a {
    color: var(--muted);
    text-decoration: underline
}

.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .4);
    padding: 36px 24px 24px
}

.footer__in {
    max-width: var(--measure);
    margin: 0 auto;
    display: grid;
    grid-template-columns:2fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

@media (max-width: 600px) {
    .footer__in {
        grid-template-columns:1fr;
        gap: 20px
    }
}

.footer__pub {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px
}

.footer__desc {
    font-family: var(--sans);
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.65
}

.fcol-t {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .2);
    margin-bottom: 10px
}

.flist {
    list-style: none
}

.flist li {
    margin-bottom: 6px
}

.flist a {
    font-family: var(--sans);
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color .15s
}

.flist a:hover {
    color: var(--gold3);
    text-decoration: none
}

.fbot {
    max-width: var(--measure);
    margin: 18px auto 0;
    font-family: var(--sans);
    font-size: 10px;
    color: rgba(255, 255, 255, .18);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px
}

#ck {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--ink);
    border-top: 2px solid var(--gold);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--sans);
    font-size: 12px;
    color: rgba(255, 255, 255, .7)
}

#ck p {
    margin: 0;
    flex: 1;
    min-width: 200px
}

#ck a {
    color: var(--gold3)
}

.ck-row {
    display: flex;
    gap: 8px
}

.ck-btn {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--sans)
}

.ck-ok {
    background: var(--gold);
    color: var(--forest2)
}

.ck-no {
    background: transparent;
    color: rgba(255, 255, 255, .4);
    border: 1px solid rgba(255, 255, 255, .2) !important
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}