/**
 * Theme Name: sportnieuws
 * Version: 1.0
 */

 /* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jetbrains-mono-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jetbrains-mono-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/jetbrains-mono-v24-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/barlow-condensed-v13-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
    /* === 1. CSS Variables & Reset === */
    :root {
      --color-accent: #E85D26;
      --color-accent-subtle: rgba(232, 93, 38, 0.06);
      --color-accent-badge: rgba(232, 93, 38, 0.08);
      --color-bg: #FAFAFA;
      --color-bg-hero: #F5F5F5;
      --color-text: #1A1A1A;
      --color-text-secondary: #6B7280;
      --color-text-caption: #4B5563;
      --color-border: #E0E0E0;
      --color-surface: #F0F0F0;
      --color-surface-alt: #F8F9FA;
      --color-white: #FFFFFF;
      --color-success: #22C55E;
      --color-danger: #EF4444;
      --color-subtle-gray: #A0A0A0;

      --font-display: 'Barlow Condensed', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;

      --content-width: 1200px;
      --component-width: 960px;
      --section-gap: 64px;
      --base-unit: 8px;

      --odds-bg: #1A1A1A;
      --odds-text: #FFFFFF;
      --odds-sub: #A0A0A0;
    }

    @media (prefers-color-scheme: dark) {
      :root {
        --color-bg: #121212;
        --color-bg-hero: #1A1A1A;
        --color-text: #E8E8E8;
        --color-text-secondary: #9CA3AF;
        --color-text-caption: #9CA3AF;
        --color-border: #333333;
        --color-surface: #1E1E1E;
        --color-surface-alt: #1A1A1A;
        --color-white: #FFFFFF;
        --color-subtle-gray: #6B7280;

        --odds-bg: #0A0A0A;
        --odds-text: #E8E8E8;
        --odds-sub: #6B7280;
      }
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      font-size: 100%;
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.7;
      color: var(--color-text);
      background-color: var(--color-bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: var(--color-accent);
      text-decoration: none;
      text-underline-offset: 3px;
      transition: opacity 0.2s ease;
    }

    a:hover {
      opacity: 0.8;
    }

    a:focus-visible {
      outline: 2px solid var(--color-accent);
      outline-offset: 2px;
      border-radius: 2px;
    }

    /* === 2. General Typography === */
    h1 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(32px, 5vw, 48px);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1.1;
      color: var(--color-text);
     text-align: center;
    }

    h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(24px, 3.5vw, 32px);
      text-transform: uppercase;
      letter-spacing: 0.015em;
      line-height: 1.2;
      color: var(--color-text);
      text-align: left;
      scroll-margin-top: 2rem;
    }

    h3 {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: clamp(18px, 2.5vw, 22px);
      line-height: 1.3;
      color: var(--color-text);
      text-align: left;
      scroll-margin-top: 2rem;
    }

    p {
      text-align: left;
      margin-bottom: 24px;
    }

    ul,
    ol {
      text-align: left;
      padding-left: 24px;
      margin-bottom: 24px;
    }

    li {
      text-align: left;
      margin-bottom: 8px;
    }

    strong {
      font-weight: 500;
    }

    blockquote {
      text-align: left;
      border-left: 3px solid var(--color-border);
      padding-left: 20px;
      margin: 24px 0;
      color: var(--color-text-secondary);
      font-style: italic;
    }

    figure {
      margin: 32px auto;
      max-width: 100%;
    }

    figcaption {
      font-size: 14px;
      color: var(--color-text-secondary);
      text-align: center;
      margin-top: 8px;
      line-height: 1.5;
    }

    hr {
      border: none;
      height: 1px;
      background: var(--color-border);
      margin: var(--section-gap) 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 24px;
      font-size: 15px;
    }

    th,
    td {
      text-align: left;
      padding: 12px 16px;
      border-bottom: 1px solid var(--color-border);
    }

    th {
      font-weight: 500;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--color-text-secondary);
    }

    /* === 3. Layout — Sections === */
    header {
      margin: 0;
      padding: 0;
    }

    main {
      width: 100%;
    }

    .container {
      max-width: var(--content-width);
      margin: 0 auto;
      padding: 0 15px;
    
    }

    [data-content] h2 {
      margin-bottom: 24px;
      padding-top: 32px;
      border-top: 1px solid var(--color-border);
    }

    [data-content] h3 {
      margin-bottom: 16px;
    }

    /* First H2 in first text section should not have border-top */
    [data-content="intro"]+[data-content] h2 {
      border-top: 1px solid var(--color-border);
    }

    /* Hero image styles */
    .hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .article-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      loading: lazy;
    }

    /* === 4. Visual Components === */

    /* -- info-box -- */
    .info-box {
      background: var(--color-surface);
      border-left: 4px solid var(--color-accent);
      padding: 24px 28px;
      margin: 32px 0;
      max-width: var(--component-width);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .info-box p {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.7;
      text-align: left;
      color: var(--color-text);
      margin-bottom: 0;
    }

    .info-box p:first-child::before {
      content: 'DEFINITIE';
      display: block;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-accent);
      margin-bottom: 8px;
    }

    @media (prefers-color-scheme: dark) {
      .info-box {
        background: var(--color-surface);
      }

      .info-box p {
        color: var(--color-text);
      }
    }

    /* -- odds-example -- */
    .odds-example {
      background: var(--odds-bg);
      padding: 32px;
      border-radius: 4px;
      margin: 32px 0;
   
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .odds-example p {
      text-align: center;
      margin-bottom: 8px;
      color: var(--odds-text);
      font-family: var(--font-body);
      font-size: 14px;
    }

    .odds-example p:first-child {
      font-family: var(--font-display);
      font-size: 18px;
      text-transform: uppercase;
      color: var(--odds-text);
      letter-spacing: 0.02em;
      margin-bottom: 16px;
    }

    .odds-example p strong {
      font-family: var(--font-mono);
      font-size: 24px;
      font-weight: 700;
      color: var(--color-accent);
    }

    .odds-example p:nth-last-child(-n+2) {
      font-size: 14px;
      color: var(--odds-sub);
    }

    /* odds-example dark mode — keep dark in both themes */
    @media (prefers-color-scheme: dark) {
      .odds-example {
        background: #0A0A0A;
      }

      .odds-example p {
        color: #E8E8E8;
      }

      .odds-example p:first-child {
        color: #E8E8E8;
      }

      .odds-example p strong {
        color: var(--color-accent);
      }

      .odds-example p:nth-last-child(-n+2) {
        color: #6B7280;
      }
    }

    /* -- callout -- */
    .callout {
      background: transparent;
      border: 2px solid var(--color-accent);
      padding: 20px 24px;
      margin: 32px 0;
      max-width: var(--component-width);
      position: relative;
    }

    .callout p {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 1.7;
      text-align: left;
      color: var(--color-text);
      margin-bottom: 0;
    }

    @media (prefers-color-scheme: dark) {
      .callout {
        border-color: var(--color-accent);
      }

      .callout p {
        color: var(--color-text);
      }
    }

    /* -- card-grid -- */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin: 32px 0;
      
    }

    .card-grid>div {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      padding: 20px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
      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.08);
    }

    .card-grid>div p:first-child {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--color-text);
      text-align: left;
    }

    .card-grid>div p:last-child {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 14px;
      color: var(--color-text-caption);
      text-align: left;
      margin-bottom: 0;
    }

    @media (prefers-color-scheme: dark) {
      .card-grid>div {
        background: var(--color-surface);
        border-color: var(--color-border);
      }

      .card-grid>div p:first-child {
        color: var(--color-text);
      }

      .card-grid>div p:last-child {
        color: var(--color-text-secondary);
      }
    }

    /* -- comparison -- */
    .comparison {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid var(--color-border);
      margin: 32px 0;
      max-width: var(--component-width);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .comparison>div {
      padding: 0;
    }

    .comparison>div:first-child {
      border-right: 1px solid var(--color-border);
    }

    .comparison>div p:first-child {
      background: var(--color-bg-hero);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      text-transform: uppercase;
      padding: 16px;
      margin-bottom: 0;
      text-align: left;
      color: var(--color-text);
    }

    .comparison>div p:last-child {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 15px;
      padding: 16px;
      text-align: left;
      color: var(--color-text);
      margin-bottom: 0;
    }

    @media (prefers-color-scheme: dark) {
      .comparison {
        border-color: var(--color-border);
      }

      .comparison>div:first-child {
        border-color: var(--color-border);
      }

      .comparison>div p:first-child {
        background: var(--color-surface);
        color: var(--color-text);
      }

      .comparison>div p:last-child {
        color: var(--color-text);
      }
    }

    /* -- key-takeaway -- */
    .key-takeaway {
      border-top: 2px solid var(--color-accent);
      padding-top: 16px;
      margin: 32px 0;
    }

    .key-takeaway p {
      font-family: var(--font-display);
      font-size: clamp(20px, 2.5vw, 24px);
      font-weight: 600;
      line-height: 1.3;
      text-align: left;
      color: var(--color-text);
      margin-bottom: 0;
    }

    @media (prefers-color-scheme: dark) {
      .key-takeaway p {
        color: var(--color-text);
      }
    }

    /* -- fun-fact -- */
    .fun-fact {
      position: relative;
      padding-left: 20px;
      border-left: 3px dashed var(--color-accent);
      margin: 32px 0;
    }

    .fun-fact p {
      font-family: var(--font-body);
      font-weight: 400;
      font-style: italic;
      font-size: 15px;
      line-height: 1.7;
      text-align: left;
      color: var(--color-text-caption);
      margin-bottom: 0;
    }

    @media (prefers-color-scheme: dark) {
      .fun-fact p {
        color: var(--color-text-secondary);
      }
    }

    /* -- glossary-term -- */
    .glossary-term {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin: 16px 0;
    }

    .glossary-term strong {
      font-family: var(--font-mono);
      color: var(--color-accent);
      text-decoration: underline;
      text-underline-offset: 3px;
      white-space: nowrap;
    }

    .glossary-term span {
      font-family: var(--font-body);
      color: var(--color-text-secondary);
      font-size: 15px;
      text-align: left;
    }

    @media (max-width: 600px) {
      .glossary-term {
        flex-direction: column;
        gap: 4px;
      }
    }

    @media (prefers-color-scheme: dark) {
      .glossary-term strong {
        color: var(--color-accent);
      }

      .glossary-term span {
        color: var(--color-text-secondary);
      }
    }

    /* -- dos-donts -- */
    .dos-donts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin: 32px 0;
      max-width: var(--component-width);
    }

    .dos-donts>div {
      padding: 0;
    }

    .dos-donts>div:first-child {
      border-top: 3px solid var(--color-success);
    }

    .dos-donts>div:last-child {
      border-top: 3px solid var(--color-danger);
    }

    .dos-donts>div:first-child p strong {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 14px;
      text-transform: uppercase;
      color: var(--color-success);
      letter-spacing: 0.04em;
    }

    .dos-donts>div:last-child p strong {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 14px;
      text-transform: uppercase;
      color: var(--color-danger);
      letter-spacing: 0.04em;
    }

    .dos-donts>div p {
      padding-top: 12px;
      text-align: left;
      color: var(--color-text);
      margin-bottom: 8px;
    }

    .dos-donts>div ul {
      list-style: none;
      padding-left: 0;
    }

    .dos-donts>div:first-child ul li {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.6;
      text-align: left;
      color: var(--color-text);
      padding-left: 24px;
      position: relative;
      margin-bottom: 8px;
    }

    .dos-donts>div:first-child ul li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      color: var(--color-success);
      font-weight: 700;
    }

    .dos-donts>div:last-child ul li {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.6;
      text-align: left;
      color: var(--color-text);
      padding-left: 24px;
      position: relative;
      margin-bottom: 8px;
    }

    .dos-donts>div:last-child ul li::before {
      content: '\2717';
      position: absolute;
      left: 0;
      color: var(--color-danger);
      font-weight: 700;
    }

    @media (max-width: 600px) {
      .dos-donts {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-color-scheme: dark) {
      .dos-donts>div:first-child ul li {
        color: var(--color-text);
      }

      .dos-donts>div:last-child ul li {
        color: var(--color-text);
      }

      .dos-donts>div p {
        color: var(--color-text);
      }
    }

    /* -- pre-bet-checklist -- */
    .pre-bet-checklist {
      margin: 32px 0;
    }

    .pre-bet-checklist p:first-child {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--color-accent);
      font-size: 14px;
      margin-bottom: 12px;
      text-align: left;
    }

    .pre-bet-checklist ul {
      list-style: none;
      padding-left: 24px;
      border-left: 2px solid var(--color-border);
    }

    .pre-bet-checklist ul li {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.7;
      text-align: left;
      color: var(--color-text);
      position: relative;
      padding-left: 24px;
      margin-bottom: 12px;
    }

    .pre-bet-checklist ul li::before {
      content: '\2610';
      position: absolute;
      left: -14px;
      color: var(--color-accent);
      font-size: 16px;
      background: var(--color-bg);
      padding: 0 2px;
    }

    @media (prefers-color-scheme: dark) {
      .pre-bet-checklist p:first-child {
        color: var(--color-accent);
      }

      .pre-bet-checklist ul li {
        color: var(--color-text);
      }

      .pre-bet-checklist ul li::before {
        background: var(--color-bg);
      }
    }

    /* -- at-a-glance -- */
    .at-a-glance {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0;
      margin: 32px 0;
      max-width: var(--component-width);
      border: 1px solid var(--color-border);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .at-a-glance>div {
      padding: 20px;
      border-right: 1px solid var(--color-border);
    }

    .at-a-glance>div:last-child {
      border-right: none;
    }

    .at-a-glance>div p:first-child {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      text-align: center;
      color: var(--color-text);
      margin-bottom: 8px;
    }

    .at-a-glance>div p:last-child {
      font-family: var(--font-body);
      font-size: 14px;
      text-align: center;
      color: var(--color-text-secondary);
      margin-bottom: 0;
    }

    @media (max-width: 600px) {
      .at-a-glance {
        grid-template-columns: 1fr;
      }

      .at-a-glance>div {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
      }

      .at-a-glance>div:last-child {
        border-bottom: none;
      }
    }

    @media (prefers-color-scheme: dark) {
      .at-a-glance>div p:first-child {
        color: var(--color-text);
      }

      .at-a-glance>div p:last-child {
        color: var(--color-text-secondary);
      }
    }

    /* -- worked-example -- */
    .worked-example {
      background: var(--color-surface-alt);
      border: 1px solid var(--color-border);
      padding: 28px;
      margin: 32px 0;
     
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .worked-example p:first-child {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      text-align: left;
      color: var(--color-text);
      margin-bottom: 16px;
    }

    .worked-example p:first-child strong {
      font-family: var(--font-display);
    }

    .worked-example p {
      font-family: var(--font-body);
      font-size: 15px;
      text-align: left;
      color: var(--color-text);
      margin-bottom: 8px;
      line-height: 1.6;
    }

    .worked-example p strong {
      font-family: var(--font-mono);
      font-size: 15px;
    }

    /* Arrow separators in worked-example via specific content structure */
    .worked-example p+p[data-step]::before {
      content: '\2192';
      display: block;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 20px;
      color: var(--color-accent);
      margin: 8px 0;
    }

    @media (prefers-color-scheme: dark) {
      .worked-example {
        background: var(--color-surface-alt);
        border-color: var(--color-border);
      }

      .worked-example p {
        color: var(--color-text);
      }

      .worked-example p:first-child {
        color: var(--color-text);
      }
    }

    /* -- section-bridge -- */
    .section-bridge {
      display: block;
      text-align: center;
      padding: 32px 0;
      margin: 24px 0;
    }

    .section-bridge::before {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: var(--color-accent);
      margin: 0 auto 16px auto;
    }

    .section-bridge p {
      font-family: var(--font-body);
      font-weight: 400;
      font-style: italic;
      font-size: 15px;
      text-align: center;
      color: var(--color-text-secondary);
      margin-bottom: 0;
    }

    @media (prefers-color-scheme: dark) {
      .section-bridge p {
        color: var(--color-text-secondary);
      }
    }

    /* === 5. Hero Section === */
    [data-content="hero"] {
      max-width: 100%;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      background: var(--color-bg-hero);
      padding: 64px 24px 48px 24px;
      margin-bottom: var(--section-gap);
      position: relative;
    }

    [data-content="hero"] .hero-inner {
      max-width: 830px;
      margin: 0 auto;
    }

    .hero-label {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--color-accent);
      display: block;
      margin-bottom: 16px;
          text-align: center;
    }

    [data-content="hero"] h1 {
      margin-bottom: 20px;
      
    }

    .hero-subtitle {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: clamp(16px, 2vw, 18px);
      color: var(--color-text-caption);
      line-height: 1.6;
      max-width: 640px;
      margin-bottom: 24px;
     
    }

    [data-content="hero"] hr {
      width: 60px;
      height: 3px;
      background: var(--color-accent);
      border: none;
   margin: 0 auto 20px;
    }

    .hero-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .hero-meta time {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 13px;
      color: var(--color-text-secondary);
    }

    .hero-badge {
      display: inline-block;
      background: var(--color-accent-badge);
      padding: 2px 8px;
      border-radius: 2px;
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--color-accent);
    }

    [data-content="hero"] figure {
      max-width: var(--component-width);
      margin: 0 auto;
    }

    [data-content="hero"] figure img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
    }

    [data-content="hero"] figure figcaption {
      font-size: 13px;
      color: var(--color-text-secondary);
      text-align: center;
      margin-top: 8px;
    }

    /* === 5b. TOC Section — Vertical List === */
    [data-content="toc"] {
      max-width: var(--content-width);
      margin-bottom: var(--section-gap);
      padding: 0 24px;
    }

    .toc-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--color-text-secondary);
      margin-bottom: 20px;
    }

    [data-content="toc"] nav ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    [data-content="toc"] nav>ul>li {
      margin-bottom: 12px;
    }

    [data-content="toc"] nav>ul>li>a {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      color: var(--color-text);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    [data-content="toc"] nav>ul>li>a:hover {
      color: var(--color-accent);
      opacity: 1;
    }

    [data-content="toc"] nav>ul>li>a:focus-visible {
      outline: 2px solid var(--color-accent);
      outline-offset: 2px;
    }

    [data-content="toc"] nav ul ul {
      list-style: none;
      padding-left: 20px;
      margin-top: 6px;
      margin-bottom: 0;
    }

    [data-content="toc"] nav ul ul li {
      margin-bottom: 6px;
    }

    [data-content="toc"] nav ul ul li a {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 14px;
      color: #adadad;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    [data-content="toc"] nav ul ul li a:hover {
      color: var(--color-accent);
      opacity: 1;
    }

    /* === 6. FAQ Accordion === */
    [data-content="faq"] details {
      border-bottom: 1px solid var(--color-border);
      interpolate-size: allow-keywords;
    }

    [data-content="faq"] summary {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 17px;
      color: var(--color-text);
      padding: 20px 0;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.2s ease;
    }

    [data-content="faq"] summary:hover {
      color: var(--color-accent);
    }

    [data-content="faq"] summary:focus-visible {
      outline: 2px solid var(--color-accent);
      outline-offset: 2px;
    }

    [data-content="faq"] summary::-webkit-details-marker {
      display: none;
    }

    [data-content="faq"] summary::after {
      content: '+';
      font-family: var(--font-body);
      font-size: 20px;
      font-weight: 400;
      color: var(--color-text-secondary);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    [data-content="faq"] details[open] summary::after {
      content: '\2212';
      transform: rotate(180deg);
    }

    /* Modern animated details — primary method */
    [data-content="faq"] details ::details-content {
      transition: opacity 0.3s ease, block-size 0.3s ease, content-visibility 0.3s ease allow-discrete;
      opacity: 0;
      block-size: 0;
      overflow: clip;
    }

    [data-content="faq"] details[open] ::details-content {
      opacity: 1;
      block-size: auto;
    }

    /* Fallback for browsers without ::details-content */
    @supports not selector(::details-content) {
      @keyframes faq-fade-in {
        from {
          opacity: 0;
        }

        to {
          opacity: 1;
        }
      }

      [data-content="faq"] details[open]>*:not(summary) {
        animation: faq-fade-in 0.3s ease forwards;
      }
    }

    [data-content="faq"] details div {
      padding: 0 0 20px 0;
    }

    [data-content="faq"] details div p {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      color: var(--color-text);
      text-align: left;
      margin-bottom: 0;
    }

.header-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 9999;
    animation: slideDown 0.4s ease-out forwards;
    border-radius: 0;
    background: var(--color-accent);
}

    /* === 8. Media Queries === */
    @media (max-width: 768px) {
      :root {
        --section-gap: 48px;
      }

      [data-content="hero"] {
        padding: 40px 16px 32px 16px;
      }

      [data-content] {
        padding: 0 16px;
      }

      .comparison {
        grid-template-columns: 1fr;
      }

      .comparison>div:first-child {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
      }

      .card-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      :root {
        --section-gap: 40px;
      }

      [data-content="hero"] {
        padding: 32px 12px 24px 12px;
      }

      [data-content] {
        padding: 0 12px;
      }

      .odds-example {
        padding: 24px 16px;
      }
    }


/*  */

img {
  width: 100%;
  object-fit: cover;
  max-height: 700px;
}
.content {
  margin-top: 3rem;
}

.wp-block-image img {
  margin-bottom: 2rem;
}

.footer-menu {
  column-gap: 3rem;
  list-style: none;
  font-size: 1.1rem;
  gap: 1.5rem;
}

/* menu */

.burger-logo {
  margin: 0;
  padding: 0;
}

/* Контейнер */
.logo-wrapper {
  flex-wrap: nowrap ;
  display: flex ;
  align-items: center ;

  text-decoration: none;
}

.main-logo-img {
  max-height: 45px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {

  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  
}

.logo-wrapper {
  display: flex ;
  align-items: center ;
  flex-wrap: nowrap ;
  column-gap: 0.5rem ;
}

.main-menu {
  gap: 1.2rem;
  display: flex;
}

.menu-item__inner {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu-toggle.active .icon-chevron {
  transform: rotate(180deg);
}

.menu-item-has-children > .sub-menu {
  display: none;
}

.menu-item-has-children > .sub-menu.active {
  display: block;
}

.sub-menu {
  display: none;
  min-width: 220px;
  width: 100%;
}

.has-overlay {
  overflow: hidden;
}

.main-navigation.active {
padding: 20px;
  color: inherit;
  background-color: var(--color-accent);
  left: 0;
  top: 3.5rem;
  height: 100vh;
  z-index: 9;
}

.main-navigation ul {
  margin: 0;
  padding: 0;
}

.menu-link {
  color: inherit;
  font-size: 0.9rem;
}

.menu-item-has-children:last-child .sub-menu,
.menu-item-has-children:nth-last-child(2) .sub-menu {
  right: 0;
  left: auto;
  padding: 0.9rem;
}

.sub-menu--level-2 {
  right: 100% !important;
  top: 0 !important;
  left: auto !important;
}
.sub-menu .sub-menu--level-2 li {
  margin-bottom: 0.9rem;
}

.main-menu li {
  position: relative;
  cursor: pointer;
  list-style-type: none;
  margin: 0;
}
.main-menu li.active {
  color: var(--color-success);

  font-weight: 600;
  border-bottom: 1px solid var(--color-success);
  width: fit-content;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 48%;
  transform: translateY(-50%);
}

.burger-line:nth-child(3) {
  bottom: 2px;
}

.js-burger {
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: absolute;
  z-index: 1003;
  background: none;
  border: none;
  padding: 0.5rem;
  right: 2rem;
  top: 1rem;
}

.js-burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
}

.js-burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.js-burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

.main-navigation::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: 5rem;
}

.main-navigation::after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: 5rem;
}
.main-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 1.4rem;
  row-gap: 1rem;
  margin: 0;
  padding: 0;
}
.burger-logo {
  white-space: nowrap;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

.burger-logo a {
  font-size: clamp(0.5rem, 1.1rem + 1.1vw, 1.5rem) !important;

  z-index: 2;
  color: var(--color-primary);
  text-decoration: none;
}
.burger-logo a:hover {
  color: #fff !important;
}

/* end menu */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    transform var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--c-primary);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius);
  z-index: 200;
}

