:root {
      --red: #C60C30; --red-dark: #9a0925;
      --blue: #003478; --white: #fff;
      --black: #0d0d0d; --gray-100: #f8f9fa;
      --gray-200: #e9ecef; --gray-600: #6c757d;
      --font: 'Heebo', sans-serif;
      --max-w: 780px;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,.09);
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.75; font-size: 1.05rem; }
img, video, iframe { max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }
    a:hover { text-decoration: underline; }

/* PRIVACY BANNER */

    .privacy-banner {
      position: fixed;
      bottom: 0; right: 0; left: 0;
      z-index: 9998;
      background: rgba(7, 9, 15, .97);
      backdrop-filter: blur(12px);
      color: #fff;
      padding: 1rem 1.5rem;
      display: none;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      box-shadow: 0 -4px 20px rgba(0,0,0,.25);
      font-family: 'Heebo', sans-serif;
      font-size: .88rem;
      line-height: 1.5;
      animation: slideUp .4s ease;
    }
    .privacy-banner.show { display: flex; }
    @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
    .privacy-banner-text { flex: 1; min-width: 260px; color: rgba(255,255,255,.8); }
    .privacy-banner-text a { color: #ffeaa7; text-decoration: underline; }
    .privacy-banner-text a:hover { color: #fff; }
    .privacy-banner-btns { display: flex; gap: .6rem; flex-shrink: 0; }
    .privacy-btn {
      padding: .5rem 1.3rem;
      border-radius: 25px;
      font-family: 'Heebo', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all .3s ease;
    }
    .privacy-btn-accept { background: #C60C30; color: #fff; }
    .privacy-btn-accept:hover { background: #9a0925; }
    .privacy-btn-decline { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
    .privacy-btn-decline:hover { background: rgba(255,255,255,.2); }
  

.breadcrumb {
  background: var(--gray-100, #f8f9fa);
  border-bottom: 1px solid var(--gray-200, #e9ecef);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}
.breadcrumb-inner {
  max-width: var(--max-w, 780px);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--blue, #003478);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { 
  color: var(--red, #C60C30); 
  text-decoration: underline; 
}
.breadcrumb-sep { 
  color: var(--gray-400, #adb5bd); 
}
.breadcrumb-current {
  color: var(--gray-600, #6c757d);
  font-weight: 600;
}

/* HERO IMAGE (article top) */
.hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}
@media (max-width: 768px) {
  .hero-img { max-height: 260px; border-radius: 12px; margin-bottom: 1.5rem; }
}
