:root {
    --gold: #c4a35a;
    --gold-dark: #8a6d2b;
    --gold-soft: #fff8e7;
    --black: #000;
    --white: #fff;
    --gray: #333;
    --muted: #555;
    --light-gray: #ffffff;
    --line: #eee;
    --old: hsl(0, 100%, 30%);
    --new: hsl(100, 100%, 20%);
    --shadow: 0 1rem 2rem #f5f5ff;
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --radius-lg: 1rem;
    --container: 1200px;
    --header-h: 64px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font: 400 14px/1.5 system-ui, sans-serif;
    background: var(--light-gray);
    color: var(--black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold-dark);
}

a:hover {
    text-decoration: underline;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: 8px;
    top: -48px;
    z-index: 1000;
    background: var(--black);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 8px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Header */
.site-header {
    background: var(--black);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font: 600 clamp(1.1rem, 2.4vw, 1.6rem) / 1 system-ui, sans-serif;
    letter-spacing: 0.04em;
}

.brand:hover {
    text-decoration: none;
    color: var(--white);
}

.brand-mark {
    color: var(--gold);
    font-size: 0.85em;
}

.brand-sub {
    font-size: 0.55em;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.95;
}

.nav-toggle {
    display: none;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 6px 14px;
    font: 600 13px/1 system-ui, sans-serif;
    cursor: pointer;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.1rem;
}

.site-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--gold);
    border-bottom-color: var(--gold);
    text-decoration: none;
}

/* Page shells */
main {
    flex: 1;
}

.page-hero {
    padding: 2rem 0 1.5rem;
}

.page-hero h1 {
    font: 700 clamp(1.6rem, 3vw, 2.1rem) / 1.2 system-ui, sans-serif;
    margin-bottom: 0.6rem;
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--muted);
    max-width: 46rem;
}

.page-hero--split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: end;
}

.gold-rule {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 0 0 1rem;
    border: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Result cards (existing language) */
.result-card {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #f3f3f3;
}

.card-title,
.result-name {
    font: 500 clamp(1rem, 3vw, 1.35rem) / 1.2 system-ui, sans-serif;
    margin-bottom: 4px;
    color: var(--black);
}

.result-time {
    margin-bottom: 1rem;
    color: var(--muted);
    font: 500 12px/1 system-ui, sans-serif;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.5rem, 1vw, 2rem);
}

.result-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.result-pair .old p:first-child,
.result-pair .new p:first-child {
    font-weight: 600;
}

.oldRs,
.newRs,
.card-number {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
}

.old p,
.oldRs {
    color: var(--old);
}

.new p,
.newRs {
    color: var(--new);
}

.result-status {
    display: inline-block;
    margin: 0.4rem 0 0;
    font: 600 11px/1 system-ui, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.swap-icon {
    color: var(--new);
    height: 100%;
    display: flex;
    align-items: center;
    margin-bottom: -1.5rem;
    flex-shrink: 0;
}

/* Featured result banner */
.featured-result {
    background: var(--black);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    font: 600 clamp(1.2rem, 3vw, 2rem) / 1.2 system-ui, sans-serif;
}

.featured-kicker {
    margin-bottom: 0.75rem;
    font-size: clamp(0.8rem, 1vw, 1rem);
    letter-spacing: 0.08em;
}

.live-pill {
    margin: 0.5rem 0 1rem;
    font-size: 12px;
    background: var(--white);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 20px;
    font: 600 12px/1 system-ui, sans-serif;
    display: inline-block;
}

.featured-stack {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
}

.featured-name {
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.featured-number {
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 3.4rem);
    line-height: 1;
}

.featured-time {
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.5rem);
}