.skip-link:focus {
  top: var(--space-md);
}

.sitemap-content {
  margin: 30px 0;
}

.sitemap-section {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 8px;
}

.sitemap-section h2 {
  color: inherit;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sitemap-section h3 {
  color: #555;
  margin: 15px 0 10px 0;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 2.5rem;
  gap: 0.8rem;
}
.breadcrumbs-content {
  display: contents;
}
@media (max-width: 1024px) {
  .sitemap-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .sitemap-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.sitemap-list li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.sitemap-list li:before {
  content: "›";
  position: absolute;
  left: 0;
  color: #007cba;
}

.sitemap-list a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.sitemap-list a:hover {
  color: #007cba;
}

.category-group {
  margin-bottom: 20px;
}

.tags-cloud {
  line-height: 2;
}

.tag {
  display: inline-block;
  background: #e9e9e9;
  padding: 5px 10px;
  margin: 3px;
  border-radius: 3px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.3s;
}

.tag:hover {
  background: #007cba;
  color: white;
}

.toc {
  background: rgba(230, 57, 70, 0.1) !important;
  padding: var(--spacing-md) !important;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-sm);
  border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .sitemap-section {
    padding: 15px;
  }

  .tag {
    font-size: 12px;
    padding: 3px 8px;
  }

  .main {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.main-navigation {
  transition: transform 0.3s ease;
}

/* Responsive */
@media (min-width: 1100px) {
  .container-casa {
    padding: 2rem 0;
    text-align: center;
  
    margin: auto;
  }
  .menu-toggle {
    padding: 3px;
  }

  .main-navigation {
    overflow: visible;
    justify-content: end;
    display: flex;
  }

  .header-nav {
    background: linear-gradient(
      135deg,
      var(--color-primary-dark) 0%,
      var(--color-primary) 100%
    );
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    margin: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 2rem;
justify-content: space-between;
    transition: all 0.4s ease;
  }

  .header-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 9999;

    animation: slideDown 0.4s ease-out forwards;
    border-radius: 0;

    background: var(--color-accent);
  }

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .header-nav a {
    display: flex;
    text-transform: capitalize;

    text-decoration: none;
    transition: color var(--transition);
    font-size: 1.1rem;
    flex-wrap: wrap;

    align-items: center;
    column-gap: 1.4rem;
    row-gap: 1rem;
    margin: 0;
    padding: 0 3px;

    z-index: 1000;

    margin-bottom: 0;
  }

  .sub-menu {
    display: none;
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 8;
    background: var(--c-surface);
  }

  .sub-menu a {
    color: #fff;
  }
  .header > .container {
    flex-wrap: nowrap;
  }

  .main-navigation::after {
    display: none;
  }

  .menu-item-has-children:hover > .sub-menu {
    display: block;
  }

  .icon-chevron {
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
  }

  .js-burger {
    display: none;
  }

  .wp-block-image {
    margin: 2rem 0;
  }
}

@media (max-width: 1100px) {
  .site-titlecontainer-casa {
    margin-top: 7rem;
  }
.breadcrumbs {

  margin: 0 0 2.5rem;
  gap: 0.5rem;
}
  .main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary-dark);
    z-index: 1000;
    overflow-y: auto;
  }

  .main-navigation.active {
    left: 0;
  }
  .wide-image-container {
    margin-left: calc(-2 * var(--space-xl));
    margin-right: calc(-2 * var(--space-xl));
    border-radius: var(--img-radius);
  }

  .header-inner {
    margin-top: 5rem;
  }
  .burger-logo {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    top: 0.5rem;
    z-index: 2;
    position: absolute;
  }
  .burger-logo a {
    color: #ffffff !important;
  }
  .container-casa {
    padding: 3rem 1rem 1.5rem;
  }

  .main-navigation ul {
    display: block;
  }

  .site-branding nav {
    border-radius: var(--radius);
height: 59px;
    margin-bottom: calc(var(--gap) * 1.5);
    box-shadow: none;
    border: none;
  }

  .header-nav {
    display: flex;
    padding: 0 30px;
  }
  .main-menu li {
    text-align: left;
    margin-top: 21px;
  }
  .sub-menu li {
    margin-top: 0 !important;
    padding: 0.2rem 1rem;
  }
  .main-menu li.active {
    border-bottom: none;
  }
  .header-nav a {
    font-size: 1.2rem;
  }

  .menu-item-has-children > .sub-menu.active {
    margin-left: 0.8rem;
  }
}

