:root {
  --bg-page: #0d0d0d;
  --bg-header: #1a1a1a;
  --bg-footer: #111111;
  --text-primary: #e0e0e0;
  --accent: #11d462;
  --accent-secondary: #0ea550;
  --border-color: #2a2a2a;
  --text-secondary: #888888;
  --surface: #1e1e1e;
  --content-width: 940px;
  --section-gap: clamp(3rem, 4vw, 5rem);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-logo: 'Poppins', sans-serif;
  --h1-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.75rem);
  --h2-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  --h3-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --body-size: 1.0625rem;
  --mono-size: 0.9375rem;
  --line-height: 1.7;
  --success: #22c55e;
  --danger: #ef4444;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--line-height);
  color: var(--text-primary);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--text-primary); }
h1 { font-size: var(--h1-size); line-height: 1.2; }
h2 { font-size: var(--h2-size); line-height: 1.3; margin-bottom: 1rem; scroll-margin-top: 2rem; text-align: left; }
h3 { font-size: var(--h3-size); line-height: 1.4; margin-bottom: 0.75rem; scroll-margin-top: 2rem; text-align: left; }

p { text-align: left; margin-bottom: 1.25em; }
ul, ol { text-align: left; margin-bottom: 1.25em; padding-left: 1.5em; }
li { margin-bottom: 0.4em; }
strong { font-weight: 600; }
em { font-style: italic; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-secondary); }
a:focus { outline: 2px solid var(--accent); outline-offset: 2px; }

blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25em;
  margin: 1.5em 0;
  color: var(--text-secondary);
  font-style: italic;
}

figure { margin: 1.5em auto; }
figure img { display: block; max-width: 100%; height: auto; }
figcaption { text-align: center; font-size: 0.875rem; color: var(--text-secondary); margin-top: 0.5rem; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
}
th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
th { font-weight: 600; color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }
tr:hover { background-color: rgba(17, 212, 98, 0.03); }

/* ── LAYOUT ── */
.site-header {
  background-color: var(--bg-header);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img { display: block; height: auto; }
.header-meta { display: flex; align-items: center; gap: 1rem; }
.header-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.header-trust {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

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);
}
[data-content]:first-child { margin-top: 0; }

/* ── HERO ── */
[data-content="hero"] {
  max-width: 100%;
  padding: 0;
  margin-top: 0;
  background-color: var(--bg-page);
  text-align: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
[data-content="hero"] * { position: relative; z-index: 1; }
[data-content="hero"] .hero-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
}
[data-content="hero"] h1 {
  text-align: center;
  margin: 0 auto 1rem;
  max-width: var(--content-width);
  padding: 0 1.5rem;
}
[data-content="hero"] .hero-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 0 1.5rem;
}
[data-content="hero"] .hero-byline {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0 auto 2rem;
}
[data-content="hero"] figure {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-width);
  padding: 0 1.5rem;
}
[data-content="hero"] figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
[data-content="hero"] .hero-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.65rem 1.75rem;
  background-color: var(--accent);
  color: #0d0d0d;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  text-align: center;
}
[data-content="hero"] .hero-cta:hover {
  background-color: var(--accent-secondary);
  transform: translateY(-1px);
}

/* ── TLDR ── */
.tldr {
  background-color: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 1.75rem 2rem;
  border-radius: 2px;
}
.tldr h2 {
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  margin-bottom: 1rem;
  text-align: left;
}
.tldr ul { margin-bottom: 0; }
.tldr li { margin-bottom: 0.6em; font-size: 0.95rem; }

