/*
Theme Name: nakamatachi
Description: description
Version:     1.0.2
*/

/* === Images Styles — WM-Radar Hub === */

/* Content images within sections */
[data-content] figure {
  margin: 2rem auto;
  border-radius: 8px;
  overflow: hidden;
}

[data-content] figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Hero image handled by existing hero styles */

@media (max-width: 600px) {
  [data-content] figure {
    margin: 1.5rem -1rem;
    border-radius: 0;
  }
  [data-content] figure img {
    border-radius: 0;
  }
}


.table-wrapper {
  overflow: auto;
}
[data-content="page"] h1 {
  padding: 1.5rem 0;
}
/* 12314 */

/* === 1. CSS Variables & Reset === */
:root {
  --accent: #22D1EE;
  --accent-hover: #1AB8D1;
  --secondary: #F5A623;
  --bg-primary: #0D0F13;
  --bg-secondary: #111318;
  --bg-tertiary: #181B22;
  --bg-card: #1C1F28;
  --border: #2A2D38;
  --text-primary: #EAEDF2;
  --text-secondary: #9BA1B0;
  --text-tertiary: #5C6274;
  --success: #34D399;
  --danger: #F87171;
  --info-box-bg: #162433;
  --callout-bg: #1F1A10;
  --content-width: 740px;
  --section-gap: 4.5rem;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Lora', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-logo: 'Advent Pro', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--accent-hover); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* === 2. General Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  text-align: left;
}

h1 { font-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.625rem); }
h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  margin-bottom: 1.25rem;
  scroll-margin-top: 2rem;
}
h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  scroll-margin-top: 2rem;
}
h4 { font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem); }

p {
  text-align: left;
  margin-bottom: 1.25rem;
}
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em { font-style: italic; }

blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: left;
}
li { margin-bottom: 0.5rem; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 1rem);
  font-family: var(--font-mono);
}
thead { background: var(--bg-tertiary); }
th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
tbody tr:hover { background: rgba(34, 209, 238, 0.03); }

figure {
  margin: 1.5em auto;
}
figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 0.5rem;
}

/* === 3. Layout — Sections === */
main {
  width: 100%;
}

[data-content] {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  margin-top: var(--section-gap);
  margin-bottom: 0;
  position: static;
}

