/**
 * Theme Name: sportnieuws
 * Version: 1.0
 */
/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - 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: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins-v24-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/poppins-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lora-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: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/lora-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lora-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: 'Lora';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/lora-v37-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lora-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: 'Lora';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/lora-v37-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
    /* ========================================================================
   1) CSS VARIABLES & RESET
   ======================================================================== */
    :root {
      /* Palette (light theme, from design-spec.md) */
      --bg-page: #fafbfb;
      --bg-header: #ffffff;
      --bg-footer: #0f1820;
      --bg-card: #f3f6f8;
      --text-primary: #1a232b;
      --text-secondary: #5a6873;
      --text-footer: #cfd5da;
      --accent: #097082;
      --accent-light: #0c8496;
      --border: #e3e8ec;
      --success: #1d7e5a;
      --warning: #b8590c;

      /* Typography stacks */
      --font-heading: 'Poppins', system-ui, sans-serif;
      --font-body: 'Lora', Georgia, serif;
      --font-mono: 'JetBrains Mono', 'Courier New', monospace;

      /* Layout */
      --content-width: 1200px;
      --section-gap: clamp(3rem, 6vw, 5rem);
      --component-gap: 2rem;

      /* Radii & shadows */
      --radius-sm: 4px;
      --radius-md: 8px;
      --shadow-sm: 0 1px 2px rgba(15, 24, 32, 0.04);
      --shadow-md: 0 4px 12px rgba(15, 24, 32, 0.06);

      /* Transitions */
      --t-fast: 0.18s ease;
      --t-base: 0.3s ease;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);
      line-height: 1.7;
      color: var(--text-primary);
      background: var(--bg-page);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    /* ========================================================================
   2) TYPOGRAPHY (global, low specificity — beaten by component classes)
   ======================================================================== */
    h1,
    h2,
    h3 {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.2;
      letter-spacing: -0.01em;
      text-align: left;
      margin: 0 0 0.6em;
    }

    h1 {
      font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    h2 {
      font-size: clamp(1.55rem, 2.4vw + 0.6rem, 2.25rem);
      scroll-margin-top: 2rem;
    }

    h3 {
      font-size: clamp(1.2rem, 1vw + 0.9rem, 1.5rem);
      scroll-margin-top: 2rem;
    }

    p {
      margin: 0 0 1.1em;
      text-align: left;
      line-height: 1.75;
    }

    p:last-child {
      margin-bottom: 0;
    }

    ul,
    ol {
      margin: 0 0 1.4em;
      padding-left: 1.5em;
      text-align: left;
      line-height: 1.75;
    }

  

    li:last-child {
      margin-bottom: 0;
    }

    strong {
      font-weight: 700;
      color: var(--text-primary);
    }

    em {
      font-style: italic;
    }

    a {
      color: var(--accent);
      text-decoration: none;
      text-decoration-color: rgba(9, 112, 130, 0.35);
      text-underline-offset: 3px;
      transition: color var(--t-fast), text-decoration-color var(--t-fast);
    }

    a:hover {
      color: var(--accent-light);
      text-decoration-color: var(--accent-light);
    }

    a:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 2px;
    }

    blockquote {
      margin: 1.6em 0;
      padding: 0.4em 1.4em;
      border-left: 3px solid var(--accent);
      font-style: italic;
      color: var(--text-secondary);
      text-align: left;
    }

    code,
    kbd,
    samp {
      font-family: var(--font-mono);
      font-size: 0.92em;
      background: var(--bg-card);
      padding: 0.1em 0.35em;
      border-radius: 3px;
    }

    /* Figures (global, auto centering) */
    figure {
      margin: 1.8em auto;
      max-width: 100%;
      text-align: center;
    }

    figure img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 0 auto;
    }

    figcaption {
      font-family: var(--font-heading);
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 0.7em;
      text-align: center;
    }

    img.article-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 1.5em auto;
      border-radius: var(--radius-sm);
    }

    hr {
      border: 0;
      border-top: 1px solid var(--border);
      margin: 2em 0;
    }

    /* Caption micro-style */
    .eyebrow {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
    }

    /* ========================================================================
   3) LAYOUT — main, article, sections
   ======================================================================== */
    main {
      width: 100%;
      display: block;
    }

    article {
      display: block;
    }

    .container{
      max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 15px;
    }


    /* ========================================================================
   4) HEADER
   ======================================================================== */
    

    .site-header-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .site-logo img {
      display: block;
      width: 200px;
      height: 69px;
      max-width: 100%;
    }

    .header-meta {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      font-family: var(--font-heading);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
    }

    .header-date-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45em;
      padding: 0.45em 0.9em;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--text-primary);
    }

    .header-date-badge::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--success);
      display: inline-block;
    }

    .header-trust {
      text-transform: uppercase;
      font-weight: 600;
      color: var(--text-secondary);
    }

    /* ========================================================================
   5) COMPONENT STYLES
   (placed after global typography so component selectors win specificity ties)
   ======================================================================== */

    /* --- info-box ------------------------------------------------------------ */
    .info-box {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.6rem;
      margin: var(--component-gap) 0;
      box-shadow: var(--shadow-sm);
      position: relative;
    }

    .info-box p {
      color: var(--text-primary);
      text-align: left;
      margin-bottom: 0.8em;
    }

    .info-box p:last-child {
      margin-bottom: 0;
    }

    .info-box p:first-child strong:first-child {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.3em;
    }

    /* --- callout ------------------------------------------------------------- */
    .callout {
      border-left: 4px solid var(--accent);
      background: rgba(9, 112, 130, 0.04);
      padding: 1.1rem 1.4rem;
      margin: var(--component-gap) 0;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }

    .callout p {
      color: var(--text-primary);
      text-align: left;
      margin-bottom: 0.6em;
      font-size: 0.98em;
    }

    .callout p:last-child {
      margin-bottom: 0;
    }

    /* --- key-takeaway -------------------------------------------------------- */
    .key-takeaway {
      border-top: 2px solid var(--accent);
      padding: 1.2rem 0 0;
      margin: var(--component-gap) 0;
    }

    .key-takeaway p {
      font-family: var(--font-body);
      font-size: clamp(1.2rem, 0.6vw + 1.05rem, 1.4rem);
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.45;
      text-align: left;
    }

    /* --- fun-fact ------------------------------------------------------------ */
    .fun-fact {
      background: rgba(9, 112, 130, 0.06);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.6rem;
      margin: var(--component-gap) 0;
      position: relative;
    }

    .fun-fact p {
      color: var(--text-primary);
      text-align: left;
    }

    .fun-fact p:first-child {
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
      color: var(--accent);
      line-height: 1;
      margin-bottom: 0.4em;
    }

    .fun-fact p:first-child strong {
      font-weight: 700;
      color: var(--accent);
    }

    .fun-fact p:not(:first-child) {
      font-style: italic;
      color: var(--text-secondary);
      font-size: 0.96em;
    }

    /* --- glossary-term ------------------------------------------------------- */
    .glossary-term {
      display: flex;
      align-items: baseline;
      gap: 12px;
      padding: 0.65rem 0;
      border-bottom: 1px dashed var(--border);
      margin: 0;
    }

    .glossary-term:last-child {
      border-bottom: none;
    }

    .glossary-term p {
      margin: 0;
      text-align: left;
    }

    .glossary-term p:first-child {
      flex: 0 0 auto;
      min-width: 9rem;
    }

    .glossary-term p:first-child strong {
      font-family: var(--font-mono);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--accent);
      text-decoration: underline dotted;
      text-underline-offset: 3px;
      text-decoration-color: rgba(9, 112, 130, 0.5);
    }

    .glossary-term p:last-child {
      flex: 1 1 auto;
      color: var(--text-secondary);
      font-size: 0.96em;
    }

    /* --- dos-donts ----------------------------------------------------------- */
    .dos-donts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: var(--component-gap) 0;
    }

    .dos-donts>div {
      padding: 1.3rem 1.4rem;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      background: var(--bg-header);
      box-shadow: var(--shadow-sm);
    }

    .dos-donts>div:first-child {
      border-top: 3px solid var(--success);
    }

    .dos-donts>div:last-child {
      border-top: 3px solid var(--warning);
    }

    .dos-donts h3,
    .dos-donts>div>p:first-child strong {
      font-family: var(--font-heading);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin: 0 0 0.8em;
      text-align: left;
    }

    .dos-donts>div:first-child h3,
    .dos-donts>div:first-child>p:first-child strong {
      color: var(--success);
    }

    .dos-donts>div:last-child h3,
    .dos-donts>div:last-child>p:first-child strong {
      color: var(--warning);
    }

    .dos-donts ul {
      padding-left: 1.2em;
      margin: 0;
    }

    .dos-donts li {
      font-size: 0.95em;
      text-align: left;
    }

    /* --- pre-bet-checklist --------------------------------------------------- */
    .pre-bet-checklist {
      margin: var(--component-gap) 0;
      padding: 0.5rem 0 0.5rem 0;
      position: relative;
    }

    .pre-bet-checklist h3,
    .pre-bet-checklist>p:first-child strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      margin: 0 0 1em;
      text-align: left;
    }

    .pre-bet-checklist ul {
      list-style: none;
      padding: 0 0 0 2.2rem;
      margin: 0;
      border-left: 2px solid var(--border);
    }

    .pre-bet-checklist li {
      position: relative;
      padding: 0.4em 0;
      text-align: left;
      font-size: 0.97em;
    }

    .pre-bet-checklist li::before {
      content: "☐";
      position: absolute;
      left: -2.4rem;
      top: 0.35em;
      width: 1.4rem;
      height: 1.4rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-page);
      color: var(--accent);
      font-size: 1.1rem;
      line-height: 1;
    }

    /* --- at-a-glance --------------------------------------------------------- */
    .at-a-glance {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      background: var(--bg-header);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      margin: var(--component-gap) 0;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .at-a-glance>div {
      padding: 1.2rem 1.3rem;
      border-right: 1px solid var(--border);
    }

    .at-a-glance>div:last-child {
      border-right: none;
    }

    .at-a-glance p {
      text-align: center;
      margin-bottom: 0.4em;
    }

    .at-a-glance p:first-child {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1.1;
    }

    .at-a-glance p:not(:first-child) {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    /* --- comparison ---------------------------------------------------------- */
    .comparison {
      margin: var(--component-gap) 0;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      box-shadow: var(--shadow-sm);
      background: var(--bg-header);
    }

    .comparison table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95em;
      min-width: 560px;
    }

    .comparison th,
    .comparison td {
      padding: 0.85em 1em;
      text-align: left;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }

    .comparison thead th {
      position: sticky;
      top: 0;
      background: var(--bg-card);
      font-family: var(--font-heading);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-primary);
    }

    .comparison tbody tr:nth-child(even) {
      background: rgba(243, 246, 248, 0.5);
    }

    .comparison tbody tr:last-child td {
      border-bottom: none;
    }

    .comparison td:not(:first-child),
    .comparison th:not(:first-child) {
      font-family: var(--font-mono);
      font-size: 0.9em;
    }

    .comparison td:first-child {
      font-weight: 600;
    }

    /* --- odds-example -------------------------------------------------------- */
    .odds-example {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.6rem 1.7rem;
      margin: var(--component-gap) 0;
      box-shadow: var(--shadow-sm);
      position: relative;
    }

    .odds-example>p:first-child strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent);
      margin-bottom: 0.6em;
      text-align: center;
    }

    .odds-example p {
      text-align: center;
      font-family: var(--font-mono);
      font-size: 0.95rem;
      color: var(--text-primary);
      margin-bottom: 0.7em;
    }

    .odds-example p:last-child {
      margin-top: 1em;
      margin-bottom: 0;
      padding-top: 0.9em;
      border-top: 1px solid var(--border);
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--accent);
    }

    /* --- card-grid ----------------------------------------------------------- */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
      margin: var(--component-gap) 0;
    }

    .card-grid>* {
      background: var(--bg-header);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.2rem 1.3rem;
      box-shadow: var(--shadow-sm);
      transition: transform var(--t-base), box-shadow var(--t-base);
    }

    .card-grid>*:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .card-grid p {
      text-align: left;
    }

    /* --- worked-example ------------------------------------------------------ */
    .worked-example {
      background: var(--bg-card);
      border-left: 3px solid var(--accent);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 1.7rem 1.8rem;
      margin: var(--component-gap) 0;
      font-family: var(--font-mono);
      box-shadow: var(--shadow-sm);
    }

    .worked-example p {
      font-family: var(--font-mono);
      font-size: 0.95rem;
      text-align: left;
      margin-bottom: 0.9em;
      position: relative;
    }

    .worked-example p:not(:last-child)::after {
      content: "↓";
      display: block;
      margin-top: 0.4em;
      color: var(--accent);
      font-family: var(--font-heading);
    }

    .worked-example p:last-child {
      margin-top: 1em;
      padding-top: 0.9em;
      border-top: 2px solid var(--accent);
      font-weight: 700;
      color: var(--accent);
      font-size: 1rem;
    }

    /* --- section-bridge ------------------------------------------------------ */
    .section-bridge {
      text-align: center;
      font-style: italic;
      color: var(--accent);
      font-size: 1.05em;
      margin: 1.6rem 0;
      position: relative;
    }

    .section-bridge::before,
    .section-bridge::after {
      content: "•";
      display: inline-block;
      margin: 0 0.7em;
      color: var(--text-secondary);
      font-style: normal;
    }

    /* --- TLDR (data-content + component) ------------------------------------- */
    .tldr {
      background: var(--bg-card);
      border-left: 3px solid var(--accent);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 1.6rem 1.7rem;
      /* IMPORTANT: don't use shorthand `margin` here — it'd kill margin-left/right: auto from [data-content] */
    }

    .tldr h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.05rem, 0.4vw + 0.95rem, 1.2rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--accent);
      margin: 0 0 1em;
      text-align: left;
    }

    .tldr ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .tldr li {
      position: relative;
      padding: 0.55em 0 0.55em 1.6em;
      border-bottom: 1px solid var(--border);
      text-align: left;
      font-size: 0.98em;
      line-height: 1.6;
    }

    .tldr li:last-child {
      border-bottom: none;
    }

    .tldr li::before {
      content: "→";
      position: absolute;
      left: 0;
      top: 0.55em;
      color: var(--accent);
      font-family: var(--font-heading);
      font-weight: 700;
    }

    /* --- author-bio ---------------------------------------------------------- */
    .author-bio {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-style: italic;
      color: var(--text-secondary);
      border-top: 1px solid var(--border);
      padding-top: 1rem;
      margin-top: 0;
    }

    /* ========================================================================
   6) HERO SECTION (full-bleed, stays AFTER component styles to win specificity)
   ======================================================================== */
    /* .hero {
      position: relative;
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      margin-top: 0;
      margin-bottom: 0;
      padding: clamp(3rem, 6vw, 5.5rem) 1.25rem clamp(3rem, 5vw, 4.5rem);
      background: var(--bg-page);
      overflow: hidden;
      text-align: center;
    } */

    /* Dot-grid pattern overlay (1px dots every 24px), accent color, opacity 0.04 */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(9, 112, 130, 0.4) 1px, transparent 1px);
      background-size: 24px 24px;
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
 
      -webkit-mask-image: radial-gradient(ellipse at center, transparent 0%, transparent 25%, black 70%);
      mask-image: radial-gradient(ellipse at center, transparent 0%, transparent 25%, black 70%);
    }

    /* Smooth bottom fade into page background — no hard edge */
    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3.5rem;
      background: linear-gradient(to bottom, transparent, var(--bg-page));
      pointer-events: none;
      z-index: 0;
    }

    .hero>* {
      position: relative;
      z-index: 1;
    }

    .hero-inner {
      max-width: var(--content-width);
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
    
      font-family: var(--font-heading);
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent);
      margin: 6.5rem auto 1.6rem;
      padding: 0.4em 0.9em;
      border: 1px solid rgba(9, 112, 130, 0.3);
      border-radius: 999px;
      background: rgba(9, 112, 130, 0.04);
      text-align: center;
         display: flex;
    justify-content: center;
    width: fit-content;
    }

    h1 {
      text-align: center;
      margin: 0 auto 1.1rem;
      max-width: 1100px;
      position: relative;
      z-index: 1;
    }

    .hero-subtitle {
      font-family: var(--font-body);
      font-style: italic;
      font-size: clamp(1.05rem, 0.7vw + 0.95rem, 1.35rem);
      color: var(--text-secondary);
      max-width: 52ch;
      margin: 0 auto 2rem;
      text-align: center;
      line-height: 1.5;
      position: relative;
      z-index: 1;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.5rem 1rem;
      font-family: var(--font-heading);
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-secondary);
      margin: 0 auto 2.4rem;
      text-align: center;
    }

    .hero-meta>span {
      display: inline-flex;
      align-items: center;
    }

    .hero-meta>span+span::before {
      content: "•";
      margin-right: 1rem;
      color: var(--border);
    }

    .hero figure {
      margin: 0 auto;
      max-width: var(--content-width);
      position: relative;
      z-index: 1;
    }

    .hero figure img,
    img.hero-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-md);
      box-shadow: 0 8px 28px rgba(15, 24, 32, 0.12);
    }

    .hero-cta {
      display: inline-block;
      margin-top: 0.5rem;
      padding: 0.85em 1.6em;
      background: var(--accent);
      color: #fff;
      font-family: var(--font-heading);
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-decoration: none;
      border-radius: 999px;
      transition: background var(--t-fast), transform var(--t-fast);
      box-shadow: var(--shadow-sm);
    }

    .hero-cta:hover {
      background: var(--accent-light);
      transform: translateY(-1px);
      color: #fff;
    }

    /* ========================================================================
   7) TOC (accordion variant — chosen by randomizer)
   ======================================================================== */
    .toc {
      background: var(--bg-header);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      margin-top: 2rem;
      margin-bottom: 2rem;
      overflow: hidden;
    }

    .toc summary {
      list-style: none;
      cursor: pointer;
      padding: 1.1rem 1.4rem;
      font-family: var(--font-heading);
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }

    .toc summary::-webkit-details-marker {
      display: none;
    }

    .toc summary::after {
      content: "+";
      font-family: var(--font-heading);
      font-size: 1.4rem;
      line-height: 1;
      color: var(--accent);
      transition: transform var(--t-base);
      margin-left: 1rem;
    }

    .toc[open] summary::after {
      content: "−";
    }

    .toc>div {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .toc[open]>div {
      max-height: 1200px;
      opacity: 1;
    }

    .toc ol {
      list-style: none;
      padding: 0.4rem 1.4rem 1.4rem;
      margin: 0;
      counter-reset: toc;
    }

    .toc li {
      counter-increment: toc;
      border-bottom: 1px dashed var(--border);
      margin: 0;
      padding: 0;
    }

    .toc li:last-child {
      border-bottom: none;
    }

    .toc a {
      display: flex;
      align-items: baseline;
      gap: 0.8rem;
      padding: 0.7em 0;
      text-decoration: none;
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 0.98rem;
      line-height: 1.4;
      transition: color var(--t-fast);
    }

    .toc a::before {
      content: counter(toc, decimal-leading-zero);
      flex: 0 0 auto;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.04em;
    }

    .toc a:hover {
      color: var(--accent);
    }

    /* ========================================================================
   8) FAQ — apply both to .faq-list (template) and to [data-content="faq"] (post-merge)
   ======================================================================== */
    .faq-list,
    [data-content="faq"]>div {
      display: block;
    }

    .faq-list details,
    [data-content="faq"] details {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--bg-header);
      margin-bottom: 0.8rem;
      box-shadow: var(--shadow-sm);
      transition: border-color var(--t-fast);
    }

    .faq-list details[open],
    [data-content="faq"] details[open] {
      border-color: rgba(9, 112, 130, 0.4);
    }

    .faq-list summary,
    [data-content="faq"] details>summary {
      list-style: none;
      cursor: pointer;
      padding: 1.1rem 1.4rem;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      user-select: none;
      line-height: 1.4;
      text-align: left;
    }

    .faq-list summary::-webkit-details-marker,
    [data-content="faq"] details>summary::-webkit-details-marker {
      display: none;
    }

    .faq-list summary::after,
    [data-content="faq"] details>summary::after {
      content: "+";
      flex: 0 0 auto;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--accent);
      line-height: 1;
      transition: transform var(--t-base);
    }

    .faq-list details[open] summary::after,
    [data-content="faq"] details[open]>summary::after {
      transform: rotate(45deg);
    }

    /* Animation via max-height (reliable across browsers) */
    .faq-list details>div,
    [data-content="faq"] details>div {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.35s ease, opacity 0.3s ease;
    }

    .faq-list details[open]>div,
    [data-content="faq"] details[open]>div {
      max-height: 800px;
      opacity: 1;
    }

    .faq-list details>div>p,
    [data-content="faq"] details>div>p {
      padding: 0 1.4rem 1.2rem;
      margin: 0;
      font-size: 0.98rem;
      text-align: left;
      color: var(--text-primary);
    }

    /* ========================================================================
   9) FOOTER
   ======================================================================== */
    .site-footer {
      background: var(--bg-footer);
      color: var(--text-footer);
      font-size: 0.82rem;
      margin-top: var(--section-gap);
      padding: 3rem 1.25rem 1.5rem;
    }

    .footer-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2.2rem;
    }

    .site-footer div {
      font-family: var(--font-heading);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #fff;
      margin: 0 auto 1rem;
      text-align: left;
    }

    .site-footer p,
    .site-footer ul {
      font-size: 11px;
      line-height: 1.65;
      color: var(--text-footer);
      text-align: left;
    }

    .site-footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .site-footer li {
      margin-bottom: 0.5em;
    }

    .site-footer a {
      color: var(--text-footer);
      text-decoration: none;
      text-decoration-color: rgba(207, 213, 218, 0.3);
    }

    .site-footer a:hover {
      color: #fff;
      text-decoration: underline;
      text-decoration-color: #fff;
    }

    .footer-help-line {
      display: inline-block;
      margin-top: 0.4em;
      font-family: var(--font-mono);
      font-weight: 700;
      color: #fff;
    }

    .footer-bottom {
      max-width: 1140px;
      margin: 2.5rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.74rem;
      color: var(--text-footer);
      text-align: center;
      line-height: 1.6;
    }
    footer p:last-child {
    text-align: center;
    }


    /* ========================================================================
   10) MEDIA QUERIES — mobile (<= 768px)
   ======================================================================== */
    @media (max-width: 768px) {
 
    h1 {
        max-width: 100%;
      }

      .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);
      }

      .at-a-glance>div:last-child {
        border-bottom: none;
      }

      .card-grid {
        grid-template-columns: 1fr;
      }

      .glossary-term {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.6rem 0;
      }

      .glossary-term p:first-child {
        min-width: 0;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem;
      }

      .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
      }

      .header-meta {
        font-size: 0.7rem;
      }

      .toc ol {
        padding: 0.4rem 1rem 1rem;
      }

      .toc a {
        font-size: 0.92rem;
        gap: 0.6rem;
      }

      .comparison table {
        font-size: 0.88em;
      }

      .pre-bet-checklist ul {
        padding-left: 1.8rem;
      }

      .pre-bet-checklist li::before {
        left: -2rem;
      }
    }

    @media (max-width: 480px) {
      .footer-inner {
        grid-template-columns: 1fr;
      }

      h1 {
        letter-spacing: -0.01em;
      }
    }

    /* ========================================================================
   11) ACCESSIBILITY
   ======================================================================== */
    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
      border-radius: 2px;
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }

      html {
        scroll-behavior: auto;
      }
    }
  