header p {
  font-size: var(--font-md);
  max-width: 800px;
  text-align: center;
  margin: auto;
}
.toc-wrap {
  padding: 1rem;
}

.back-to-top {
  bottom: 1rem;
  right: 1rem;
  width: 45px;
  height: 45px;
}

/* articulos */
.articulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
  padding-top: 30px;

  max-width: var(--max-width);
  margin: 0 auto;
}

.articulos-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 0;
}

.articulos-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.articulos-card__image-link img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.articulos-card:hover .articulos-card__image-link img {
  transform: scale(1.08);
}

.articulos-card__content {
  padding: 0 17px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.articulos-card__title {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.6rem;
}
.articulos-card__title a {
  text-decoration: none;
}

.articulos-card__excerpt {
  margin-top: auto;

  margin-bottom: 0;
  color: #6e6e73;
  font-size: 0.95rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.articulos-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.articulos-card__link svg {
  transition: transform 0.3s;
}

.articulos-card__link:hover {
  color: #0073aa;
  gap: 12px;
}

.articulos-card__image-link {
  display: block;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  height: 170px;
}

.articulos-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.articulos-card:hover .articulos-card__image-link img {
  transform: scale(1.08);
}

.articulos-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.load-more-wrapper {
  text-align: center;
  margin: 40px 0;
}

.btn-load-more {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.btn-load-more:hover {
  background-color: #005177;
}

@media (max-width: 559px) {
  .articulos-grid {
    gap: 17px;
  }
  .articulos-card__image-link {
    height: 17rem;
  }
}

@media (max-width: 768px) {
  .sitemap-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 5px;
    list-style: none;
    padding: 0;
  }
}

#site-navigation a,
.menu-item a {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

/* Images Styles for Voetbal Betting Article */

.hero-image {
  width: 100%;
  margin: 0 0 2rem;
  padding: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.article-image {
  margin: 2rem 0;
  text-align: center;
}

.article-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(26, 95, 60, 0.1);
}

@media (max-width: 768px) {
  .hero-image {
    margin: 0 0 1.5rem;
    max-height: 300px;
  }

  .hero-image img {
    border-radius: 8px;
  }

  .article-image {
    margin: 1.5rem 0;
  }

  .article-image img {
    border-radius: 6px;
  }
}

@media (prefers-color-scheme: dark) {
  .article-image img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}


/* === Images Styles — Hockey Wedden Nederland === */

/* Hero image */
.hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

/* Article images within sections */
.article-image {
  margin: 32px auto;
  max-width: 100%;
}

.article-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.article-image img:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.article-image figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6B7280;
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
  font-style: normal;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .article-image img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .article-image img:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }

  .article-image figcaption {
    color: #9CA3AF;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .article-image {
    margin: 24px auto;
  }

  .article-image img {
    border-radius: 2px;
  }
}

[data-content="toc"] {
    background: var(--color-bg-hero);
    padding: 30px 10px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin: 20px 0;
}


.toc-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;

    border-bottom: 2px solid #e10600; 
    display: inline-block;
    padding-bottom: 5px;
}


