:root {
    --ink: #111411;
    --paper: #fff;
    --soft: #f5f6f4;
    --line: #d9ddd8;
    --sage: #718f7f;
    --sage-dark: #375448;
    --lime: #d8f04a;
    --red: #b54036;
    --content-width: 1140px;
    --header-width: 1320px;
    --body-font: "Poppins", var(--gh-font-body, Arial, Helvetica, sans-serif);
    --heading-font: "Libre Baskerville", var(--gh-font-heading, Georgia, "Times New Roman", serif);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; color: #000; background: var(--lime); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.page-shell { width: min(var(--content-width), calc(100% - 40px)); margin: 0 auto; }
.eyebrow { color: var(--sage-dark); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.button-primary, .button-secondary { display: inline-flex; min-height: 44px; padding: 0 18px; align-items: center; justify-content: center; border-radius: 5px; font-size: 13px; font-weight: 700; }
.button-primary { color: #fff; background: var(--sage-dark); }
.button-secondary { color: var(--ink); background: #fff; border: 1px solid var(--line); }

/* Header */
.site-header { position: relative; z-index: 30; color: #fff; background: #050605; border-bottom: 1px solid #222; }
.header-inner {
    width: min(var(--header-width), calc(100% - 40px));
    min-height: 64px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}
.site-brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 15px; font-weight: 600; letter-spacing: .055em; }
.site-brand > img, .footer-brand > img { width: auto; max-width: 165px; height: 29px; object-fit: contain; }
.site-brand > img.brand-emblem { width: 34px; height: 34px; object-fit: cover; }
.footer-brand > img.brand-emblem { width: 38px; height: 38px; object-fit: cover; }
.brand-mark { position: relative; display: inline-grid; grid-template-columns: 8px 8px; gap: 2px; width: 18px; height: 18px; color: var(--lime); transform: rotate(45deg); }
.brand-mark i { display: block; background: currentColor; border-radius: 1px 6px 1px 6px; }
.desktop-nav { display: flex; min-width: 0; align-items: center; justify-content: center; gap: clamp(13px, 1.35vw, 24px); color: #d8dbd8; font-size: 12px; font-weight: 400; letter-spacing: -.01em; white-space: nowrap; }
.desktop-nav > a, .nav-dropdown > button { transition: color .2s; }
.desktop-nav > a:hover, .nav-dropdown > button:hover { color: #fff; }
.nav-dropdown { position: relative; display: flex; align-self: stretch; }
.nav-dropdown > button { display: flex; padding: 0; align-items: center; gap: 9px; color: inherit; background: transparent; border: 0; cursor: pointer; }
.nav-dropdown > button > span { display: block; width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s; }
.nav-dropdown:hover > button > span, .nav-dropdown:focus-within > button > span { transform: translateY(2px) rotate(225deg); }
.dropdown-menu {
    position: absolute;
    z-index: 45;
    top: 100%;
    left: -16px;
    display: grid;
    width: 205px;
    padding: 8px 0;
    visibility: hidden;
    opacity: 0;
    color: #f3f4f3;
    background: #050605;
    border: 0;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 15px 24px rgba(0,0,0,.22);
    transform: translateY(-3px);
    transition: opacity .18s, transform .18s, visibility .18s;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-menu a, .dropdown-menu > button { position: relative; display: block; width: 100%; padding: 12px 18px; color: #e5e7e5; text-align: left; background: transparent; border: 0; border-left: 3px solid transparent; border-radius: 0; font-size: 12px; font-weight: 400; white-space: nowrap; cursor: pointer; transition: color .16s, background .16s, border-color .16s; }
.dropdown-menu a:hover, .dropdown-menu > button:hover, .dropdown-menu a:focus-visible, .dropdown-menu > button:focus-visible { color: #fff; background: #101310; border-left-color: var(--lime); outline: 0; }
.section-menu { width: 205px; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.login-button, .join-button { display: inline-flex; min-height: 42px; padding: 0 18px; align-items: center; border-radius: 7px; font-family: var(--heading-font); font-size: 12px; font-weight: 700; }
.login-button { color: var(--ink); background: #fff; }
.join-button { color: #fff; background: var(--sage); }
.menu-button { display: flex; width: 34px; height: 38px; padding: 9px 5px; flex-direction: column; justify-content: center; gap: 5px; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 23px; height: 1px; background: #fff; transition: transform .2s, opacity .2s, background .2s; }
.menu-button:hover span { background: var(--lime); }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.menu-drawer { position: absolute; z-index: 40; top: 100%; right: 0; left: 0; color: #fff; background: #0b0d0b; border-top: 1px solid #262926; box-shadow: 0 18px 35px rgba(0,0,0,.22); }
.menu-drawer::after { content: ""; position: fixed; z-index: -1; inset: 114px 0 0; background: rgba(0,0,0,.38); }
.drawer-nav { width: min(var(--header-width), calc(100% - 40px)); margin: 0 auto; padding: 30px 0 34px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; }
.drawer-nav > div > span { display: block; margin-bottom: 12px; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.drawer-primary { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 34px; }
.drawer-primary > span { grid-column: 1 / -1; }
.drawer-primary a { display: flex; padding: 12px 0; justify-content: space-between; border-bottom: 1px solid #292d29; font-family: var(--heading-font); font-size: 19px; }
.drawer-primary b { color: var(--lime); font-family: var(--body-font); font-size: 13px; }
.drawer-secondary { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; align-content: start; }
.drawer-secondary > span { grid-column: 1 / -1; }
.drawer-secondary > a, .drawer-secondary > button, .drawer-secondary .nav li a { padding: 9px 0; color: #bdc2bd; background: transparent; border: 0; text-align: left; font-size: 12px; cursor: pointer; }
.drawer-secondary > a.drawer-premium {
    grid-column: 1 / -1;
    display: flex;
    min-height: 44px;
    margin-bottom: 8px;
    padding: 0 14px;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    background: var(--lime);
    border-radius: 5px;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
}
.drawer-premium b { font-family: var(--body-font); font-size: 16px; }
.drawer-secondary .nav { display: contents; margin: 0; padding: 0; list-style: none; }
.drawer-secondary .nav li { display: contents; }

/* Market ribbon */
.market-strip { color: #fff; background: #0e110e; border-bottom: 1px solid #2c302c; }
.market-inner { width: min(var(--content-width), calc(100% - 40px)); height: 42px; margin: 0 auto; display: flex; align-items: center; overflow: hidden; }
.market-label { height: 100%; flex: 0 0 auto; display: flex; padding-right: 18px; align-items: center; gap: 7px; border-right: 1px solid #343834; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.market-label small { padding: 3px 5px; color: #929792; background: #202420; border-radius: 3px; font-size: 7px; }
.live-dot { width: 6px; height: 6px; border-radius: 99px; background: var(--lime); box-shadow: 0 0 0 3px rgba(216,240,74,.13); }
.ticker-viewport { flex: 1; min-width: 0; overflow: hidden; }
.tradingview-ticker, .tradingview-widget-container, .tradingview-widget-container__widget { width: 100%; height: 42px; }
.tradingview-widget-container iframe { display: block; width: 100% !important; height: 42px !important; border: 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
.ticker-item { display: flex; padding: 0 20px; align-items: baseline; gap: 8px; border-right: 1px solid #343834; font-size: 10px; }
.ticker-item > span { color: #aeb3ae; font-size: 8px; font-weight: 700; letter-spacing: .06em; }
.ticker-item em { font-size: 9px; font-style: normal; }
.positive { color: #92c9a7; }
.negative { color: #ef8c82; }
.market-note { flex: 0 0 auto; padding-left: 16px; color: #8b908b; font-size: 7px; letter-spacing: .08em; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Homepage */
.hero-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 34px; padding: 18px 0 0; }
.hero-feature { position: relative; isolation: isolate; display: flex; min-height: 360px; padding: 26px 28px 25px; flex-direction: column; justify-content: space-between; overflow: hidden; color: #fff; background-color: #101510; background-position: center; background-size: cover; border-radius: 5px; }
.hero-feature::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(135deg, transparent 60%, rgba(216,240,74,.23)); }
.hero-feature.no-image { background-image: radial-gradient(circle at 85% 15%, rgba(216,240,74,.2), transparent 30%), linear-gradient(140deg, #101710, #07100a 65%, #314637); }
.issue-label { width: max-content; max-width: 100%; padding: 6px 8px; color: #cfd4cf; border: 1px solid rgba(255,255,255,.28); border-radius: 3px; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.hero-kicker { margin: 0 0 10px; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.hero-feature h1 { max-width: 580px; margin: 0; font-family: var(--heading-font); font-size: clamp(38px, 4vw, 58px); font-weight: 400; line-height: .96; letter-spacing: -.045em; }
.hero-feature h1 em { color: #cce0d3; font-weight: 400; }
.hero-copy { display: -webkit-box; max-width: 480px; margin: 16px 0 0; overflow: hidden; color: #dce1dc; font-size: 14px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.read-issue { display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.read-issue b { display: inline-grid; width: 24px; height: 24px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 99px; }
.subscribe-form { position: relative; display: flex; min-height: 48px; margin-top: 14px; }
.subscribe-form input { flex: 1; min-width: 0; padding: 0 15px; color: var(--ink); background: #f7f8f7; border: 1px solid var(--sage); border-radius: 6px 0 0 6px; outline: 0; }
.subscribe-form input:focus { box-shadow: inset 0 0 0 1px var(--sage-dark); }
.subscribe-form button { min-width: 190px; padding: 0 18px; color: #fff; background: var(--sage); border: 1px solid var(--sage); border-radius: 0 6px 6px 0; font-family: var(--heading-font); font-weight: 700; cursor: pointer; }
.button-loading, .subscribe-form.loading .button-label { display: none; }
.subscribe-form.loading .button-loading { display: inline; }
.form-message { position: absolute; top: calc(100% + 7px); left: 0; display: none; margin: 0; font-size: 11px; }
.subscribe-form.success .form-message.success, .subscribe-form.error .form-message.error { display: block; }
.subscribe-form.success .form-message.success { color: var(--sage-dark); }
.subscribe-form.error .form-message.error { color: var(--red); }
.member-welcome { display: flex; min-height: 48px; margin-top: 14px; padding: 0 15px; align-items: center; justify-content: space-between; background: var(--soft); border: 1px solid var(--sage); border-radius: 6px; font-size: 13px; }
.member-welcome a { font-weight: 700; text-decoration: underline; }
.headline-stack { display: grid; grid-template-rows: repeat(4, 1fr); }
.mini-story { display: flex; padding: 5px 0 13px; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--line); }
.mini-story:last-child { border-bottom: 0; }
.mini-category { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.mini-category span { color: var(--sage-dark); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mini-category span::before { content: "●"; margin-right: 5px; color: var(--lime); }
.mini-category b, .premium-badge { padding: 3px 5px; color: #626862; background: #e5e8e5; border-radius: 4px; font-size: 9px; letter-spacing: .06em; }
.mini-story h3 { margin: 0; font-family: var(--body-font); font-size: 21px; font-weight: 600; line-height: 1.16; letter-spacing: -.035em; }
.mini-story p { display: -webkit-box; margin: 5px 0; overflow: hidden; color: #4d514d; font-size: 12px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.mini-story time { color: #686d68; font-family: var(--heading-font); font-size: 10px; }
.headline-placeholder { align-self: center; padding: 25px; color: #5f655f; background: var(--soft); border-radius: 6px; }
.headline-placeholder span { color: var(--sage-dark); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.headline-placeholder h2 { margin: 9px 0; font-family: var(--body-font); font-size: 23px; font-weight: 600; line-height: 1.12; letter-spacing: -.035em; }
.headline-placeholder p { margin: 0; font-size: 12px; line-height: 1.45; }
.latest-section { padding-top: 72px; }
.section-heading { display: flex; margin-bottom: 24px; align-items: baseline; justify-content: space-between; }
.section-heading h2 { margin: 0; font-size: 16px; }
.section-heading span { color: #888d88; font-size: 10px; }
.featured-grid, .story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Cards and archive */
.story-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid #cdd1cd; border-radius: 6px; transition: transform .2s, box-shadow .2s; }
.story-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(17,20,17,.08); }
.card-image { position: relative; display: flex; height: 190px; padding: 12px; flex-direction: column; justify-content: space-between; background-color: #101510; background-position: center; background-size: cover; }
.card-image.no-image { background-image: radial-gradient(circle at 80% 15%, rgba(216,240,74,.19), transparent 27%), linear-gradient(145deg, #111811, #31473b); }
.card-tags { display: flex; gap: 5px; }
.card-tags span { padding: 7px 12px; color: #fff; background: rgba(75,106,91,.9); border-radius: 5px; font-family: var(--heading-font); font-size: 11px; }
.card-tags span[data-tag="finance"] { background: rgba(88,91,52,.92); }
.card-tags span[data-tag="culture"] { background: rgba(108,69,91,.92); }
.card-tags span[data-tag="politics"] { background: rgba(106,67,58,.92); }
.card-tags span[data-tag="technology"] { background: rgba(48,73,88,.92); }
.card-image > p { max-width: 80%; margin: 0; color: #fff; font-family: var(--heading-font); font-size: 20px; line-height: 1.1; letter-spacing: -.025em; text-shadow: 0 1px 3px #000; }
.card-body { min-height: 220px; padding: 13px 13px 15px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; color: #5d625d; font-family: var(--heading-font); font-size: 10px; }
.card-meta button { padding: 2px 0 2px 9px; background: transparent; border: 0; font-size: 16px; cursor: pointer; }
.card-meta button.saved { color: var(--red); }
.premium-badge { display: inline-block; margin: 7px 0 0; }
.card-body h3 { margin: 7px 0 4px; font-family: var(--heading-font); font-size: 21px; font-weight: 700; line-height: 1.13; letter-spacing: -.025em; }
.card-body > p { display: -webkit-box; min-height: 48px; margin: 0; overflow: hidden; color: #4f544f; font-size: 13px; line-height: 1.42; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.byline { display: flex; align-items: center; gap: 8px; width: max-content; margin-top: 15px; font-family: var(--heading-font); font-size: 11px; font-weight: 700; }
.byline img, .byline-mark { display: inline-grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; overflow: hidden; color: #fff; background: #101210; border-radius: 99px; object-fit: cover; font-family: var(--body-font); font-size: 7px; }
.archive-section { padding: 92px 0 80px; }
.search-trigger { display: flex; width: min(880px, 100%); height: 44px; padding: 0 14px; align-items: center; gap: 10px; color: #8b908b; background: #f7f8f7; border: 0; border-radius: 5px; text-align: left; cursor: pointer; }
.search-trigger > span:nth-child(1) { font-size: 22px; transform: rotate(-15deg); }
.search-trigger > span:nth-child(2) { flex: 1; font-size: 13px; }
.search-trigger kbd { padding: 4px 6px; color: #9da19d; background: #fff; border: 1px solid #e2e5e2; border-radius: 4px; font-size: 10px; }
.category-nav { display: flex; margin: 14px 0 30px; flex-wrap: wrap; gap: 7px; }
.category-nav a { padding: 7px 14px; background: #fff; border: 1px solid #222; border-radius: 5px; font-size: 10px; transition: .2s; }
.category-nav a:hover, .category-nav a.active { color: #fff; background: var(--sage-dark); border-color: var(--sage-dark); }
.story-grid { row-gap: 24px; }
.empty-newsroom { grid-column: 1 / -1; display: grid; min-height: 260px; padding: 40px; place-items: center; align-content: center; gap: 8px; text-align: center; background: var(--soft); border: 1px dashed var(--line); border-radius: 6px; }
.empty-newsroom strong { font-family: var(--heading-font); font-size: 24px; }
.empty-newsroom p { margin: 0; color: #6d726d; font-size: 13px; }
.pagination { display: flex; margin-top: 45px; align-items: center; justify-content: center; gap: 14px; font-size: 11px; }
.pagination a, .pagination > span { min-height: 34px; padding: 0 12px; display: inline-flex; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 4px; }
.pagination .page-number { color: #fff; background: var(--sage-dark); border-color: var(--sage-dark); }
.pagination .disabled { opacity: .4; }
.archive-page { padding: 70px 0 80px; }
.archive-header { max-width: 720px; padding: 20px 0 50px; }
.archive-header h1 { margin: 8px 0 10px; font-family: var(--heading-font); font-size: clamp(46px, 7vw, 78px); font-weight: 400; line-height: .98; letter-spacing: -.05em; }
.archive-header p { max-width: 620px; margin: 0; color: #626762; font-size: 15px; line-height: 1.55; }
.author-header { display: flex; max-width: 800px; padding: 20px 0 55px; align-items: center; gap: 24px; }
.author-header img { width: 110px; height: 110px; border-radius: 100%; object-fit: cover; }
.author-header h1 { margin: 7px 0; font-family: var(--heading-font); font-size: 52px; font-weight: 400; letter-spacing: -.04em; }
.author-header p { margin: 0; color: #626762; font-size: 14px; line-height: 1.5; }

/* Article */
.article-shell { position: relative; width: min(960px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0 90px; }
.article-tools { position: fixed; top: 150px; left: max(28px, calc((100vw - 1320px) / 2)); display: grid; z-index: 10; gap: 15px; }
.article-tools a, .article-tools button { display: grid; width: 38px; height: 38px; padding: 0; place-items: center; color: #989d98; background: transparent; border: 0; font-size: 25px; cursor: pointer; }
.article-tools button.saved { color: var(--red); }
.article-header { max-width: 900px; margin: 0 auto 38px; }
.breadcrumbs { display: flex; margin-bottom: 42px; align-items: center; flex-wrap: wrap; gap: 13px; color: #666b66; font-size: 13px; font-weight: 600; }
.breadcrumbs span { color: #afb3af; }
.article-category { display: inline-block; margin-right: 8px; color: var(--sage-dark); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.article-header > .premium-badge { margin: 0; }
.article-header h1 { max-width: 900px; margin: 13px 0 12px; font-family: var(--body-font); font-size: clamp(48px, 6vw, 76px); font-weight: 600; line-height: 1.03; letter-spacing: -.05em; }
.article-dek { max-width: 850px; margin: 0 0 34px; color: #3d413d; font-size: clamp(19px, 2vw, 28px); line-height: 1.35; }
.article-byline { display: flex; align-items: center; justify-content: space-between; }
.author-identity { display: flex; align-items: center; gap: 12px; }
.author-identity img, .author-fallback { display: grid; width: 48px; height: 48px; place-items: center; color: #fff; background: #111; border-radius: 100%; object-fit: cover; font-size: 11px; font-weight: 800; }
.author-identity > span:last-child { display: grid; gap: 4px; }
.author-identity strong { font-family: var(--heading-font); font-size: 14px; text-decoration: underline; }
.author-identity time { color: #676c67; font-size: 12px; }
.article-share { display: flex; gap: 9px; }
.article-share a { display: grid; width: 34px; height: 34px; place-items: center; color: #a0a5a0; background: #f1f3f1; border-radius: 100%; font-size: 12px; font-weight: 700; }
.article-image { max-width: 960px; margin: 0 auto 48px; }
.article-image img { width: 100%; max-height: 620px; border-radius: 6px; object-fit: cover; }
.article-image figcaption { padding-top: 8px; color: #858a85; font-size: 10px; text-align: center; }
.article-content { max-width: 720px; margin: 0 auto; font-family: var(--heading-font); font-size: 20px; line-height: 1.72; }
.article-content > * { margin-top: 0; margin-bottom: 1.45em; }
.article-content h2, .article-content h3, .article-content h4 { line-height: 1.1; letter-spacing: -.025em; }
.article-content h2 { margin-top: 1.6em; font-size: 38px; }
.article-content h3 { margin-top: 1.5em; font-size: 29px; }
.article-content a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-content blockquote { margin-right: 0; margin-left: 0; padding-left: 25px; border-left: 4px solid var(--lime); font-size: 25px; font-style: italic; line-height: 1.4; }
.article-content img, .article-content video { height: auto; border-radius: 4px; }
.article-content .kg-width-wide { width: min(900px, calc(100vw - 40px)); margin-left: 50%; transform: translateX(-50%); }
.article-content .kg-width-full { width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.article-content figcaption { color: #7e837e; font-family: var(--body-font); font-size: 10px; text-align: center; }
.article-content pre { overflow-x: auto; padding: 20px; color: #eef0ee; background: #111511; border-radius: 5px; font-size: 13px; }
.article-content hr { margin: 50px 0; border: 0; border-top: 1px solid var(--line); }
.content-cta { margin: 55px 0 20px; padding: 42px; text-align: center; background: #f3f6f3; border: 1px solid #d8dfd9; border-radius: 8px; }
.content-cta h2 { margin: 10px 0; font-size: 35px; }
.content-cta p { max-width: 530px; margin: 0 auto 24px; color: #585d58; font-family: var(--body-font); font-size: 14px; line-height: 1.55; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 10px; }
.comments { max-width: 720px; margin: 70px auto 0; padding-top: 40px; border-top: 1px solid var(--line); }
.related-posts { margin-top: 85px; padding-top: 35px; border-top: 1px solid var(--line); }
.page-article { max-width: 960px; }
.page-article .article-header { text-align: center; }
.page-article .breadcrumbs { justify-content: center; }
.error-page { min-height: 65vh; padding: 120px 0; text-align: center; }
.error-page h1 { margin: 12px 0; font-family: var(--heading-font); font-size: clamp(48px, 8vw, 90px); font-weight: 400; letter-spacing: -.05em; }
.error-page p { margin-bottom: 25px; color: #676c67; }

/* Footer */
.site-footer { color: #fff; background: #080a08; }
.footer-inner { width: min(var(--content-width), calc(100% - 40px)); margin: 0 auto; padding: 64px 0 24px; }
.footer-main { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: end; padding-bottom: 60px; }
.footer-main h2 { margin: 28px 0 13px; font-family: var(--heading-font); font-size: clamp(34px, 4vw, 54px); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.footer-main p { max-width: 440px; margin: 0; color: #9ca19c; font-size: 13px; line-height: 1.5; }
.footer-signup > span { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.subscribe-form.dark { margin: 13px 0 9px; }
.subscribe-form.dark input { color: #fff; background: #141714; border-color: #414641; }
.subscribe-form.dark button { color: #101310; background: var(--lime); border-color: var(--lime); }
.subscribe-form.dark .form-message.success { color: var(--lime); }
.footer-signup small { color: #6f746f; font-size: 9px; }
.member-welcome.dark { color: #fff; background: #141714; border-color: #414641; }
.footer-bottom { display: flex; padding-top: 22px; align-items: center; justify-content: space-between; border-top: 1px solid #282b28; color: #727772; font-size: 10px; }
.footer-bottom nav, .footer-bottom .nav { display: flex; margin: 0; padding: 0; align-items: center; gap: 20px; list-style: none; }

@media (max-width: 1180px) {
    .desktop-nav { gap: 12px; }
    .desktop-nav > a:nth-last-of-type(-n+3) { display: none; }
    .article-tools { display: none; }
}

@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .header-inner { grid-template-columns: 1fr auto; gap: 14px; }
    .drawer-nav { grid-template-columns: 1fr 1fr; gap: 34px; }
    .hero-grid { grid-template-columns: 1.25fr .75fr; gap: 22px; }
    .hero-feature { min-height: 340px; }
    .mini-story p { display: none; }
    .mini-story h3 { font-size: 18px; }
    .featured-grid, .story-grid { gap: 14px; }
    .card-image { height: 155px; }
    .card-body h3 { font-size: 18px; }
    .article-shell { padding-top: 45px; }
    .article-header h1 { font-size: 56px; }
}

@media (max-width: 680px) {
    .header-inner, .market-inner, .page-shell, .footer-inner, .article-shell { width: calc(100% - 28px); }
    .header-inner { min-height: 58px; }
    .site-brand { min-width: 0; font-size: 12px; letter-spacing: .075em; }
    .site-brand > span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .site-brand > img { max-width: 125px; height: 25px; }
    .login-button { display: none; }
    .join-button { padding: 8px 6px; font-size: 9px; white-space: nowrap; }
    .drawer-nav { width: calc(100% - 28px); padding: 24px 0 28px; grid-template-columns: 1fr; gap: 28px; }
    .drawer-primary { grid-template-columns: 1fr; }
    .drawer-secondary { grid-template-columns: 1fr 1fr; }
    .menu-drawer::after { inset: 100px 0 0; }
    .market-inner { width: 100%; height: 38px; }
    .market-label { padding-right: 10px; padding-left: 14px; font-size: 7px; }
    .market-label small, .market-note { display: none; }
    .tradingview-ticker, .tradingview-widget-container, .tradingview-widget-container__widget { height: 38px; }
    .tradingview-widget-container iframe { height: 46px !important; transform: translateY(-8px); }
    .ticker-item { padding: 0 12px; }
    .hero-grid { display: block; padding-top: 14px; }
    .hero-feature { min-height: 390px; padding: 20px; }
    .hero-feature h1 { font-size: 42px; }
    .subscribe-form { min-height: 46px; }
    .subscribe-form button { min-width: 180px; padding: 0 9px; font-size: 11px; white-space: nowrap; }
    .headline-stack { margin-top: 28px; }
    .mini-story { padding: 15px 0; }
    .mini-story p { display: -webkit-box; }
    .latest-section { padding-top: 48px; }
    .section-heading span { display: none; }
    .featured-grid, .story-grid { grid-template-columns: 1fr; gap: 18px; }
    .card-image { height: 210px; }
    .card-body { min-height: 0; }
    .archive-section { padding: 64px 0; }
    .search-trigger kbd { display: none; }
    .archive-page { padding-top: 45px; }
    .archive-header { padding-bottom: 35px; }
    .archive-header h1 { font-size: 50px; }
    .author-header { align-items: flex-start; }
    .author-header img { width: 72px; height: 72px; }
    .author-header h1 { font-size: 38px; }
    .article-shell { padding: 34px 0 65px; }
    .breadcrumbs { margin-bottom: 30px; }
    .article-header h1 { font-size: 43px; }
    .article-dek { font-size: 18px; }
    .article-byline { align-items: flex-end; }
    .article-share { display: none; }
    .article-image { width: calc(100% + 28px); margin-left: -14px; }
    .article-image img { border-radius: 0; }
    .article-content { font-size: 19px; line-height: 1.65; }
    .article-content h2 { font-size: 31px; }
    .article-content h3 { font-size: 25px; }
    .content-cta { padding: 30px 20px; }
    .content-cta h2 { font-size: 30px; }
    .cta-actions { flex-direction: column; }
    .cta-actions a { width: 100%; }
    .footer-main { grid-template-columns: 1fr; gap: 42px; }
    .footer-main h2 { font-size: 42px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-bottom nav, .footer-bottom .nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .ticker-track { animation: none; }
    .story-card { transition: none; }
}