/* FAQ */
.faq-section {
    margin: 2rem 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.faq-section h2 {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

details {
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
}

details:last-child {
    border-bottom: none;
}

summary {
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    padding: 0.5rem 1.75rem 0.5rem 0;
    list-style: none;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0.45rem;
    font-size: 1.2rem;
    color: var(--muted);
}

details[open] summary::after {
    content: "−";
}

details p {
    margin-top: 0.6rem;
    color: var(--gray);
}

/* Notice / disclaimer boxes */
.notice,
.disclaimer-box {
    border-left: 4px solid var(--gold-dark);
    padding: 1rem;
    margin: 1.5rem 0;
    background: var(--gold-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.notice--dark {
    background: #111;
    color: #ddd;
    border-left-color: var(--gold);
}

.notice--dark strong {
    color: var(--white);
}

/* Cards: topics, guides, blog */
.section {
    margin: 2rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.section-head h2 {
    font: 700 20px/1.2 system-ui, sans-serif;
    margin-bottom: 0.4rem;
}

.section-head p {
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.section-head--left {
    text-align: left;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.topic-card,
.guide-card,
.blog-card,
.info-card,
.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow);
}

.topic-card h3,
.guide-card h3,
.blog-card h3,
.info-card h3,
.about-card h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    margin-bottom: 0.5rem;
}

.topic-card a,
.guide-card a,
.blog-card h3 a {
    color: #333;
    text-decoration: none;
}

.topic-card a:hover,
.guide-card a:hover,
.blog-card h3 a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.blog-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

.blog-cover h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--white);
}

.blog-card p,
.topic-card p,
.guide-card p,
.info-card p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--gray);
}

.card-meta {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.chip {
    display: inline-block;
    font: 600 11px/1 system-ui, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-soft);
    border-radius: 20px;
    padding: 5px 10px;
}

/* Homepage-specific */
.home-hero {
    padding: 2.25rem 0 1.5rem;
    text-align: left;
}

.home-hero h1 {
    font: 700 clamp(1.7rem, 3.4vw, 2.4rem) / 1.2 system-ui, sans-serif;
    max-width: 18ch;
    margin-bottom: 0.75rem;
}

.home-hero .lede {
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 40rem;
    color: var(--gray);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.guide-list {
    display: grid;
    gap: 0.85rem;
}

.guide-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.15rem;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
}

.guide-row:hover {
    text-decoration: none;
    box-shadow: var(--shadow);
}

.guide-row h3 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.guide-row p {
    color: var(--muted);
    font-size: 0.95rem;
}

.guide-index {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--black);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Results page */
.results-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
    align-items: start;
}

.how-read {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.how-read h2 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.how-read ol {
    padding-left: 1.2rem;
    color: var(--gray);
}

.how-read li {
    margin: 0.45rem 0;
}

.result-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.updated-stamp {
    font-size: 13px;
    color: var(--muted);
}

/* Blog listing */
.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.category-chips a {
    text-decoration: none;
    color: var(--black);
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    background: var(--white);
}

.category-chips a:hover,
.category-chips a[aria-current="page"] {
    background: var(--black);
    color: var(--gold);
    border-color: var(--black);
    text-decoration: none;
}

.featured-article {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.75rem;
}

.featured-article .blog-cover {
    margin: 0;
    height: 100%;
    min-height: 180px;
}

/* Category listing */
.article-list {
    display: grid;
    gap: 1rem;
}

.article-list-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.85rem;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
}

.article-list-item:hover {
    text-decoration: none;
    box-shadow: var(--shadow);
}

.article-list-item .thumb {
    background: #222;
    color: var(--white);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.article-list-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.article-list-item p {
    color: var(--muted);
}

/* Article layout */
.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 760px) 280px;
    gap: 2rem;
    align-items: start;
    margin: 1rem 0 2.5rem;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222;
}

.article-body h2 {
    font-size: 1.35rem;
    margin: 1.75rem 0 0.7rem;
}

.article-body h3 {
    font-size: 1.12rem;
    margin: 1.3rem 0 0.5rem;
}

.article-body p,
.article-body ul,
.article-body ol {
    margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.3rem;
}

.article-body li {
    margin: 0.3rem 0;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0.75rem 0 1.25rem;
}

.toc {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: calc(var(--header-h) + 12px);
}

.toc h2 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.toc ol {
    padding-left: 1.1rem;
    font-size: 0.9rem;
}

.toc a {
    color: var(--gray);
    text-decoration: none;
}

.toc a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.related-stack {
    margin-top: 1rem;
    display: grid;
    gap: 0.65rem;
}

.related-stack a {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.75rem 0.85rem;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 0.92rem;
}

.related-stack a:hover {
    text-decoration: underline;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.split-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0 2rem;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    margin: 1.25rem 0 2rem;
}