[data-content="toc"] nav > ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

[data-content="toc"] nav > ul > li {
    background: #5e5a5a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

[data-content="toc"] nav > ul > li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

[data-content="toc"] nav > ul > li > a {
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.3;
}


[data-content="toc"] nav ul ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

[data-content="toc"] nav ul ul li {
    margin-bottom: 8px;
}


[data-content="toc"] nav ul ul a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

[data-content="toc"] nav ul ul a:hover {
    color: #000;
    padding-left: 5px;
}


[data-content="toc"] nav ul ul a::before {
    content: "→";
    margin-right: 8px;
    color: #ccc;
}


@media (max-width: 600px) {
    [data-content="toc"] nav > ul {
        grid-template-columns: 1fr; 
    }
}

h2[id], 
h3[id], 
[data-content] {
    scroll-margin-top: 100px;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'Source Serif 4', serif; 
    margin-top: 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    margin:0 0 20px;
    color: var(--color-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 13px;
    color: #888;
    text-align: center;
}

.safety-icons {
    display: flex;
    gap: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo-container img {
   
    height: auto;
    display: block;
    margin-bottom: 20px;
    max-width: 50px;
    border-radius: 50%;
    
}

.footer-logo-text {

    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    color: #0073aa; 
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Контейнер для скролла */
.table-container {
    width: 100%;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}