.entry-content {
    margin-top: 2.2rem;
}

/*  */

img {
    width: 100%;
    object-fit: cover;
    max-height: 600px;
    height: auto;
}

.wp-block-image img {

    margin-bottom: 2rem;
}



.main-nav>li {
    position: relative;
     list-style: none;
}



.main-nav>li>a:hover {
    color: var(--accent);
}



/* ВЫПАДАЮЩИЙ СПИСОК (ПК) - ПРИНУДИТЕЛЬНО СКРЫТ ПО УМОЛЧАНИЮ */
.main-nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: #1a1a1a;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    border-top: 3px solid var(--accent);
    border-radius: 0 0 4px 4px;
    z-index: 100;
    padding: 0;
    margin: 0;
    max-height: none;
    overflow: visible;
}

/* Показываем при наведении */
.main-nav li:hover>ul {
    display: flex;
}

.main-nav ul ul li {
    border-bottom: 1px solid #333;
}

.main-nav ul ul li:last-child {
    border-bottom: none;
}

.main-nav ul ul a {
    display: block;
    padding: 14px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-transform: none;
    transition: all 0.2s ease;
    background-color: transparent;
}

.main-nav ul ul a:hover {
    background-color: var(--accent);
    color: #fff;
    padding-left: 25px;
}


