/**
 * Theme Name: sportnieuws
 * Version: 1.0
 */
 
        :root {
            --color-bg: #fafafa;
            --color-bg-alt: #ffffff;
            --color-text: #1a1a2e;
            --color-text-muted: #4a4a68;
            --color-accent: #d62828;
            --color-accent-hover: #b91c1c;
            --color-border: #e5e5e5;
            --color-shadow: rgba(0, 0, 0, 0.08);
            --color-highlight: #fde047;
            --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --font-serif: Georgia, 'Times New Roman', serif;
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
            --space-2xl: 4rem;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --transition: 0.2s ease;
            --max-width: 72rem;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --color-bg: #0f0f1a;
                --color-bg-alt: #1a1a2e;
                --color-text: #e8e8f0;
                --color-text-muted: #a0a0b8;
                --color-border: #2a2a40;
                --color-shadow: rgba(0, 0, 0, 0.3);
                --color-highlight: #fbbf24;
            }
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-bg);
            min-height: 100vh;
        }

        .container{
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 15px;
        }

     
        h1 {
            font-size: clamp(1.75rem, 1.5rem + 1.5vw, 2.75rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-text);
            margin-bottom: var(--space-md);
            letter-spacing: -0.02em;
        }

        header p {
            font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
            color: var(--color-text-muted);
            max-width: 45rem;
        }

        h2 {
            font-size: clamp(1.4rem, 1.2rem + 1vw, 1.875rem);
            font-weight: 600;
            line-height: 1.3;
            margin: var(--space-2xl) 0 var(--space-md);
            padding-top: var(--space-md);
            border-top: 2px solid var(--color-accent);
            scroll-margin-top: var(--space-lg);
        }

        h3 {
            font-size: clamp(1.15rem, 1.1rem + 0.5vw, 1.35rem);
            font-weight: 600;
            margin: var(--space-lg) 0 var(--space-sm);
        }

        p {
            margin-bottom: var(--space-md);
        }

        a {
            color: var(--color-accent);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover, a:focus {
            color: var(--color-accent-hover);
            text-decoration: underline;
        }

        a:focus {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }

        nav[aria-label="Inhaltsverzeichnis"] {
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: var(--space-md) var(--space-lg);
            margin-bottom: var(--space-xl);
            box-shadow: 0 2px 8px var(--color-shadow);
        }

        nav[aria-label="Inhaltsverzeichnis"] strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: var(--space-sm);
            color: var(--color-text);
        }

        nav[aria-label="Inhaltsverzeichnis"] ol {
            list-style-position: inside;
            padding-left: 0;
        }

        nav[aria-label="Inhaltsverzeichnis"] li {
            padding: var(--space-xs) 0;
            border-bottom: 1px solid var(--color-border);
        }

        nav[aria-label="Inhaltsverzeichnis"] li:last-child {
            border-bottom: none;
        }

        nav[aria-label="Inhaltsverzeichnis"] a {
            color: var(--color-text);
            transition: color var(--transition), transform var(--transition);
            display: inline-block;
        }

        nav[aria-label="Inhaltsverzeichnis"] a:hover {
            color: var(--color-accent);
            transform: translateX(4px);
        }

        section {
            margin-bottom: var(--space-xl);
        }
        .container-casa{
          padding: 0 15px 2rem ;
        }
        article {
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            margin-bottom: var(--space-md);
            transition: box-shadow var(--transition), transform var(--transition);
        }

        article:hover {
            box-shadow: 0 4px 16px var(--color-shadow);
            transform: translateY(-2px);
        }

        article h3 {
            margin-top: 0;
            color: var(--color-accent);
        }

        mark {
            background: var(--color-highlight);
            padding: 0.1em 0.3em;
            border-radius: var(--radius-sm);
        }

        strong {
            font-weight: 600;
        }

        blockquote {
            border-left: 4px solid var(--color-accent);
            padding-left: var(--space-md);
            margin: var(--space-md) 0;
            font-style: italic;
            color: var(--color-text-muted);
        }

     

        figure table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }

        figure th, figure td {
            padding: var(--space-sm);
            text-align: left;
            border-bottom: 1px solid var(--color-border);
        }

        figure th {
            background: var(--color-bg-alt);
            font-weight: 600;
        }

        figure tr:hover td {
            background: var(--color-bg-alt);
        }

        figcaption {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin-top: var(--space-xs);
            font-style: italic;
        }

        aside {
            background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
            border: 1px solid var(--color-border);
            border-left: 4px solid var(--color-accent);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            margin: var(--space-lg) 0;
        }

        aside strong {
            display: block;
            margin-bottom: var(--space-xs);
            color: var(--color-accent);
        }

        details {
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            margin-bottom: var(--space-sm);
            overflow: hidden;
        }

        summary {
            padding: var(--space-md);
            cursor: pointer;
            font-weight: 600;
            transition: background var(--transition);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--color-accent);
            transition: transform var(--transition);
        }

        details[open] summary::after {
            transform: rotate(45deg);
        }

        summary:hover {
            background: var(--color-bg);
        }

        summary:focus {
            outline: 2px solid var(--color-accent);
            outline-offset: -2px;
        }

        details > div {
            padding: 0 var(--space-md) var(--space-md);
        }

    

        footer p {
            margin-bottom: var(--space-xs);
            font-size: 0.9rem;    
        }

        .skip-link {
            position: absolute;
            top: -100%;
            left: var(--space-md);
            background: var(--color-accent);
            color: white;
            padding: var(--space-sm) var(--space-md);
            border-radius: var(--radius-md);
            z-index: 100;
            transition: top var(--transition);
        }

        .skip-link:focus {
            top: var(--space-md);
        }

        .accent-text {
            color: var(--color-accent);
            font-weight: 600;
        }

        .lead {
            font-size: 1.15em;
            color: var(--color-text-muted);
            margin-bottom: var(--space-lg);
        }

        @media (max-width: 640px) {
          
            
       
            nav[aria-label="Inhaltsverzeichnis"] {
                padding: var(--space-sm) var(--space-md);
            }
            
            figure {
                overflow-x: auto;
            }
        }
    /* ═══════════════════════════════════════════════════════════════════
   IMAGES STYLES - Wetten Schweiz 2026
   Responsive, hover effects, smooth animations
   ═══════════════════════════════════════════════════════════════════ */