/* ── TOC ── */
[data-content="toc-section"] {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid var(--border-color);
}
.toc-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  text-align: left;
}
.toc-grid {
  column-count: 2;
  column-gap: 2.5rem;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.toc-grid > li {
  break-inside: avoid;
  margin-bottom: 0.9rem;
}
.toc-grid > li > a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.toc-grid > li > a:hover { color: var(--accent); }
.toc-sub {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.35rem;
  margin-bottom: 0;
}
.toc-sub li { margin-bottom: 0.3rem; }
.toc-sub a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.toc-sub a:hover { color: var(--accent); }

/* ── COMPONENTS ── */

/* info-box */
.info-box {
  background-color: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.5em 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.info-box p { text-align: left; color: var(--text-primary); margin-bottom: 0.5em; }
.info-box p:last-child { margin-bottom: 0; }

/* callout */
.callout {
  background-color: #222222;
  border-left: 3px solid var(--accent-secondary);
  padding: 1.25rem 1.5rem;
  margin: 1.5em 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.callout p { text-align: left; color: var(--text-primary); margin-bottom: 0.5em; }
.callout p:last-child { margin-bottom: 0; }

/* key-takeaway */
.key-takeaway {
  border-top: 2px solid var(--accent);
  padding-top: 1rem;
  margin: 2em 0;
}
.key-takeaway p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1rem + 0.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 0;
}

/* fun-fact */
.fun-fact {
  position: relative;
  padding-left: 1.5rem;
  margin: 1.5em 0;
}
.fun-fact::before {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.fun-fact p {
  font-style: italic;
  color: var(--text-secondary);
  text-align: left;
  margin-bottom: 0;
}

/* glossary-term */
.glossary-term {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 1em 0;
}
.glossary-term p { margin-bottom: 0; text-align: left; }
.glossary-term strong {
  font-family: var(--font-mono);
  font-size: var(--mono-size);
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.glossary-term span,
.glossary-term p:not(:first-child) { color: var(--text-secondary); font-size: 0.95rem; }

/* odds-example */
.odds-example {
  background-color: var(--surface);
  border: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  margin: 1.5em 0;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.odds-example p { text-align: left; color: var(--text-primary); margin-bottom: 0.6em; font-family: var(--font-mono); font-size: var(--mono-size); }
.odds-example p:first-child { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--accent); margin-bottom: 1rem; }
.odds-example p:last-child { margin-bottom: 0; color: var(--accent); font-weight: 600; }

/* comparison */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5em 0;
}
.comparison > div {
  background-color: var(--surface);
  padding: 1.25rem;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.comparison p { text-align: left; color: var(--text-primary); }
.comparison strong { color: var(--accent); }

/* card-grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5em 0;
}
.card-grid > div {
  background-color: var(--surface);
  padding: 1.25rem;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.card-grid p { text-align: left; color: var(--text-primary); }

/* dos-donts */
.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5em 0;
}
.dos-donts > div { padding: 1.25rem; border-radius: 2px; }
.dos-donts > div:first-child { border-left: 3px solid var(--success); background-color: rgba(34,197,94,0.05); }
.dos-donts > div:last-child { border-left: 3px solid var(--danger); background-color: rgba(239,68,68,0.05); }
.dos-donts p { text-align: left; color: var(--text-primary); }
.dos-donts strong { display: block; margin-bottom: 0.5em; }
.dos-donts > div:first-child strong { color: var(--success); }
.dos-donts > div:last-child strong { color: var(--danger); }
.dos-donts ul { padding-left: 1.25em; margin-bottom: 0; }
.dos-donts li { text-align: left; color: var(--text-primary); margin-bottom: 0.4em; }

/* pre-bet-checklist */
.pre-bet-checklist {
  margin: 2em 0;
}
.pre-bet-checklist p:first-child {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}
.pre-bet-checklist ul {
  border-left: 2px solid var(--border-color);
  padding-left: 1.75rem;
  list-style: none;
  margin-bottom: 0;
}
.pre-bet-checklist li {
  position: relative;
  padding: 0.35em 0;
  text-align: left;
  color: var(--text-primary);
}
.pre-bet-checklist li::before {
  content: '\2610';
  position: absolute;
  left: -1.5rem;
  color: var(--accent);
  background-color: var(--bg-page);
  padding: 0 2px;
}

/* at-a-glance */
.at-a-glance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 1.5em 0;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background-color: var(--surface);
}
.at-a-glance > div {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border-color);
  text-align: center;
}
.at-a-glance > div:last-child { border-right: none; }
.at-a-glance p { text-align: center; color: var(--text-primary); margin-bottom: 0.25em; }
.at-a-glance p:last-child { margin-bottom: 0; }
.at-a-glance strong {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.4rem);
  color: var(--accent);
}