/* ==========================================
   МОБИЛЬНОЕ МЕНЮ (< 992px)
   ========================================== */
@media (max-width: 991px) {
    .header-top {
        flex-wrap: wrap;
    }

    /* Кнопка бургер */
    .header-top .js-burger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

   

    /* Анимация бургера в крестик */
    body.burger-active .js-burger .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.burger-active .js-burger .burger-line:nth-child(2) {
        opacity: 0;
    }

    body.burger-active .js-burger .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Панель меню на мобилке */


    /* Показываем меню при клике */
    body.burger-active .main-nav-container {
        display: flex;
    }

    /* Ссылки мобилки */

    .main-nav>li>a {
        padding: 18px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #222;
    }


    /* Подменю на мобилке (СТРОГО СКРЫТО по умолчанию) */
    .main-nav .sub-menu,
    .main-nav ul ul {
        display: none !important;
        /* Прячем */
        max-height: 0;
        overflow: hidden;
        position: static !important;
        width: 100%;
        background-color: #111;
        transition: max-height 0.3s ease;
    }

    /* КЛЮЧЕВОЕ ИСПРАВЛЕНИЕ: Показываем, когда у РОДИТЕЛЯ (li) есть класс .is-open */
    .main-nav li.is-open>.sub-menu,
    .main-nav li.is-open>ul {
        display: block !important;
        max-height: 2000px;
        list-style: none;
        /* Даем запас высоты для раскрытия */
    }

    .main-nav li.is-open>a {
        color: var(--accent);
    }

    /* Иконка стрелочки при открытии (опционально) */

    .main-nav ul ul a:hover {
        padding-left: 20px;
    }
}



