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

:root {
    --paper: #f7f3ec;
    --paper-deep: #eee6da;
    --ink: #17130f;
    --muted: #6f675d;
    --line: rgba(23, 19, 15, 0.14);
    --teal: #0b6f69;
    --amber: #b7781f;
    --red: #b7352d;
    --white: #fffdf8;
    --soft: rgba(255, 253, 248, 0.78);
    --shadow: 0 24px 70px rgba(39, 28, 14, 0.12);
    --radius: 8px;
    --shell: 1180px;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        linear-gradient(rgba(23, 19, 15, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 19, 15, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 18% 0%, rgba(183, 120, 31, 0.08), transparent 30%),
        var(--paper);
    background-size: 46px 46px, 46px 46px, auto, auto;
    font-family: var(--sans);
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
    z-index: -1;
}

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

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

.shell {
    width: min(var(--shell), calc(100% - 40px));
    margin: 0 auto;
}

.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 100;
    background: transparent;
}

.read-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--teal), var(--amber), var(--red));
}

.top-strip {
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
}

.top-strip-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-strip strong {
    color: var(--ink);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.top-strip a {
    margin-left: auto;
    color: var(--teal);
    font-weight: 700;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(183, 53, 45, 0.45);
    animation: pulse 2.2s infinite;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 243, 236, 0.88);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand-copy em {
    font-style: normal;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}

.site-nav a {
    padding: 8px 0;
}

.site-nav a:hover {
    color: var(--ink);
}

.nav-cta {
    border: 1px solid var(--ink);
    color: var(--ink) !important;
    padding: 8px 14px !important;
    background: rgba(255, 253, 248, 0.7);
}

.site-main {
    overflow: hidden;
}

.hero-intel {
    padding: 72px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: 42px;
    align-items: stretch;
}

.eyebrow,
.card-label {
    margin: 0;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 12px 0 18px;
    max-width: 760px;
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-desc {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--ink);
    padding: 0 18px;
    font-weight: 800;
    font-size: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: var(--paper);
    background: var(--ink);
    box-shadow: 8px 8px 0 rgba(11, 111, 105, 0.18);
}

.btn.ghost {
    background: var(--soft);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.trust-row span,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.7);
    padding: 0 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.intel-board {
    position: relative;
    min-height: 520px;
    border: 1px solid var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.intel-board::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid var(--line);
    pointer-events: none;
}

.board-visual {
    height: 285px;
    margin: 18px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(23, 19, 15, 0.08), rgba(23, 19, 15, 0.18)),
        url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1100&q=80") center/cover;
}

.score-panel {
    position: absolute;
    right: 34px;
    top: 210px;
    width: 152px;
    border: 1px solid var(--ink);
    background: rgba(247, 243, 236, 0.94);
    padding: 16px;
    box-shadow: 10px 10px 0 rgba(183, 120, 31, 0.16);
}

.score-panel strong {
    display: block;
    font-family: var(--serif);
    font-size: 56px;
    line-height: 1;
}

.score-panel small,
.panel-label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin: 38px 18px 18px;
    border: 1px solid var(--line);
    background: var(--line);
}

.signal-grid div {
    background: var(--white);
    padding: 18px;
}

.signal-grid span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signal-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 15px;
}

.ticker {
    border-block: 1px solid var(--line);
    overflow: hidden;
    background: rgba(255, 253, 248, 0.62);
}

.ticker-track {
    width: max-content;
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 14px 0;
    animation: marquee 28s linear infinite;
}

.ticker-track span {
    margin-left: 20px;
    color: var(--red);
    font-weight: 900;
}

.ticker-track a {
    color: var(--muted);
    font-weight: 700;
}

.newsroom-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    padding: 58px 0 80px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink);
    margin-bottom: 22px;
    padding-bottom: 12px;
}

.section-heading h2,
.side-panel h2,
.article-ai-card h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
}

.lead-story {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    border: 1px solid var(--ink);
    background: var(--white);
    box-shadow: 14px 14px 0 rgba(11, 111, 105, 0.1);
    margin-bottom: 22px;
}

.lead-image {
    min-height: 290px;
    background:
        linear-gradient(180deg, rgba(23, 19, 15, 0.06), rgba(23, 19, 15, 0.18)),
        url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=900&q=80") center/cover;
}

.lead-body {
    padding: 26px;
}

.lead-body h3,
.news-card h3 {
    margin: 10px 0 10px;
    font-family: var(--serif);
    line-height: 1.2;
}

.lead-body h3 {
    font-size: 34px;
}

