:root {
  --brand:      #5b8def;
  --brand-dark: #3b6bcc;
  --shade:     #0f1a2e;
  --paper:     #f4f7ff;
  --paper-soft:  #e9eefc;
  --rule:   rgba(91,141,239,.18);
  --ink:     #0f1a2e;
  --ink-soft:    rgba(15,26,46,.55);
  --space:   104px;
  --corner:  24px;
  --glow:   0 8px 40px rgba(91,141,239,.15);
  --type-head:     'Archivo', system-ui, -apple-system, sans-serif;
  --type-body:     'Inter', system-ui, -apple-system, sans-serif;
  --hue-shift:                -40deg;
}

.cta-acc, .lead-tag, .rank-badge, .nav-logo span:last-child { filter: hue-rotate(var(--hue-shift)); }

.rank, .top-pick, .proc-card, .qa-item, .brand-head, .guide-card, .alt-card, .glossary-item, .best-for-item {
  background: var(--paper);
  border: none;
  box-shadow: var(--glow);
  border-radius: var(--corner);
}

.page-wrap > .block { background-color: var(--paper); } .page-wrap > .block:first-of-type, .page-wrap > .block.cta-block, .page-wrap > .block.pick-block { background-color: var(--paper-soft); }

/* Basic Reset & Body */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--type-body);
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--type-head);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.8em;
}
h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.6rem; font-weight: 600; }
p { margin-bottom: 1em; }
ul, ol { margin-bottom: 1em; padding-left: 1.5em; }
ul li, ol li { margin-bottom: 0.5em; }

/* Layout & Sections */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.block {
    padding: var(--space) 0;
    transition: background-color 0.3s ease;
}
.block:nth-child(even) {
    background-color: var(--paper-soft);
}

/* Header */
.nav {
    background-color: var(--paper);
    padding: 1rem 0;
    box-shadow: var(--glow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: var(--type-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
}
.nav-logo:hover {
    text-decoration: none;
}
.nav-menu {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}
.nav-link {
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: var(--brand);
    text-decoration: none;
}
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--ink);
    background: none;
    border: none;
}
.nav-menu.open {
    display: flex;
}
.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9em;
    color: var(--ink-soft);
}
.breadcrumb a {
    color: var(--ink-soft);
}
.breadcrumb a:hover {
    color: var(--brand);
}
.breadcrumb span {
    font-weight: 500;
    color: var(--ink);
}


/* Hero */
.lead {
    text-align: center;
    padding: calc(var(--space) * 0.75) 0;
    background-color: var(--paper-soft);
}
.lead-tag {
    display: inline-block;
    background-color: var(--brand);
    color: #fff;
    padding: 0.3em 0.8em;
    border-radius: var(--corner);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.lead h1 {
    font-size: 3rem;
    margin-bottom: 0.7rem;
}
.lead-subtitle {
    font-size: 1.25rem;
    color: var(--ink-soft);
    max-width: 800px;
    margin: 0 auto 2rem auto;
}
.lead-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.lead-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.lead-chips span {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.4em 0.8em;
    background-color: var(--paper);
    border-radius: var(--corner);
    border: 1px solid var(--rule);
}
.lead-chips span svg {
    color: var(--brand);
}

/* Verdict Block */
.top-pick .top-pick-card {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.top-pick .pick-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.top-pick .stars, .top-pick .rating-val {
    display: inline-block;
    vertical-align: middle;
}
.top-pick .cta {
    margin-top: 1.5rem;
}

/* Comparison Table */
.rank-wrap {
    overflow-x: auto;
    width: 100%;
}
.rank {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.95rem;
}
.rank th, .rank td {
    padding: 1rem;
    border-bottom: 1px solid var(--rule);
    text-align: left;
    vertical-align: middle;
}
.rank th {
    background-color: var(--paper-soft);
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}
.rank td {
    background-color: var(--paper);
}
.rank tbody tr:last-child td {
    border-bottom: none;
}
.rank-name-col {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.rank-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.rank-info {
    display: flex;
    flex-direction: column;
}
.rank-info a {
    font-weight: 600;
    color: var(--ink);
    font-size: 1.1rem;
    text-decoration: none;
}
.rank-info a:hover {
    text-decoration: underline;
}
.rank-badge {
    display: inline-block;
    background-color: var(--brand);
    color: #fff;
    padding: 0.2em 0.6em;
    border-radius: var(--corner);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.3rem;
}

/* Best-for grid */
.best-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.best-for-item {
    padding: 1.5rem;
}
.best-for-item h3 {
    margin-bottom: 0.5rem;
    color: var(--brand);
}
.best-for-item p {
    margin: 0;
}

/* Editor's Pick */
.grid-col-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    background-color: var(--paper);
    padding: 2rem;
    border-radius: var(--corner);
}
.top-pick-img {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-pick-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.top-pick-hgroup {
    margin-bottom: 1rem;
}
.top-pick-hgroup h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.top-pick-content {
    text-align: left;
}
.top-pick-content .cta {
    margin-top: 1.5rem;
}
.pros-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.pros-list li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 0.5em;
    color: var(--ink-soft);
}
.pros-list li i {
    color: var(--brand);
}

/* Stats */
.proc-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Changed to space-around for better distribution */
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}
.proc-grid h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}
.stat {
    flex: 1 1 200px; /* Allow items to grow and shrink */
    padding: 1.5rem;
}
.stat-num {
    font-family: var(--type-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.5rem;
    display: block;
}
.stat-lbl {
    font-size: 1.1rem;
    color: var(--ink);
}

/* Glossary Block */
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.glossary-item {
    padding: 1.5rem;
}
.glossary-item h3 {
    margin-bottom: 0.5rem;
}
.glossary-item p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 0;
}