.burger-logo {
    max-width: 170px;
    z-index: 1001;
}
.logo-wrapper{
  display: flex;
}

/* Responsive */

#site-navigation.header-nav {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    overflow: visible;
    background: transparent;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 15px;
      width: 1900px;
    max-width: 100%;
    margin: auto;

}
.site-header{
  background: var(--bg-header);
      border-bottom: 1px solid var(--border);
z-index: 4;
position: fixed;
width: 100%;
}

.header-top .js-burger {
    display: none;
}


.main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0;
    width: auto;
}

.main-nav>li {
    position: relative;
    width: 100%;
}

.main-nav>li>a {
    display: flex;
    align-items: center;
    padding: 14px 11px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 1px;
     color: var(--text-secondary);
    font-family: var(--font-heading);
        border-left: 1px solid;
    height: 1px;
    white-space: nowrap ;
}

.main-nav>li>a:hover {
    color: var(--accent);
}


.main-nav ul ul,
.main-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 240px;
      background-color: var(--color-header-bg);
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    border-top: 3px solid var(--accent);
    border-radius: 0 0 4px 4px;
    z-index: 100;
    padding: 0;
    margin: 0;
    max-height: none;
    overflow: visible;
}

.main-nav li:hover>ul,
.main-nav li:hover>.sub-menu {
    display: flex;
}