[data-content]:first-child {
  margin-top: 0;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* === 4. Components === */

/* --- info-box --- */
.info-box {
  background: var(--info-box-bg);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.info-box p {
  text-align: left;
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- callout --- */
.callout {
  background: var(--callout-bg);
  border-left: 3px solid var(--secondary);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.callout p {
  text-align: left;
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- tldr (key-takeaway-hub) --- */
.tldr {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.75rem;
  margin: 2rem auto;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.tldr h2 {
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  margin-bottom: 1rem;
  color: var(--accent);
}
.tldr ul {
  list-style: none;
  padding-left: 0;
}
.tldr li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.tldr li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* --- key-takeaway --- */
.key-takeaway {
  border-top: 2px solid var(--accent);
  padding-top: 1.25rem;
  margin: 2rem 0;
}
.key-takeaway p {
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* --- fun-fact --- */
.fun-fact {
  position: relative;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
.fun-fact::before {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.fun-fact p {
  text-align: left;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- glossary-term --- */
.glossary-term {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 1.25rem 0;
}
.glossary-term p {
  text-align: left;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.glossary-term strong {
  font-family: var(--font-mono);
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-style: dashed;
  white-space: nowrap;
  font-weight: 600;
}

/* --- stat-highlight --- */
.stat-highlight {
  margin: 2rem 0;
  text-align: center;
}
.stat-highlight p {
  text-align: center;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.stat-highlight strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

/* --- section-bridge --- */
.section-bridge {
  text-align: center;
  margin: 2.5rem 0 0;
  position: relative;
  padding: 0 2rem;
}
.section-bridge::before,
.section-bridge::after {
  content: '\00B7\00A0\00B7\00A0\00B7';
  color: var(--text-tertiary);
  font-size: 0.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.section-bridge::before { left: 0; }
.section-bridge::after { right: 0; }
.section-bridge p {
  text-align: center;
  font-style: italic;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- odds-example --- */
.odds-example {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin: 1.75rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.odds-example p {
  text-align: center;
  font-family: var(--font-mono);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.odds-example p:last-child { margin-bottom: 0; }
.odds-example .odds-value {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
}

/* --- card-grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.card-grid > div {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-grid > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.card-grid h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.card-grid p {
  text-align: left;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- comparison --- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.comparison > div {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.comparison h4 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.comparison p {
  text-align: left;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- dos-donts --- */
.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.dos-donts > div {
  padding: 1.25rem;
  border-radius: 6px;
}
.dos-donts > div:first-child {
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.dos-donts > div:last-child {
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.2);
}
.dos-donts h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.dos-donts > div:first-child h4 { color: var(--success); }
.dos-donts > div:last-child h4 { color: var(--danger); }
.dos-donts ul {
  list-style: none;
  padding-left: 0;
}
.dos-donts li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}
.dos-donts > div:first-child li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.dos-donts > div:last-child li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

/* --- pre-bet-checklist --- */
.pre-bet-checklist {
  margin: 1.75rem 0;
}
.pre-bet-checklist h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pre-bet-checklist ul {
  list-style: none;
  padding-left: 1.75rem;
  border-left: 2px solid var(--border);
}
.pre-bet-checklist li {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.35rem 0;
}
.pre-bet-checklist li::before {
  content: '\2610';
  position: absolute;
  left: -1.75rem;
  color: var(--accent);
  background: var(--bg-primary);
  padding: 0 2px;
  transform: translateX(-50%);
  font-size: 0.85rem;
}

/* --- at-a-glance --- */
.at-a-glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  margin: 1.75rem 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.at-a-glance > div {
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.at-a-glance > div:last-child { border-right: none; }
.at-a-glance h4 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.at-a-glance p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* --- worked-example --- */
.worked-example {
  background: var(--bg-tertiary);
  padding: 1.75rem;
  border-radius: 6px;
  margin: 1.75rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.worked-example h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.worked-example p {
  text-align: left;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.worked-example .result {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- author-bio --- */
.author-bio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* === 5. Hero Section === */
.site-header {
  background: var(--bg-secondary);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.custom-logo {
  height: 38px;
  width: auto;
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}
.header-meta time {
  color: var(--text-secondary);
}
.trust-marker {
  color: var(--text-tertiary);
  font-family: var(--font-heading);
  font-weight: 500;
}

[data-content="hero"] {
  max-width: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--bg-secondary);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  margin-top: 0;
}
[data-content="hero"] > * {
  position: relative;
  z-index: 1;
}
[data-content="hero"] .hero-rubric {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}
[data-content="hero"] h1 {
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto 1rem;
  color: var(--text-primary);
}
[data-content="hero"] .hero-lead {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}
[data-content="hero"] .hero-byline {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-bottom: 1.75rem;
}
[data-content="hero"] figure {
  margin: 0 auto 1.5rem;
  max-width: var(--content-width);
}
[data-content="hero"] figure img {
  margin: 0 auto;
  border-radius: 4px;
}
[data-content="hero"] .hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  text-align: center;
}
[data-content="hero"] .hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: var(--bg-primary);
}

/* === TOC (horizontal compact strip) === */
[data-content="toc"] {
  margin-top: 2.5rem;
}
.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list a {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.4rem 0.75rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  /* white-space: nowrap; */
}
}
.toc-list a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(34, 209, 238, 0.05);
}

/* === 6. FAQ Accordion === */
details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
summary {
  padding: 1rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}
summary:hover { color: var(--accent); }
summary::-webkit-details-marker { display: none; }
summary::marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-tertiary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
details[open] summary::after {
  content: '\2212';
}

/* Modern animated accordion with ::details-content */
::details-content {
  transition: opacity 0.35s ease, block-size 0.35s ease, content-visibility 0.35s ease allow-discrete;
  opacity: 0;
  block-size: 0;
  overflow: hidden;
}
details {
  interpolate-size: allow-keywords;
}
details[open]::details-content {
  opacity: 1;
  block-size: auto;
}

/* Fallback for older browsers */
@supports not selector(::details-content) {
  details > div {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
  }
  details[open] > div {
    max-height: 500px;
    opacity: 1;
  }
}

details > div > p {
  padding-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === Back to Top === */
.back-to-top {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-top: 2rem;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}
.back-to-top:hover { color: var(--accent); }

/* === 7. Footer === */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: var(--section-gap);
  padding: 3rem 1.5rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}
.footer-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-grid h3 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin: 0 0 0.75rem 0;
  text-align: left;
}
.footer-grid p {
  color: var(--text-tertiary);
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
  text-align: left;
}
.footer-grid a {
  color: var(--text-tertiary);
  transition: color 0.2s ease;
  text-decoration: none;
  padding: 0;
}
.footer-grid a:hover { color: var(--text-secondary); }
.footer-grid ul {
  list-style: none;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
}
.footer-bottom {
  max-width: 1000px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-tertiary);
}
.footer-logo .custom-logo {
  height: 28px;
  width: auto;
  opacity: 0.5;
  margin: 0 auto 1rem;
  max-width: none;
}

/* === 8. Media Queries === */
@media (max-width: 768px) {
  [data-content] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  [data-content="hero"] {
    padding: 2.5rem 1rem 2rem;
  }
  .site-header {
    padding: 0.5rem 1rem;
  }
  .site-logo img {
    min-width: 140px;
    height: 30px;
  }
  .header-meta {
    gap: 0.5rem;
    font-size: 0.6rem;
  }
  .toc-list {
    gap: 0.35rem;
  }
  .toc-list a {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }
  .comparison,
  .dos-donts {
    grid-template-columns: 1fr;
  }
  .at-a-glance {
    grid-template-columns: 1fr 1fr;
  }
  .at-a-glance > div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .at-a-glance > div:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .at-a-glance > div:last-child,
  .at-a-glance > div:nth-last-child(2):nth-child(odd) ~ div {
    border-bottom: none;
  }
  .glossary-term {
    flex-direction: column;
    gap: 4px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  table {
    font-size: 0.78rem;
  }
  th, td {
    padding: 0.5rem 0.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stat-highlight strong {
    font-size: 2rem;
  }
  .section-bridge::before,
  .section-bridge::after {
    display: none;
  }
  .section-bridge {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .at-a-glance {
    grid-template-columns: 1fr;
  }
  .at-a-glance > div {
    border-right: none;
  }
  .header-meta .trust-marker {
    display: none;
  }
}