/* Base image container */
.article-image {
    position: relative;
    width: 100%;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--color-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--color-shadow);
}

/* Image element styling */
.article-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-image:hover img {
    transform: scale(1.02);
}

/* Hero image - special styling */
.hero-image {
    margin: 0 0 var(--space-xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px var(--color-shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.hero-image:hover {
    transform: none;
}

.hero-image:hover img {
    transform: scale(1.01);
}

/* Content images */
.content-image {
    margin: var(--space-lg) 0;
}

/* Image with caption */
.image-figure {
    margin: var(--space-lg) 0;
}

.image-figure figcaption {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-alt);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-align: center;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

/* Float images for text wrap */
.image-float-right {
    float: right;
    width: 45%;
    margin: var(--space-sm) 0 var(--space-md) var(--space-lg);
}

.image-float-left {
    float: left;
    width: 45%;
    margin: var(--space-sm) var(--space-lg) var(--space-md) 0;
}

/* Full width image */
.image-full {
    width: 100%;
    margin: var(--space-xl) 0;
}

/* Subtle entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-image {
    animation: fadeInUp 0.6s ease forwards;
}

/* Image overlay effect on hover */
.article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 70%,
        rgba(0, 0, 0, 0.03) 100%
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.article-image:hover::after {
    opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
    .image-float-right,
    .image-float-left {
        width: 50%;
    }
    
    .hero-image img {
        max-height: 400px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .article-image {
        margin: var(--space-md) 0;
        border-radius: var(--radius-md);
    }
    
    .hero-image {
        margin: 0 calc(-1 * var(--space-sm)) var(--space-lg);
        border-radius: 0;
        width: calc(100% + 2 * var(--space-sm));
    }
    
    .hero-image img {
        max-height: 280px;
        border-radius: 0;
    }
    
    .image-float-right,
    .image-float-left {
        float: none;
        width: 100%;
        margin: var(--space-md) 0;
    }
    
    .image-figure figcaption {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.85rem;
    }
    
    /* Disable hover effects on touch devices */
    .article-image:hover {
        transform: none;
        box-shadow: 0 4px 20px var(--color-shadow);
    }
    
    .article-image:hover img {
        transform: none;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .hero-image img {
        max-height: 220px;
    }
    
    .article-image {
        border-radius: var(--radius-sm);
    }
}

/* ═══════════════════════════════════════════════════════════════════
   DARK MODE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════════ */

@media (prefers-color-scheme: dark) {
    .article-image {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .article-image:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
    
    .hero-image {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    }
    
    .article-image::after {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 70%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════ */

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .article-image {
        animation: none;
        transition: none;
    }
    
    .article-image img {
        transition: none;
    }
    
    .article-image:hover {
        transform: none;
    }
    
    .article-image:hover img {
        transform: none;
    }
}

/* Focus states for keyboard navigation */
.article-image:focus-within {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.site-titlecontainer-casa {
  max-width: 882px;
  margin: 2.5rem auto;
  text-align: center;
}

.matches h2 {
  text-align: center;
  padding: 2rem;
  justify-content: center;
  display: flex;
  width: fit-content;
  margin: 0 auto 2rem;
}

.logo-wrapper svg {
  width: 40px;
  height: auto;
  display: block;
}

/*  */

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 !important;
  display: flex !important;
  align-items: center !important;

  text-decoration: none;
}

.main-logo-img {
    max-height: 48px;
    width: auto;
    flex-shrink: 0;
    border-radius: 10px;
}

.logo-text {
  white-space: nowrap;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  
}

.logo-wrapper {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  column-gap: 0.5rem !important;
}

.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: 0 20px;
  color: inherit;
  background-color: inherit;
  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-accent);

  font-weight: 600;
  border-bottom: 1px solid var(--color-accent);
  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: 1.5rem;
}

.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: #fff;
  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-accent);
  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: 1.5rem 0 2rem;
  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;
}
@media (max-width: 700px) {
    .container {
      display: block;
    }
}


/* 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: #1a1a2e;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    margin: auto;
   
    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;
    color:#fff;
    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) {

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 2rem;
    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: 1rem;
    z-index: 2;
    position: absolute;
  }
  .burger-logo a {
    color: #ffffff !important;
  }

  .main-navigation ul {
    display: block;
  }

  .site-branding nav {
    border-radius: var(--radius);

    margin-bottom: calc(var(--gap) * 1.5);
    box-shadow: none;
    border: none;
  }

  .header-nav {
    display: flex;
    padding: 0 30px;
      background: var(--color-bg-alt);
       
        height: 59px;
  }
  .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);
  }
}

.article-image img{
  margin-bottom: 2rem;
}
/* ==========================================
   Images Styles — Tour de France Wedden
   ========================================== */

/* Hero image */
.hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  border-radius: 0;
}

/* Article images */
.article-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

/* Figure containers within sections */
[data-content] figure {
  margin: 2em auto;
  max-width: 860px;
}

[data-content] figure figcaption {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 14px;
  color: var(--color-text-secondary, #5C5C5C);
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* Hero figure — no border-radius, full width */
[data-content="hero"] figure {
  margin: 0 auto;
  max-width: 860px;
}

[data-content="hero"] figure figcaption {
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  [data-content] figure {
    margin: 1.5em auto;
  }

  .article-image {
    border-radius: 2px;
  }
}

/* Dark theme adjustments */
@media (prefers-color-scheme: dark) {
  .article-image {
    opacity: 0.92;
    transition: opacity 0.3s ease;
  }

  .article-image:hover {
    opacity: 1;
  }

  [data-content] figure figcaption {
    color: var(--color-text-secondary, #A0A09C);
  }
}

.footer-inner{
  max-width: 1200px;
  margin: 2rem auto 0;
}

.site-footer {
   background: #1a1a2e;

    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;
 max-width: var(--max-width);
    margin: 0 auto;
}

.footer-col h3 {
 
    font-size: 16px;
    text-transform: uppercase;
    margin:0 0 15px;
    color: var(--color-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}


.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-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 15px 0;
    font-size: 13px;
    color: #888;
    margin: auto;
    max-width: 1200px;
    text-align: center;
}

.safety-icons {
    display: flex;
    font-size: 16px;
 
    font-weight: bold;
    flex-direction: column;
}

/* Адаптивность */
@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;
}
section,
h2[id], 
h3[id], 
[data-content] {
    scroll-margin-top: 80px;
}