.form-card,
.contact-aside {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

label {
    display: block;
    font-weight: 600;
    margin: 0.85rem 0 0.35rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font: inherit;
    background: #fdfdfd;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.btn,
.telegram-btn {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    padding: 12px 24px;
    border-radius: 25px;
    font: 600 16px/1 system-ui, sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary,
.contact .telegram-btn {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn:hover,
.telegram-btn:hover {
    text-decoration: none;
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.form-status {
    margin-top: 0.85rem;
    font-size: 0.95rem;
}

.form-status.success {
    color: var(--new);
}

.form-status.error {
    color: var(--old);
}

/* Legal */
.legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2rem;
    margin: 1rem 0 2.5rem;
}

.legal-body {
    font-size: 1rem;
    line-height: 1.65;
}

.legal-body h1 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 0.5rem;
}

.legal-body h2 {
    font-size: 1.25rem;
    margin: 1.75rem 0 0.6rem;
}

.legal-body p,
.legal-body ul {
    margin-bottom: 0.9rem;
}

.legal-body ul {
    padding-left: 1.25rem;
}

.last-updated {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

/* Chart archive */
.chart-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin: 1rem 0;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 1rem 0 2rem;
}

.chart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 13px;
    text-align: center;
}

.chart-table th,
.chart-table td {
    border: 1px solid #eee;
    padding: 8px 6px;
}

.chart-header,
.month-header {
    background: var(--black);
    color: var(--gold);
    font-weight: 600;
}

.day-cell {
    font-weight: 700;
    background: var(--gold-soft);
}

.data-cell.pending,
.data-cell.closed {
    color: #999;
}

.year-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0 2rem;
}

.year-box {
    background: var(--white);
    border: 0;
    border-radius: var(--radius);
    padding: 0.7rem 0.4rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    font: 600 13px/1.2 system-ui, sans-serif;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    display: block;
    width: 100%;
}

.year-box:hover {
    background: var(--gold-soft);
}

.year-box.is-current {
    background: var(--black);
    color: var(--gold);
}

.chart-market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0 2rem;
}

.chart-market-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.1rem 1rem;
    text-decoration: none;
    color: inherit;
    display: block;
}

.chart-market-card:hover {
    text-decoration: none;
    outline: 2px solid var(--gold);
}

.chart-market-card h3 {
    margin: 0.35rem 0 0.4rem;
}

.chart-market-card p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
}

/* Contact band (homepage) */
.contact-band {
    background: var(--black);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.contact-band h2 {
    margin-bottom: 10px;
}

.contact-band p {
    margin-bottom: 16px;
}

.contact-band .telegram-btn {
    margin: 0 8px 8px;
}

/* Footer */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 24px 0 20px;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 12px;
    color: #111;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    background: var(--gold-soft);
    border-left: 4px solid var(--gold);
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: left;
}

.copyright {
    margin-top: 15px;
    font-size: 12px;
    color: var(--white);
}

#toast {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    font-size: 1rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.refresh-btn {
    position: fixed;
    bottom: 0.5rem;
    right: 0.25rem;
    background-color: #0a7a12;
    color: white;
    width: clamp(3.5rem, 10vw, 4rem);
    height: clamp(3.5rem, 10vw, 4rem);
    border-radius: 50%;
    font: 600 1rem/1 system-ui, sans-serif;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refresh-btn:disabled {
    opacity: 0.7;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.is-spinning {
    animation: rotate 0.8s linear infinite;
}

@media (max-width: 900px) {
    .page-hero--split,
    .results-layout,
    .featured-article,
    .article-shell,
    .legal-layout,
    .contact-layout,
    .about-grid,
    .split-copy,
    .info-row {
        grid-template-columns: 1fr;
    }

    .toc {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--black);
        flex-direction: column;
        padding: 0.5rem 16px 1rem;
        border-bottom: 2px solid var(--gold);
    }

    .site-header.is-open .site-nav {
        display: flex;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .article-list-item {
        grid-template-columns: 1fr;
    }

    .article-list-item .thumb {
        min-height: 88px;
    }

    .home-hero h1 {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .is-spinning,
    * {
        animation: none !important;
        transition: none !important;
    }
}