.main-nav ul ul li,
.main-nav .sub-menu li {
    border-bottom: 1px solid #333;
      list-style: none;
}

.main-nav ul ul li:last-child,
.main-nav .sub-menu li:last-child {
    border-bottom: none;
}

.main-nav ul ul a,
.main-nav .sub-menu a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: none;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
     color: var(--text-secondary);
}

.main-nav ul ul a:hover,
.main-nav .sub-menu a:hover {
    background-color: var(--accent);
    color: #fff;
    padding-left: 25px;
}

/* ==========================================
   МОБИЛЬНОЕ МЕНЮ (< 992px)
   ========================================== */
@media (max-width: 991px) {
    .header-top {
        flex-wrap: wrap;
    }

    .header-top .js-burger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .header-top .js-burger .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--text-secondary);
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    body.burger-active .js-burger .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.burger-active .js-burger .burger-line:nth-child(2) {
        opacity: 0;
    }

    body.burger-active .js-burger .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav-container {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
         background: radial-gradient(ellipse at 30% 20%, rgba(235, 145, 19, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(235, 145, 19, 0.04) 0%, transparent 50%), var(--bg-page);
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 64px;
        overflow-y: auto;
        z-index: 1000;
    }

    body.burger-active .main-nav-container {
        display: flex;
    }

    .main-nav {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 0;
       background-color: var(--color-header-bg);
        height: 100vh;
    }

    .main-nav>li>a {
        padding: 33px 20px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #222;
        font-size: 20px;
    }

    .main-nav ul ul,
    .main-nav .sub-menu {
        position: static;
        width: 100%;
       padding: 0 15px;
        border-radius: 0;
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav ul ul.is-open,
    .main-nav .sub-menu.is-open {
        display: flex;
        max-height: 1000px;
    }

    .main-nav ul ul a:hover,
    .main-nav .sub-menu a:hover {
        padding-left: 20px;
    }

    .main-nav .menu-item-has-children {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }


    .main-nav .menu-item-has-children>a {
        flex: 1;
        padding-right: 10px !important;
    }


    .sub-menu-toggle {
        width: 50px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: var(--accent);
        cursor: pointer;
        border-left: 1px solid #222;
        transition: transform 0.3s ease;
        border-bottom: 1px solid;
    }

 
    /* .menu-item-has-children.is-open>.sub-menu-toggle {
        transform: rotate(180deg);
       
    }

  
    .main-nav li.menu-item-has-children>a::after {
        display: none !important;
    } */
}
   @media (max-width: 480px) {
      .burger-logo {
    max-width: 208px;

    }}
body.menu-open {
    overflow: hidden;
}
body.burger-active {
    overflow: hidden;
    touch-action: none;
}
.main-post-image img{
  margin-bottom: 0;
}

/* end menu */


.container-casa p {
    text-align: center;
  
    max-width: 900px;
    margin: 1rem auto 1.5rem;
}

.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;
    flex-wrap: wrap;
    margin:  6rem auto 2rem;
    gap: 0.5rem;
      width: fit-content;
      color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
   
   
    padding: 0.4em 0.9em;
    border: 1px solid rgba(9, 112, 130, 0.3);
    border-radius: 999px;
    background: rgba(9, 112, 130, 0.04);
    text-align: center;
}