.lead-body p,
.news-card p,
.side-panel p {
    color: var(--muted);
    margin: 0;
}

.story-meta,
.news-card-top,
.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
}

.article-feed {
    display: grid;
    gap: 12px;
}

.news-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.78);
    padding: 18px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
    background: var(--white);
}

.news-index {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    color: var(--red);
    font-weight: 900;
}

.news-card h3 {
    font-size: 23px;
}

.side-column {
    display: grid;
    align-content: start;
    gap: 16px;
}

.side-panel {
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.78);
    padding: 22px;
}

.insight-panel {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.insight-panel p {
    color: rgba(247, 243, 236, 0.76);
}

.metric-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.metric-list span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(247, 243, 236, 0.2);
    padding-top: 10px;
}

.rank-row {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding: 14px 0;
}

.rank-row span {
    color: var(--red);
    font-weight: 900;
}

.rank-row strong {
    font-size: 14px;
    line-height: 1.45;
}

.topic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.topic-grid a {
    border: 1px solid var(--line);
    background: var(--white);
    padding: 7px 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.article-hero {
    border-bottom: 1px solid var(--line);
    padding: 64px 0 42px;
}

.article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 40px;
    align-items: end;
}

.back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 800;
}

.article-title-block h1 {
    max-width: 850px;
    margin: 16px 0;
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
}

.article-title-block p {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
}

.article-ai-card {
    border: 1px solid var(--ink);
    background: var(--white);
    padding: 22px;
    box-shadow: 12px 12px 0 rgba(183, 120, 31, 0.12);
}

.article-ai-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.article-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 760px);
    gap: 48px;
    justify-content: center;
    padding: 52px 0 82px;
}

.article-sidebar {
    min-width: 0;
}

.sticky-note {
    position: sticky;
    top: 110px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.78);
    padding: 18px;
}

.sticky-note strong {
    display: block;
    margin: 10px 0;
    font-family: var(--serif);
    font-size: 24px;
}

.sticky-note p {
    color: var(--muted);
    font-size: 14px;
}

.sticky-note a {
    color: var(--teal);
    font-weight: 900;
}

.article-content {
    min-width: 0;
}

.article-body {
    border-left: 1px solid var(--line);
    padding-left: 28px;
    color: #211c17;
    font-size: 18px;
    line-height: 1.9;
}

.article-body > *:first-child {
    margin-top: 0;
}

.article-body h1,
.article-body h2,
.article-body h3 {
    font-family: var(--serif);
    line-height: 1.25;
}

.article-body h2 {
    margin: 2.4em 0 0.7em;
    font-size: 31px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.article-body h3 {
    margin: 1.8em 0 0.6em;
    font-size: 24px;
}

.article-body p {
    margin: 0 0 1.15em;
}

.article-body a {
    color: var(--teal);
    border-bottom: 1px solid rgba(11, 111, 105, 0.28);
}

.article-body ul,
.article-body ol {
    padding-left: 1.25em;
}

.article-body li {
    margin: 0.45em 0;
}

.article-body blockquote {
    margin: 1.4em 0;
    border-left: 4px solid var(--amber);
    background: rgba(255, 253, 248, 0.7);
    padding: 16px 18px;
    color: var(--muted);
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: 15px;
}

.article-body th,
.article-body td {
    border: 1px solid var(--line);
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.article-body th {
    background: rgba(23, 19, 15, 0.05);
}

.article-body code {
    background: rgba(23, 19, 15, 0.08);
    padding: 2px 5px;
    font-size: 0.9em;
}

.article-body pre {
    overflow: auto;
    background: #191611;
    color: var(--paper);
    padding: 18px;
}

.article-footer {
    margin-top: 48px;
    border-top: 1px solid var(--ink);
    padding-top: 22px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.article-footer p {
    color: var(--muted);
    margin: 8px 0 0;
}

.empty-state,
.not-found {
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.78);
    padding: 42px;
}

.not-found {
    margin: 80px auto;
    text-align: center;
}

.not-found h1 {
    font-family: var(--serif);
    font-size: 58px;
    margin: 6px 0 8px;
}

.site-footer {
    border-top: 1px solid var(--ink);
    background: #15120f;
    color: var(--paper);
    padding: 44px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 32px;
}

.footer-brand {
    font-family: var(--serif);
    font-size: 26px;
}

.site-footer p,
.site-footer span {
    color: rgba(247, 243, 236, 0.68);
}

.site-footer h3 {
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 7px 0;
    color: rgba(247, 243, 236, 0.84);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 10px rgba(183, 53, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(183, 53, 45, 0); }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ai-crawler-feast {
    padding: 58px 0 34px;
    border-top: 1px solid var(--line);
}

.section-heading > p:not(.eyebrow) {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--muted);
}

.topic-menu-grid,
.topic-index-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.topic-menu-card,
.topic-index-card,
.answer-block,
.ai-ingest-panel,
.topic-entity-box {
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.76);
    box-shadow: 0 16px 48px rgba(39, 28, 14, 0.08);
}

.topic-menu-card {
    min-height: 190px;
    padding: 18px;
    display: grid;
    align-content: start;
    gap: 10px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.topic-menu-card:hover,
.topic-index-card:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 111, 105, 0.44);
    background: var(--white);
}

