/* =========================================
   Footer Secondary - gelbe Mittelzone
   mit Radial-Gradient + Streifen
   ========================================= */

/* äußerer Bereich bleibt hell/weiß */
.footer-secondary,
.footer-secondary.footer-secondary--has-decor {
  background: #ffffff !important;
  position: relative;
}

/* falls das Theme selbst Dekorflächen setzt */
.footer-secondary::before,
.footer-secondary::after {
  opacity: 1;
}

/* mittlerer innerer Balken */
.footer-secondary .footer-secondary__inner {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.10) 0px,
      rgba(255,255,255,0.10) 10px,
      rgba(255,255,255,0.00) 10px,
      rgba(255,255,255,0.00) 24px
    ),
    radial-gradient(
      circle at center,
      rgba(255, 221, 77, 0.98) 0%,
      rgba(240, 194, 50, 0.96) 55%,
      rgba(214, 168, 28, 0.96) 100%
    ) !important;
  border-radius: 10px;
  padding: 14px 22px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.20);
  position: relative;
  z-index: 2;
}

/* Footer-Menü mittig */
.footer-secondary .footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* einzelne Footer-Menüpunkte */
.footer-secondary .footer-menu > li {
  margin: 0;
  padding: 0;
}

/* Links dunkel */
.footer-secondary .footer-menu a,
.footer-secondary .footer-menu li a,
.footer-secondary .menu-item a {
  color: #1f1f1f !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Hover */
.footer-secondary .footer-menu a:hover,
.footer-secondary .footer-menu li a:hover,
.footer-secondary .menu-item a:hover {
  color: #000000 !important;
  opacity: 0.82;
}

/* Trenner, falls Theme welche setzt */
.footer-secondary .footer-menu > li + li::before,
.footer-secondary .menu > li + li::before {
  color: rgba(0,0,0,0.35) !important;
}

/* Mobil */
@media (max-width: 767px) {
  .footer-secondary .footer-secondary__inner {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .footer-secondary .footer-menu {
    gap: 16px;
  }

  .footer-secondary .footer-menu a,
  .footer-secondary .footer-menu li a,
  .footer-secondary .menu-item a {
    font-size: 12px;
  }
}