/* *********************************************
   Gewobag Geschäftsbericht 2025 – Custom Styles
   Zusammengeführt aus:
   - gb2025-header.css
   - gb2025-sidebar.css
   - gb2025-scroll.css
   - gb2025-collapse.css
   + Download-Box
   ********************************************* */


/* ═════════════════════════════════════════════
   1. HEADER / HERO
   ═════════════════════════════════════════════ */

@font-face {
  font-family: 'Museo700';
  src: url('/fileadmin/assets_2025/fonts/exljbris_-_Museo-700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

.gb2025-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- Intro: Startzustand unsichtbar --- */
.gb2025-hero .year,
.gb2025-hero .mod-plattform,
.gb2025-hero .mod-links,
.gb2025-hero .mod-rechts {
  opacity: 0;
}

/* Einblend-Keyframes */
@keyframes gb2025-fade-up {
  from { opacity: 0; transform: translateY(1.5vw); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gb2025-fade-down {
  from { opacity: 0; transform: translateY(-1.5vw); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gb2025-fade-up-centered {
  from { opacity: 0; transform: translateX(-50%) translateY(1.5vw); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --- Jahreszahl-Layer --- */
.gb2025-hero .year {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: 'Museo700', serif;
  font-size: clamp(6rem, 22vw, 26rem);
  color: #3b3b38;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

.gb2025-hero .year-left,
.gb2025-hero .year-right {
  display: block;
}

/* --- Video-Layer --- */
.gb2025-hero .video-wrapper {
  position: relative;
  z-index: 3;
  width: 70vw;
  clip-path: inset(0 50% 0 50%);
}

/* Typo3 YouTube-Button verstecken — wir nutzen unseren eigenen Play-Button */
#c41389 {
  display: none !important;
}

.gb2025-hero .video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Play Button --- */
.gb2025-hero .play-btn {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.gb2025-hero .btn-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 999px;
  padding: clamp(0.25rem, 0.5vw, 0.35rem);
  height: clamp(3.2rem, 5.2vw, 4.8rem);
  overflow: hidden;
  white-space: nowrap;
}

.gb2025-hero .btn-label {
  font-family: 'Museo700', serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: #3b3b38;
  opacity: 0;
  padding-left: clamp(0.8rem, 1.6vw, 1.3rem);
  padding-right: clamp(0.4rem, 0.8vw, 0.7rem);
  flex-shrink: 0;
}

.gb2025-hero .btn-icon {
  flex-shrink: 0;
  width:  clamp(2.6rem, 4.2vw, 4rem);
  height: clamp(2.6rem, 4.2vw, 4rem);
  border-radius: 50%;
  background: #3b3b38;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
}

.gb2025-hero .btn-icon svg {
  width:  48%;
  height: 48%;
  margin-left: 2%;
}

@keyframes gb2025-label-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes gb2025-icon-pop {
  0%   { transform: scale(0);    }
  65%  { transform: scale(1.18); }
  82%  { transform: scale(0.92); }
  100% { transform: scale(1);    }
}

.gb2025-hero .play-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.gb2025-hero .play-btn.animate .btn-label {
  animation: gb2025-label-in 0.4s ease forwards;
  animation-delay: 0.55s;
}

.gb2025-hero .play-btn.animate .btn-icon {
  animation: gb2025-icon-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.45s;
}

.gb2025-hero .play-btn:hover .btn-pill {
  filter: brightness(0.95);
}
.gb2025-hero .play-btn:hover .btn-icon {
  background: #555550;
}

/* --- SVG Module --- */
.gb2025-hero .mod-plattform {
  position: absolute;
  z-index: 0;
  width: 55vw;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5vw;
  pointer-events: none;
}

.gb2025-hero .mod-plattform img {
  width: 100%;
  height: auto;
  display: block;
}

.gb2025-hero .mod-links {
  position: absolute;
  z-index: 1;
  width: 26vw;
  left: 55vw;
  top: -10vw;
  pointer-events: none;
}

.gb2025-hero .mod-links img {
  width: 100%;
  height: auto;
  display: block;
}

.gb2025-hero .mod-rechts {
  position: absolute;
  z-index: 4;
  width: 13.9vw;
  right: 10vw;
  top: 35vw;
  pointer-events: none;
}

.gb2025-hero .mod-rechts img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Portrait / Smartphone --- */
@media (orientation: portrait) {
  .gb2025-hero .year {
    font-size: clamp(5rem, 24vw, 12rem);
  }

  .gb2025-hero .video-wrapper {
    width: 88vw;
    height: 75vh;
    overflow: hidden;
  }

  .gb2025-hero .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .gb2025-hero .mod-links {
    width: 52vw;
    left: 48vw;
    top: -20vw;
  }

  .gb2025-hero .mod-rechts {
    width: 36vw;
    right: 5vw;
    top: auto;
    bottom: 5vw;
  }
}


/* ═════════════════════════════════════════════
   2. SIDEBAR-NAVIGATION
   ═════════════════════════════════════════════ */

/* ── Alte Navigation ausblenden ── */
/*.hgb-sidebar,
#menu-button-container {
  display: none !important;
}*/

@media (min-width: 768px) {
  .hgb-buttonbar .hgb-button-item.hgb-visible-xs {
    opacity: 1;
  }
  html.accessibility-mode .hgb-buttonbar .hgb-button-item.hgb-visible-xs {
    display: block;
  }
}
/* ── Container: fixed, rechts, vertikal zentriert ── */
.gb2025-sidebar {
  position: fixed;
  right: 0;
  top: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: auto;
  transform: scale(0.8857);
  transform-origin: top right;
}

/* ── Button-Reset (für toggle-button) ── */
button.gb2025-sidebar__item {
  border: none;
  font: inherit;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ── Einzelner Item-Link (Pill-State) ── */
.gb2025-sidebar__item {
  position: relative;
  display: flex;
  align-items: center;
  width: 264px;
  height: 100px;
  padding: 0 16px 0 9px;
  border-radius: 50px;
  background: #3b3b38;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  right: -56px;
  transition:
    right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    padding 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Icon-Kreis (Pill-State: 82×82 px) ── */
.gb2025-sidebar__circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  min-width: 82px;
  border-radius: 50%;
  background: transparent;
  transition:
    background 0.25s ease,
    width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    min-width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

/* ── Icon-SVG (Pill-State: 83×83 px) ── */
.gb2025-sidebar__icon {
  width: 83px;
  height: 83px;
  display: block;
  filter: brightness(0) invert(1);
  transition:
    filter 0.25s ease,
    width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Label-Text ── */
.gb2025-sidebar__label {
  margin-left: 12px;
  font-family: 'Museo700', 'Museo', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  max-width: 200px;
  overflow: hidden;
  opacity: 1;
  transition:
    max-width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease,
    margin-left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Zeitversatz: zweiter Button 100ms später ── */
.gb2025-sidebar__item:nth-child(2),
.gb2025-sidebar__item:nth-child(2) .gb2025-sidebar__circle,
.gb2025-sidebar__item:nth-child(2) .gb2025-sidebar__icon,
.gb2025-sidebar__item:nth-child(2) .gb2025-sidebar__label {
  transition-delay: 100ms;
}

/* Fokus-State (Tastaturnavigation) */
.gb2025-sidebar__item:focus-visible {
  outline: 3px solid #ffdb05;
  outline-offset: 3px;
}

/* Hover-State */
.gb2025-sidebar__item:hover {
  transform: scale(1.04);
}

.gb2025-sidebar__item:hover .gb2025-sidebar__circle {
  background: #fff;
}

.gb2025-sidebar__item:hover .gb2025-sidebar__icon {
  filter: none;
}

/* Shrunk-State (nach Scroll) */
.gb2025-sidebar--shrunk .gb2025-sidebar__item {
  width: 58px;
  height: 58px;
  right: 13px;
  padding: 0;
  border-radius: 29px;
  justify-content: center;
}

.gb2025-sidebar--shrunk .gb2025-sidebar__label {
  max-width: 0;
  opacity: 0;
  margin-left: 0;
}

.gb2025-sidebar--shrunk .gb2025-sidebar__circle {
  width: 58px;
  height: 58px;
  min-width: 58px;
}

.gb2025-sidebar--shrunk .gb2025-sidebar__icon {
  width: 64px;
  height: 64px;
}

/* Shrunk + Hover: Button wird wieder groß */
.gb2025-sidebar--shrunk .gb2025-sidebar__item:hover {
  width: 264px;
  height: 100px;
  right: -56px;
  padding: 0 16px 0 9px;
  border-radius: 50px;
  justify-content: flex-start;
  transition-delay: 0ms;
}

.gb2025-sidebar--shrunk .gb2025-sidebar__item:hover .gb2025-sidebar__circle {
  width: 82px;
  height: 82px;
  min-width: 82px;
  background: #fff;
}

.gb2025-sidebar--shrunk .gb2025-sidebar__item:hover .gb2025-sidebar__icon {
  width: 83px;
  height: 83px;
  filter: none;
}

.gb2025-sidebar--shrunk .gb2025-sidebar__item:hover .gb2025-sidebar__label {
  max-width: 200px;
  opacity: 1;
  margin-left: 12px;
  transition-delay: 0ms;
}

/* Barrierefreier Modus (.gb2025-sidebar--a11y) */
.gb2025-sidebar--a11y .gb2025-sidebar__item,
.gb2025-sidebar--a11y .gb2025-sidebar__circle,
.gb2025-sidebar--a11y .gb2025-sidebar__icon,
.gb2025-sidebar--a11y .gb2025-sidebar__label {
  transition: none !important;
  transition-delay: 0ms !important;
}

.gb2025-sidebar--a11y .gb2025-sidebar__item {
  width: 58px;
  height: 58px;
  right: 13px;
  padding: 0;
  border-radius: 29px;
  justify-content: center;
  transform: none !important;
}

.gb2025-sidebar--a11y .gb2025-sidebar__label {
  max-width: 0;
  opacity: 0;
  margin-left: 0;
}

.gb2025-sidebar--a11y .gb2025-sidebar__circle {
  width: 58px;
  height: 58px;
  min-width: 58px;
}

.gb2025-sidebar--a11y .gb2025-sidebar__icon {
  width: 64px;
  height: 64px;
}

.gb2025-sidebar--a11y .gb2025-sidebar__item:hover {
  transform: none !important;
}

.gb2025-sidebar--a11y .gb2025-sidebar__item:hover .gb2025-sidebar__circle {
  background: transparent;
}

.gb2025-sidebar--a11y .gb2025-sidebar__item:hover .gb2025-sidebar__icon {
  filter: brightness(0) invert(1);
}

.gb2025-sidebar--a11y .gb2025-sidebar__item:focus-visible {
  outline: 3px solid #ffdb05;
  outline-offset: 3px;
}

/* Small Viewport (≤1280px) */
@media (max-width: 1280px) {
  .gb2025-sidebar__item {
    width: 58px;
    height: 58px;
    right: 13px;
    padding: 0;
    border-radius: 29px;
    justify-content: center;
  }

  .gb2025-sidebar__label {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
  }

  .gb2025-sidebar__circle {
    width: 51px;
    height: 51px;
    min-width: 51px;
  }

  .gb2025-sidebar__icon {
    width: 57px;
    height: 57px;
  }

  .gb2025-sidebar__item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }

  .gb2025-sidebar__item:hover .gb2025-sidebar__icon {
    filter: none;
  }
}

/* Sidebar: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .gb2025-sidebar__item,
  .gb2025-sidebar__label,
  .gb2025-sidebar__circle,
  .gb2025-sidebar__icon {
    transition: none !important;
  }
}


/* ═════════════════════════════════════════════
   3. SCROLL-ANIMATION
   ═════════════════════════════════════════════ */

/* ── Wrapper ── */
.gb2025-scroll {
  position: relative;
  z-index: 10;
}

/* ── Scene: 100vh, oben + unten je 10vh abgeschnitten ──
   Wichtig: vh (nicht dvh) verwenden! Auf iOS Safari entspricht vh
   dem stabilen Large Viewport (URL-Bar versteckt) und ändert sich
   NICHT beim Adressleisten-Toggle. dvh hingegen würde dynamisch
   mitwachsen → Scene-Größe ändert sich beim Scrollen → Zucken. */
.gb2025-scroll .sticky-scene {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #e3f8fe;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  /* will-change: transform funktioniert mit normalizeScroll:true
     in der ScrollSmoother-Config wieder zuverlässig, weil das
     Scroll/JS-Threading-Problem dann gelöst ist. */
  will-change: transform;
  clip-path: inset(10vh 0 10vh 0);
}

.gb2025-scroll .circles-container {
  position: absolute;
  top: -10vh;
  left: 50%;
  transform: translateX(-50%);
  width:  max(100vw, 222.222vh);
  height: max(100vw, 222.222vh);
  clip-path: inset(0 0 55% 0);
}

/* ── Firefox-Only Performance-Cap ──
   Firefox' Compositor kommt bei großen Rotationen ins Stocken.
   Pragmatischer Fix: Container-Größe in Firefox auf 200vh deckeln
   (statt 222.222vh). Damit der Container trotzdem die volle sichtbare
   Scene-Höhe (100vh) füllt, muss das clip-path mit angepasst werden:
   bei 200vh sind die sichtbaren 100vh = 50% (statt 45% bei 222.222vh).
   Chrome/Safari ignorieren diesen Block komplett. */
@-moz-document url-prefix() {
  .gb2025-scroll .circles-container {
    width:  max(100vw, 200vh);
    height: max(100vw, 200vh);
    clip-path: inset(0 0 50% 0);
  }
}

/* ── Disc Layers ── */
.gb2025-scroll .disc-layer {
  position: absolute;
  border-radius: 50%;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.gb2025-scroll .disc-layer img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

/* ── Z-Index Stack ── */
.gb2025-scroll #gb2025-disc8 { z-index: 1; }
.gb2025-scroll #gb2025-disc7 { z-index: 2; }
.gb2025-scroll #gb2025-disc6 { z-index: 3; }
.gb2025-scroll #gb2025-disc5 { z-index: 4; }
.gb2025-scroll #gb2025-disc4 { z-index: 5; }
.gb2025-scroll #gb2025-disc3 { z-index: 6; }
.gb2025-scroll .figure-layer  { z-index: 7; }
.gb2025-scroll #gb2025-disc1 { z-index: 8; }

/* ── Micro-Lottie Container ── */
.gb2025-scroll #gb2025-lottie-micro {
  width: 100%;
  height: 100%;
}

/* ── Fahrrad-Figur ── */
.gb2025-scroll .figure-layer {
  position: absolute;
  width: 16%;
  height: 16%;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gb2025-scroll #gb2025-lottie-figur {
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
}

/* ── Screen-Reader-only ── */
.gb2025-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Skip-Button (fixed, auf unterer Clip-Path-Kante) ── */
.gb2025-skip-btn {
  position: fixed;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  background: #3b3b38;
  color: #ffffff;
  font-family: 'MuseoSans', 'Museo Sans', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  line-height: 1;
  padding: 8px 20px;
  border-radius: 999px;
  text-decoration: none !important;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.gb2025-skip-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.gb2025-skip-btn:hover,
.gb2025-skip-btn:focus,
.gb2025-skip-btn:active {
  background: #555550;
  color: #ffffff !important;
  text-decoration: none !important;
}

.gb2025-skip-btn:focus {
  outline: none;
}

.gb2025-skip-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Scroll-Animation: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .gb2025-scroll .sticky-scene {
    will-change: auto;
  }
  .gb2025-scroll .disc-layer,
  .gb2025-scroll .figure-layer,
  .gb2025-scroll #gb2025-lottie-figur {
    transition: none !important;
  }
}


/* ═════════════════════════════════════════════
   4. COLLAPSE / VORWORT
   ═════════════════════════════════════════════ */

/* Vorangestellte Zeile – initial unsichtbar */
.vorwort-intro {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.vorwort-intro.is-visible {
  opacity: 1;
}

/* Wrapper zentrieren + Abstand */
#c44472 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

#c44472 .collapse,
#c44472 .collapsing {
  text-align: left;
  width: 100%;
}

#c44472 .collapse-link.lead {
  margin-top: 2rem;
}

/* Original ::before ausblenden */
.collapse-link.lead::before {
  display: none !important;
  content: none !important;
}

.collapse-link.lead {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: #3b3b38 !important;
  color: #ffffff !important;
  font-family: 'MuseoSans', 'Museo Sans', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  line-height: 1;
  padding: 8px 20px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background 0.3s ease;
}

.collapse-link.lead[aria-expanded="true"] {
  background: #3b3b38 !important;
  color: #ffffff !important;
}

.collapse-link.lead:hover {
  background: #555550 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.collapse-link.lead:focus,
.collapse-link.lead:active {
  background: #3b3b38 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  outline: none;
}

/* +/– Zeichen */
.collapse-link.lead .collapse-sign {
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1;
}


/* ═════════════════════════════════════════════
   5. PDF-DOWNLOAD-BOX
   ═════════════════════════════════════════════ */

/* Download-Box: quadratisch, Bild oben rechts, Text unten links */
.download-box-lila .hgb-box,
.download-box-gruen .hgb-box,
.download-box-blau .hgb-box {
  position: relative;
  overflow: hidden;
  background: #eeeeec !important;
  transition: background 0.4s ease;
}

/* Grüne Box: etwas dunklerer Grauton im Normalzustand */
.download-box-gruen .hgb-box {
  background: #e2e2df !important;
}

/* Farb-Varianten bei Hover */
.download-box-lila .hgb-box:hover {
  background: #d6cbf4 !important;
}

.download-box-gruen .hgb-box:hover {
  background: #c0ebd1 !important;
}

.download-box-blau .hgb-box:hover {
  background: #adf0ff !important;
}

.download-box-lila .hgb-box-content,
.download-box-gruen .hgb-box-content,
.download-box-blau .hgb-box-content {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Bild: oben rechts */
.download-box-lila .teaser-cover,
.download-box-gruen .teaser-cover,
.download-box-blau .teaser-cover {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 130%;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Text und Button über dem Bild */
.download-box-lila .frame-type-text,
.download-box-gruen .frame-type-text,
.download-box-blau .frame-type-text {
  position: relative;
  z-index: 1;
}

/* Hover: Bild verschiebt sich und schrumpft */
.download-box-lila .hgb-box:hover .teaser-cover,
.download-box-gruen .hgb-box:hover .teaser-cover,
.download-box-blau .hgb-box:hover .teaser-cover {
  transform: translate(30%, -30%) scale(0.8);
}

/* ── Pfeilgrafik: bei Einspaltigkeit (Tablet/Mobil) nach unten drehen ── */
@media (max-width: 991px) {
  #c44435 img {
    transform: rotate(90deg);
  }
}

/* ═════════════════════════════════════════════
   6. BTN-SECONDARY OVERRIDE
   ═════════════════════════════════════════════ */

.btn.btn-secondary {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* ═════════════════════════════════════════════
   7. SLICK-DOTS – DUNKLE PILL-BOX
   ═════════════════════════════════════════════ */

ul.slick-dots {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #3b3b38;
  border-radius: 999px;
  padding: 10px 12px !important;
  width: auto !important;
  height: auto !important;
  position: absolute;
  top: 15px !important;
  right: 15px !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0 !important;
  list-style: none;
}

ul.slick-dots li button:before {
  color: #fff !important;
  opacity: 0.5;
}

ul.slick-dots li.slick-active button:before {
  color: #fff !important;
  opacity: 1;
}

.slick-grid a {
  pointer-events: auto;
}