/* FAQ */
.qa-item {
    border-radius: var(--corner);
    margin-bottom: 0.5rem; /* Add spacing between items */
    overflow: hidden; /* Ensure content doesn't overflow during transition */
}
.qa-item + .qa-item {
    border-top: 1px solid var(--rule);
}
.qa-q {
    width: 100%;
    background: none;
    border: none;
    padding: calc(var(--space)/4) 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--ink);
}
.qa-q .chevron {
    transition: transform .2s ease;
}
.qa-item.is-open .qa-q .chevron {
    transform: rotate(180deg);
}
.qa-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease-out;
}
.qa-a > div {
    overflow: hidden;
}
.qa-item.is-open .qa-a {
    grid-template-rows: 1fr;
}
.qa-a > div {
    padding-bottom: calc(var(--space)/4);
    color: var(--ink-soft);
}
.qa-a p:last-child {
    margin-bottom: 0;
}

/* Calls to Action (CTA) */
.cta-block {
    text-align: center;
    background-color: var(--paper-soft);
}
.cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-block p {
    font-size: 1.2rem;
    color: var(--ink-soft);
    margin-bottom: 2rem;
}

/* Buttons */
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--corner);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1; /* For better vertical alignment of text */
}
.cta:hover {
    text-decoration: none;
    opacity: 0.9;
    transform: translateY(-2px);
}
.cta-acc {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cta-acc:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15), 0 0 0 3px rgba(var(--brand-rgb), 0.3);
}

.cta-out {
    border: 2px solid var(--brand);
    color: var(--brand);
    background: transparent;
}
.cta-out:hover {
    background: var(--brand);
    color: #fff;
}

/* Risk Strip */
.risk-bar {
    background-color: var(--shade);
    color: rgba(255,255,255,.8);
    padding: 1rem 0;
    font-size: 0.9rem;
    text-align: center;
}
.risk-bar svg {
    color: #f7d00f; /* warning yellow */
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Footer */
.foot {
    background-color: var(--paper-soft);
    padding: var(--space) 0 calc(var(--space) / 2);
    color: var(--ink-soft);
    font-size: 0.9rem;
}
.foot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.foot-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--ink);
}
.foot-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.foot-col ul li {
    margin-bottom: 0.5rem;
}
.foot-col ul li a {
    color: var(--ink-soft);
}
.foot-col ul li a:hover {
    color: var(--brand);
}
.foot-col p {
    margin-bottom: 1em;
}
.foot-col a {
    color: var(--brand);
}
.foot-col a:hover {
    text-decoration: underline;
}
.foot-col:first-child .nav-logo {
    margin-bottom: 1rem;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}
.newsletter-form input {
    padding: 0.7rem 1rem;
    border: 1px solid var(--rule);
    border-radius: var(--corner);
    background-color: var(--paper);
    color: var(--ink);
    font-size: 0.95rem;
}
.newsletter-form button {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
}

/* Cookie Banner */
.consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--shade);
    color: #fff;
    padding: 1rem 0;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}
.consent.show {
    transform: translateY(0);
}
.consent-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1.25rem;
}
.consent p {
    flex-grow: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}
.consent p a {
    color: var(--brand);
    text-decoration: underline;
}
.consent-btns {
    display: flex;
    gap: 0.8rem;
}
.consent-btns button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}
.consent-prefs {
    width: 100%;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--corner);
    padding: 1rem;
    margin-top: 1rem;
    display: none;
}
.consent-prefs h4 {
    color: #fff;
    margin-bottom: 1rem;
}
.consent-row {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.consent-row label {
    font-size: 0.9rem;
}
.consent-prefs button {
    width: auto;
    margin-top: 1rem;
}
.consent-reopen {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: var(--shade);
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow);
    z-index: 1999;
}
.consent-reopen i {
    font-size: 1.5rem;
}
.consent-reopen.hidden {
    display: none;
}