.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 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);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .sitemap-section {
        padding: 15px;
    }

    .tag {
        font-size: 12px;
        padding: 3px 8px;
    }
}



@media (max-width: 1100px) {


    .wide-image-container {
        margin-left: calc(-2 * var(--space-xl));
        margin-right: calc(-2 * var(--space-xl));
        border-radius: var(--img-radius);
    }


    .site-branding nav {

        background: none;
        border-radius: var(--radius);

        margin-bottom: calc(var(--gap) * 1.5);
        box-shadow: none;
        border: none;
    }



}


header p {
    font-size: var(--font-md);

}

.toc-wrap {
    padding: 1rem;

}



/* 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-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-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;
    -webkit-tap-highlight-color: transparent;
}







.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;
    }
}




.sitemap-grid {
    margin: 2rem auto;
}


/* Контейнер для скролла */
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

section,
h2[id],
h3[id],
[data-content] {
    scroll-margin-top: 70px;
}


/* Добавляет маленькую стрелочку после внешних ссылок */
a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.75em;
    vertical-align: super;
}


/* Контейнер слайдера */
.sport-slider-wrapper {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e4e8;
}

/* Шапка с кнопками */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-btn {
    background: #1a2d44;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: #004a99;
}

/* Трек слайдера */
.slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Скрываем скроллбар в Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none;
    /* Скрываем скроллбар в Chrome/Safari */
}