/* worked-example */
.worked-example {
  background-color: var(--surface);
  padding: 2rem;
  margin: 1.5em 0;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.worked-example p { text-align: left; color: var(--text-primary); font-family: var(--font-mono); font-size: var(--mono-size); }
.worked-example hr { border: none; border-top: 1px solid var(--border-color); margin: 1em 0; }
.worked-example p:last-child { color: var(--accent); font-weight: 600; margin-bottom: 0; }

/* section-bridge */
.section-bridge {
  text-align: center;
  margin: 2rem 0;
  position: relative;
  padding: 0.5rem 0;
}
.section-bridge p {
  font-style: italic;
  color: var(--accent);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.section-bridge::before,
.section-bridge::after {
  content: '\00B7\00A0\00B7\00A0\00B7';
  color: var(--border-color);
  font-size: 0.85rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.section-bridge::before { left: 0; }
.section-bridge::after { right: 0; }

/* author-bio */
.author-bio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* ── FAQ ── */
details {
  border-bottom: 1px solid var(--border-color);
  interpolate-size: allow-keywords;
}
summary {
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  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::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
details[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}

::details-content {
  opacity: 0;
  block-size: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, block-size 0.3s ease, content-visibility 0.3s ease allow-discrete;
  content-visibility: hidden;
}
details[open]::details-content {
  opacity: 1;
  block-size: auto;
  content-visibility: visible;
}

@supports not selector(::details-content) {
  details[open] > *:not(summary) {
    animation: fade-in 0.3s ease forwards;
  }
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

details > div { padding-bottom: 1rem; }
details > div p { text-align: left; color: var(--text-primary); }

/* ── IMAGES ── */
.hero-image { border-radius: 4px; }
.article-image { border-radius: 2px; max-width: 100%; height: auto; display: block; margin: 0 auto; }

/* ── FOOTER ── */
.site-footer {
  background-color: var(--bg-footer);
  margin-top: var(--section-gap);
  padding: 3rem 2rem 1.5rem;
  color: #999;
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto 2rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.footer-col p { text-align: left; color: #999; margin-bottom: 0.5em; font-size: 0.78rem; }
.footer-col a { color: #bbb; text-decoration: none; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.footer-col li { margin-bottom: 0.4em; }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: #777;
}

/* ── MEDIA QUERIES ── */
@media (max-width: 768px) {
  .site-header { padding: 0.75rem 1rem; flex-wrap: wrap; gap: 0.5rem; }
  .header-meta { gap: 0.5rem; }

  [data-content] { padding-left: 1rem; padding-right: 1rem; }
  [data-content="hero"] { padding-left: 0; padding-right: 0; }
  [data-content="hero"] h1 { padding: 0 1rem; }
  [data-content="hero"] .hero-description { padding: 0 1rem; }
  [data-content="hero"] figure { padding: 0 1rem; }

  .toc-grid { column-count: 1; }
  .comparison { grid-template-columns: 1fr; }
  .dos-donts { grid-template-columns: 1fr; }
  .at-a-glance { grid-template-columns: 1fr; }
  .at-a-glance > div { border-right: none; border-bottom: 1px solid var(--border-color); }
  .at-a-glance > div:last-child { border-bottom: none; }
  .card-grid { grid-template-columns: 1fr; }
  .glossary-term { flex-direction: column; gap: 4px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  table { font-size: 0.85rem; }
  th, td { padding: 0.5rem 0.6rem; }

  .tldr { padding: 1.25rem 1.25rem; }
  [data-content="toc-section"] { padding: 1.25rem; }

  .odds-example { padding: 1.25rem; }
  .worked-example { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .header-meta { flex-direction: column; align-items: flex-start; }
  .site-header { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   UNIVERSAL DESKTOP & MOBILE MENU + LOGO
   ========================================= */

/* Header Base */
.site-header {
    background-color: var(--color-bg, #121212);
    border-bottom: 1px solid var(--color-border, #333333);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Mobile defaults for navigation bar */
.top-navigation-bar {
    width: 100%;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Fixes */
.site-logo img {
    max-height: 55px; 
    width: auto !important; 
    display: block;
    transition: transform 0.2s ease;
}

.site-logo img:hover {
    transform: scale(1.02);
}

/* Desktop Menu */
.site-nav--desktop {
    display: none; 
}

/* Desktop Grid Layout: Logo left, Menu center */
@media (min-width: 1024px) {
    .top-navigation-bar {
        max-width: 100%;
        padding: 15px 40px; 
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    .site-logo {
        grid-column: 1;
        justify-self: start; 
        margin: 0;
    }

    .site-nav--desktop {
        display: block;
        grid-column: 2;
        justify-self: center; 
    }

    .mobile-controls {
        display: none; 
    }
    
    .menu-desktop {
        display: flex;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .menu-desktop a {
        text-decoration: none;
        color: var(--color-text, #ffffff);
        font-family: var(--font-body, sans-serif);
        font-weight: 500;
        font-size: 16px;
        transition: color 0.2s ease;
    }
    
    .menu-desktop a:hover {
        color: var(--color-accent, #eab308);
    }
}

/* Mobile Burger Button */
.burger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1000;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-text, #ffffff);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

/* Burger Animation to X */
.burger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
    opacity: 0;
}
.burger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Slider */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-bg, #121212);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    padding: 60px 30px;
}

.mobile-menu.is-open {
    right: 0; 
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 36px;
    line-height: 1;
    color: var(--color-text, #ffffff);
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-menu__close:hover {
    color: var(--color-accent, #eab308);
}

.menu-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-mobile a {
    text-decoration: none;
    color: var(--color-text, #ffffff);
    font-size: 20px;
    font-family: var(--font-display, sans-serif);
    font-weight: 600;
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.menu-mobile a:hover {
    color: var(--color-accent, #eab308);
    padding-left: 10px; 
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px); 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 998;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    html, body {
        overflow-x: hidden !important; 
        width: 100% !important;
        max-width: 100vw !important;
    }

    main {
        display: block !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    [data-content="hero"], 
    main:not(:has([data-content="toc"])) [data-content="hero"],
    .article-hero,
    .cl-hero {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 1rem !important; 
        padding-right: 1rem !important;
        box-sizing: border-box !important;
    }
    
    .tldr, [data-content], article {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