.topic-menu-card span,
.topic-card-head span {
    color: var(--red);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.topic-menu-card strong {
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.16;
}

.topic-menu-card p,
.topic-index-card p,
.answer-block p,
.topic-detail-hero p {
    margin: 0;
    color: var(--muted);
}

.crawler-links {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.crawler-links a,
.topic-open,
.back-link {
    border: 1px solid var(--ink);
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 800;
    background: rgba(255, 253, 248, 0.72);
}

.topic-hero,
.topic-detail-hero {
    padding: 68px 0 36px;
    border-bottom: 1px solid var(--line);
}

.topic-hero-grid,
.topic-detail-grid,
.topic-answer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.topic-hero h1,
.topic-detail-hero h1 {
    max-width: 900px;
    margin: 12px 0 16px;
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    letter-spacing: 0;
}

.ai-ingest-panel,
.topic-entity-box {
    padding: 20px;
}

.ai-ingest-panel {
    display: grid;
    gap: 10px;
}

.ai-ingest-panel span {
    color: var(--muted);
    font-size: 13px;
}

.ai-ingest-panel a {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 9px 0;
    font-weight: 800;
}

.topic-index-grid {
    padding: 38px 0 70px;
}

.topic-index-card {
    min-height: 420px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.topic-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.topic-card-head strong {
    font-family: var(--serif);
    font-size: 24px;
    text-align: right;
}

.topic-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.topic-keywords span {
    border: 1px solid var(--line);
    background: rgba(247, 243, 236, 0.86);
    padding: 4px 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.topic-keywords.large span {
    font-size: 14px;
    padding: 7px 10px;
}

.topic-index-card h3 {
    margin: 2px 0 -6px;
    font-size: 14px;
}

.topic-index-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
}

.topic-mini-feed {
    display: grid;
    gap: 8px;
    margin-top: auto;
}

.topic-mini-feed a {
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
}

.topic-open {
    width: fit-content;
}

.topic-answer-layout {
    padding: 42px 0 72px;
}

.topic-main {
    display: grid;
    gap: 18px;
}

.answer-block {
    padding: 24px;
}

.answer-block h2,
.topic-entity-box h2 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: 27px;
}

.question-list {
    display: grid;
    gap: 12px;
}

.question-list article {
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.question-list h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.topic-entity-box dl {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px 12px;
    margin: 0;
}

.topic-entity-box dt {
    color: var(--muted);
    font-size: 13px;
}

.topic-entity-box dd {
    margin: 0;
    word-break: break-word;
    font-weight: 700;
}

.topic-side {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}

.article-feed.compact {
    margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

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

@media (max-width: 980px) {
    .hero-grid,
    .newsroom-layout,
    .article-hero-grid,
    .article-layout,
    .topic-hero-grid,
    .topic-detail-grid,
    .topic-answer-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .intel-board {
        min-height: 460px;
    }

    .article-sidebar {
        display: none;
    }

    .topic-side {
        position: static;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, var(--shell));
    }

    .top-strip-inner {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .top-strip a {
        margin-left: 0;
    }

    .header-inner {
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .hero-intel {
        padding-top: 44px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .intel-board {
        min-height: 0;
    }

    .score-panel {
        position: relative;
        inset: auto;
        right: auto;
        top: auto;
        margin: -40px 32px 20px auto;
    }

    .signal-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .lead-story,
    .news-card {
        grid-template-columns: 1fr;
    }

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

    .article-title-block h1 {
        font-size: 38px;
    }

    .article-body {
        border-left: 0;
        padding-left: 0;
        font-size: 17px;
    }

    .article-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .topic-menu-grid,
    .topic-index-grid {
        grid-template-columns: 1fr;
    }

    .topic-hero,
    .topic-detail-hero {
        padding-top: 44px;
    }

    .topic-hero h1,
    .topic-detail-hero h1 {
        font-size: 38px;
    }

    .topic-index-card {
        min-height: auto;
    }
}