/* Guide Cards */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.guide-card {
    padding: 1.5rem;
}
.guide-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}
.guide-card h3 a {
    color: var(--ink);
    text-decoration: none;
}
.guide-card h3 a:hover {
    text-decoration: underline;
}
.guide-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
}
.guide-card .byline {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.guide-card .byline i {
    color: var(--brand);
}

/* Review Page Specifics */
.byline {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.byline i {
    color: var(--brand);
}
.brand-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.brand-head-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}
.brand-head-cap {
    margin: 0;
    font-size: 1rem;
}
.brand-head-cap a {
    font-weight: 500;
    color: var(--brand);
}
.brand-head-cap a:hover {
    text-decoration: underline;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}
.review-score {
    padding: 1.5rem;
    border-radius: var(--corner);
    background-color: var(--paper-soft);
    text-align: center;
}
.review-score h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.score-card {
    background-color: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--corner);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.score-value {
    font-family: var(--type-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.5rem;
    line-height: 1;
}
.score-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-top: 1rem;
    margin-bottom: 0;
}
.pros-cons {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.pros-cons li {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    margin-bottom: 0.8em;
    color: var(--ink-soft);
}
.pros-cons li i {
    color: var(--brand);
    font-size: 1.1em;
    margin-top: 0.15em;
    flex-shrink: 0;
}
.review-content {
    font-size: 1.05rem;
    line-height: 1.7;
}
.review-content h2 {
    font-size: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.2rem;
}
.review-content h2:first-child {
    margin-top: 0;
}
.review-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.review-content ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1.5rem;
}
.review-content ul li {
    margin-bottom: 0.5em;
}
.review-content .cta {
    margin-top: 2rem;
}

/* Alternatives */
.alt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.alt-card {
    padding: 1.5rem;
    text-align: center;
}
.alt-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
}
.alt-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.alt-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
    min-height: 4em; /* Ensure consistent card height */
}
.alt-card .cta {
    margin-top: 1rem;
}

/* Blog Content */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}
.blog-content h2 {
    font-size: 2rem;
    margin-top: 1.5em;
    margin-bottom: 1em;
}
.blog-content h3 {
    font-size: 1.6rem;
    margin-top: 1.2em;
    margin-bottom: 0.8em;
}
.blog-content ul, .blog-content ol {
    list-style: disc;
    padding-left: 1.8em;
    margin-bottom: 1.5em;
}
.blog-content ul li, .blog-content ol li {
    margin-bottom: 0.6em;
}
.blog-content .mini-logo {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 0.5em;
    border-radius: 50%; /* Style for fallback logos */
}
.blog-content strong {
    font-weight: 600;
    color: var(--ink);
}

/* Contact Form */
.contact-form-wrap {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--rule);
    border-radius: var(--corner);
    font-size: 1rem;
    background-color: var(--paper);
    color: var(--ink);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form button {
    padding: 1rem 2rem;
    width: auto;
}
address {
    font-style: normal;
    margin-top: 2rem;
    line-height: 1.6;
}
address strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Editor Profile (About Us Page) */
.editor-profile {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--paper-soft);
    padding: 1.5rem;
    border-radius: var(--corner);
    margin-top: 2rem;
}
.editor-profile .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--brand);
    color: #fff;
    font-family: var(--type-head);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.editor-profile h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.editor-profile p {
    margin-bottom: 0;
}

/* Star Rating */
.stars { color: #f59e0b; letter-spacing: 1px; } .rating-val { font-weight: 600; margin-left: 0.5rem; }

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    .lead-subtitle { font-size: 1.1rem; }
    .block { padding: calc(var(--space) * 0.7) 0; }
    .grid-col-2 { grid-template-columns: 1fr; }
    .top-pick-img { margin-bottom: 1.5rem; }
    .review-grid { grid-template-columns: 1fr; }
    .review-content h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--paper);
        border-top: 1px solid var(--rule);
        padding: 1rem 1.25rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .lead h1 {
        font-size: 2rem;
    }
    .lead-subtitle {
        font-size: 1rem;
    }
    .lead-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    .lead-chips {
        flex-direction: column;
        align-items: center;
    }
    .rank-name-col {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .rank-info {
        align-items: flex-start;
    }
    .rank th, .rank td {
        padding: 0.8rem;
    }
    .foot-grid {
        grid-template-columns: 1fr;
    }
    .consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    .consent-btns {
        width: 100%;
        justify-content: space-around;
    }
    .consent-btns button {
        flex: 1;
    }
    .editor-profile {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .editor-profile .avatar {
      margin-bottom: 1rem;
    }
}
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    .block { padding: calc(var(--space) * 0.5) 0; }
    .lead-actions .cta {
        width: 100%;
    }
    .rank th, .rank td {
        white-space: normal;
        word-break: break-word;
    }
}