.slider-page {
    flex: 0 0 100%;
    /* Каждый слайд занимает 100% ширины */
    scroll-snap-align: start;
    box-sizing: border-box;
}

/* Убираем лишние рамки внутри слайдера, так как они есть у внешнего контейнера */
.slider-page .sport-column-standalone {
    border: none;
    margin-bottom: 0;
}

.slider-page .column-footer {
    display: none;
    /* Прячем внутренние футеры, оставляем один общий */
}

/* Исправляем заголовок в шапке слайдера */
.slider-header h2 {
    color: #1a2d44 !important;
    /* Делаем заголовок темным */
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Контент внутри слайда */
.slider-page .column-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
  
}

/* Главный пост (большое фото) */
.main-post-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;

    /* Чтобы фото не было бесконечным */
}

.main-post-info h3 {
    margin-top: 15px;
    color: #1a2d44;
    font-size: 1.5rem;
}

.main-post-info p {
    margin-top: 15px;
    color: #1a2d44;
    font-size: 1rem;
}

/* Список маленьких постов под главным */
.other-posts {
    display: grid;
    grid-template-columns: 1fr;
    /* На мобилках в одну колонку */
    gap: 15px;
    padding: 0;
    margin: 0;
}

/* Если экран широкий, делаем маленькие посты в две колонки */
@media (min-width: 768px) {
    .other-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.small-post a {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.small-post-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.small-post-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #1a2d44;
}

.small-post-info p {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #1a2d44;
}

@media (min-width: 991px) {
    .sub-menu-toggle {
        display: none;
    }
}


.main-nav .current-menu-item > a,
.main-nav .current-page-item > a {
color: var(--accent);
    font-weight: bold;
}


.main-nav .current-menu-ancestor > a,
.main-nav .current-menu-parent > a {
       color: var(--accent);
}


/* .main-nav .current-menu-item > a::after,
.main-nav .current-menu-ancestor > a::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    margin-top: 4px;
} */
figcaption{
  text-align: center;
}
.back-to-top{
  margin: 2rem auto;
    display: flex;
    justify-content: center;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1 0 auto;
}


footer {
    flex-shrink: 0;
}

.back-to-top {
    display: block;
    text-align: center;
    margin: 2rem auto;
    font-family: var(--font-heading);
    font-size: var(--font-size-small);
    color: var(--color-text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

