/* ==========================================================================
   Luzern Live Verein – Haupt-Stylesheet
   Pastell Palette abgestimmt auf die Festivalseite, mobile first
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Schriften (lokal, kein CDN)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   2. Design Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Farben, abgeleitet aus der Festival Palette */
  --indigo: #10008B;
  --indigo-tief: #0A0060;
  --lavendel: #B18FEF;
  --lavendel-hell: #F1EAFC;
  --himmel: #59C7DB;
  --himmel-dunkel: #17758B;
  --himmel-hell: #E6F6FA;
  --mint: #00FFC8;
  --apricot: #FFD7A0;
  --apricot-text: #6B4A00;

  --weiss: #FFFFFF;
  --grund: #FBFAFE;
  --text: #2B2666;
  --text-hell: rgba(255, 255, 255, 0.88);

  /* Typografie */
  --font-basis: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-body: 1rem;
  --fs-klein: 0.875rem;
  --fs-lead: 1.125rem;
  --fs-h1: clamp(2rem, 5vw, 3.25rem);
  --fs-h2: clamp(1.5rem, 3.5vw, 2.25rem);
  --fs-h3: 1.25rem;

  /* Abstände, grosszügig */
  --raum-1: 0.5rem;
  --raum-2: 1rem;
  --raum-3: 1.5rem;
  --raum-4: 2rem;
  --raum-5: 3rem;
  --raum-6: 4.5rem;
  --sektion: clamp(3.5rem, 8vw, 6.5rem);

  /* Radien */
  --radius-karte: 12px;
  --radius-button: 8px;
  --radius-pill: 999px;

  /* Layout */
  --inhalt-breite: 72rem;
  --schatten-karte: 0 8px 24px rgba(16, 0, 139, 0.08);
}

/* --------------------------------------------------------------------------
   3. Basis und Reset
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-basis);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--grund);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--raum-2);
  line-height: 1.2;
  font-weight: 700;
  color: var(--indigo);
}

p {
  margin: 0 0 var(--raum-2);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0 0 var(--raum-2);
  padding-left: 1.25rem;
}

a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--himmel-dunkel);
}

/* Fokus Stile, deutlich sichtbar */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Auf dunklen Flächen heller Fokusrahmen */
.hero a:focus-visible,
.site-footer a:focus-visible,
.karte-goenner a:focus-visible {
  outline-color: var(--mint);
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--indigo);
  color: var(--weiss);
  padding: var(--raum-1) var(--raum-2);
  border-radius: 0 0 var(--radius-button) 0;
}

.skip-link:focus {
  left: 0;
  color: var(--weiss);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Layout Helfer
   -------------------------------------------------------------------------- */

.inhalt {
  width: 100%;
  max-width: var(--inhalt-breite);
  margin-inline: auto;
  padding-inline: var(--raum-3);
}

@media (min-width: 48em) {
  .inhalt {
    padding-inline: var(--raum-4);
  }
}

.sektion {
  padding-block: var(--sektion);
}

.sektion-kopf {
  max-width: 44rem;
  margin-bottom: var(--raum-5);
}

.sektion-kopf .overline {
  display: block;
  font-size: var(--fs-klein);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  opacity: 0.7;
  margin-bottom: var(--raum-1);
}

.sektion-kopf h2 {
  font-size: var(--fs-h2);
}

.sektion-kopf .untertitel {
  font-size: var(--fs-lead);
  color: var(--text);
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   5. Buttons, Pill und Badge
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.8em 1.6em;
  border: 2px solid transparent;
  border-radius: var(--radius-button);
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

/* Primär, Neon Mint mit Indigo Text */
.btn-mint {
  background: var(--mint);
  color: var(--indigo);
}

.btn-mint:hover {
  filter: brightness(0.9);
  color: var(--indigo);
}

/* Sekundär hell, für dunkle Flächen */
.btn-hell {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-hell:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--weiss);
  border-color: var(--weiss);
}

/* Sekundär Indigo, für helle Flächen */
.btn-indigo {
  background: var(--indigo);
  color: var(--weiss);
}

.btn-indigo:hover {
  background: var(--indigo-tief);
  color: var(--weiss);
}

/* Pill "Verein" */
.pill {
  display: inline-block;
  padding: 0.25em 0.85em;
  border-radius: var(--radius-pill);
  background: var(--lavendel);
  color: var(--indigo);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Badge für Events, z.B. Exklusiv */
.badge {
  display: inline-block;
  padding: 0.2em 0.75em;
  border-radius: var(--radius-pill);
  background: var(--apricot);
  color: var(--apricot-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  background: var(--weiss);
  border-bottom: 1px solid var(--lavendel-hell);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--raum-2);
  min-height: 4.5rem;
  padding-block: var(--raum-1);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-bild img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--indigo);
  white-space: nowrap;
}

/* Navigation, mobile first mit Toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle-balken {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--indigo);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-balken:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-balken:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-balken:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hauptnavigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--weiss);
  border-bottom: 1px solid var(--lavendel-hell);
  box-shadow: var(--schatten-karte);
  padding: var(--raum-2) var(--raum-3) var(--raum-3);
}

.hauptnavigation.ist-offen {
  display: block;
}

.hauptnavigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--raum-1);
}

.hauptnavigation a {
  display: block;
  padding: 0.6em 0.25em;
  font-weight: 600;
  color: var(--indigo);
  text-decoration: none;
  border-radius: var(--radius-button);
}

.hauptnavigation a:hover {
  color: var(--himmel-dunkel);
}

.hauptnavigation .nav-cta {
  margin-top: var(--raum-2);
}

.header-cta-desktop {
  display: none;
}

@media (min-width: 56em) {
  .nav-toggle {
    display: none;
  }

  .hauptnavigation {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .hauptnavigation ul {
    flex-direction: row;
    align-items: center;
    gap: var(--raum-3);
  }

  .hauptnavigation a {
    padding: 0.4em 0.2em;
  }

  .hauptnavigation .nav-cta {
    display: none;
  }

  .header-cta-desktop {
    display: inline-block;
  }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  background-color: var(--indigo);
  color: var(--weiss);
  padding-block: var(--sektion);
}

/* Mit Hintergrundbild aus dem Customizer, Verlauf liegt im Inline Stil */
.hero-mit-bild {
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  padding-block: clamp(5rem, 12vw, 8.5rem);
}

.hero .overline {
  display: block;
  font-size: var(--fs-klein);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: var(--raum-2);
}

.hero h1 {
  font-size: var(--fs-h1);
  max-width: 18em;
  color: var(--weiss);
}

.hero .lead {
  font-size: var(--fs-lead);
  color: var(--text-hell);
  max-width: 38rem;
  margin-bottom: var(--raum-4);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--raum-2);
}

/* --------------------------------------------------------------------------
   8. Karten allgemein
   -------------------------------------------------------------------------- */

.karte {
  border-radius: var(--radius-karte);
  box-shadow: var(--schatten-karte);
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--indigo);
  color: var(--text-hell);
  padding-block: var(--raum-6) var(--raum-4);
}

.footer-innen {
  display: grid;
  gap: var(--raum-4);
}

.footer-logo {
  color: var(--weiss);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.footer-logo:hover {
  color: var(--mint);
}

.footer-beschrieb {
  max-width: 24rem;
  margin-top: var(--raum-2);
}

.footer-spalte h2 {
  font-size: var(--fs-klein);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--weiss);
  margin-bottom: var(--raum-2);
}

.footer-spalte ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--raum-1);
}

.site-footer a {
  color: var(--text-hell);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--mint);
  text-decoration: underline;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-unten {
  margin-top: var(--raum-5);
  padding-top: var(--raum-3);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: var(--fs-klein);
  display: flex;
  flex-wrap: wrap;
  gap: var(--raum-2);
  justify-content: space-between;
}

.footer-rechtliches {
  display: flex;
  flex-wrap: wrap;
  gap: var(--raum-2) var(--raum-3);
}

@media (min-width: 48em) {
  .footer-innen {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--raum-5);
  }
}

/* --------------------------------------------------------------------------
   10. Standard Inhaltsseiten (index.php Fallback)
   -------------------------------------------------------------------------- */

.seiten-inhalt {
  padding-block: var(--sektion);
}

.seiten-inhalt h1 {
  font-size: var(--fs-h2);
}

.seiten-inhalt article {
  max-width: 48rem;
}

.seiten-inhalt h2 {
  font-size: 1.35rem;
  margin-top: var(--raum-4);
}

.artikel-liste article + article {
  margin-top: var(--raum-4);
  padding-top: var(--raum-4);
  border-top: 1px solid var(--lavendel-hell);
}

/* --------------------------------------------------------------------------
   11. Mitgliedschaften
   -------------------------------------------------------------------------- */

.karten-raster {
  display: grid;
  gap: var(--raum-3);
}

@media (min-width: 56em) {
  .karten-raster {
    grid-template-columns: 1fr 1fr;
    gap: var(--raum-4);
    align-items: start;
  }
}

.karte-mitglied,
.karte-goenner {
  padding: var(--raum-4);
}

/* Karte Mitglied, helle Himmel Fläche mit Indigo Text */
.karte-mitglied {
  background: var(--himmel-hell);
  color: var(--text);
}

/* Karte Gönnerin oder Gönner, Indigo mit Mint Rahmen als Hervorhebung */
.karte-goenner {
  background: var(--indigo);
  border: 2px solid var(--mint);
  color: var(--text-hell);
}

.karte-mitglied h3 {
  color: var(--indigo);
  font-size: var(--fs-h3);
  margin-bottom: var(--raum-2);
}

.karte-goenner h3 {
  color: var(--weiss);
  font-size: var(--fs-h3);
  margin-bottom: var(--raum-2);
}

.preis {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--raum-3);
  color: var(--indigo);
}

.karte-goenner .preis {
  color: var(--weiss);
}

.preis-zusatz {
  display: block;
  font-size: var(--fs-klein);
  font-weight: 500;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.karten-intro {
  margin-bottom: var(--raum-3);
  font-size: var(--fs-klein);
  opacity: 0.92;
}

.vorteile {
  list-style: none;
  margin: 0 0 var(--raum-3);
  padding: 0;
  display: grid;
  gap: var(--raum-1);
}

.vorteile li {
  position: relative;
  padding-left: 1.75rem;
}

.vorteile li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.karte-mitglied .vorteile li::before {
  color: var(--himmel-dunkel);
}

.karte-goenner .vorteile li::before {
  color: var(--mint);
}

.karten-button {
  width: 100%;
}

.karten-hinweis {
  margin: var(--raum-3) 0 0;
  font-size: var(--fs-klein);
  opacity: 0.85;
}

/* Webling Formular auf den Anmeldeseiten an das Design anpassen */
.webling-form {
  max-width: 34rem;
  margin-top: var(--raum-4);
}

.webling-form .webling-form__group {
  margin-bottom: var(--raum-2);
}

.webling-form .webling-form__label {
  display: block;
  font-size: var(--fs-klein);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.webling-form input[type="text"],
.webling-form input[type="email"],
.webling-form input[type="tel"],
.webling-form input[type="number"],
.webling-form input[type="date"],
.webling-form select,
.webling-form textarea {
  width: 100%;
  padding: 0.6em 0.8em;
  border: 1px solid rgba(16, 0, 139, 0.3);
  border-radius: var(--radius-button);
  font-family: inherit;
  font-size: var(--fs-body);
  background: var(--weiss);
  color: var(--text);
}

.webling-form__submit {
  display: inline-block;
  padding: 0.8em 1.6em;
  border: 0;
  border-radius: var(--radius-button);
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 600;
  cursor: pointer;
  background: var(--indigo);
  color: var(--weiss);
  transition: background-color 0.2s ease;
}

.webling-form__submit:hover {
  background: var(--indigo-tief);
}

/* --------------------------------------------------------------------------
   12. Agenda
   -------------------------------------------------------------------------- */

.agenda {
  background: var(--himmel-hell);
}

.event-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--raum-3);
}

.event {
  display: flex;
  gap: var(--raum-3);
  align-items: flex-start;
  background: var(--weiss);
  border-radius: var(--radius-karte);
  box-shadow: var(--schatten-karte);
  padding: var(--raum-3);
}

.event-datumsbox {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  padding: var(--raum-2) var(--raum-1);
  background: var(--lavendel-hell);
  color: var(--indigo);
  border-radius: var(--radius-karte);
  text-align: center;
}

.event-tag {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.event-monat {
  font-size: var(--fs-klein);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-inhalt {
  flex: 1 1 auto;
  min-width: 0;
}

.event-titelzeile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--raum-1) var(--raum-2);
  margin-bottom: var(--raum-1);
}

.event-titel {
  font-size: var(--fs-h3);
  margin: 0;
}

.event-meta {
  list-style: none;
  margin: 0 0 var(--raum-2);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--raum-1) var(--raum-3);
  font-size: var(--fs-klein);
  color: var(--himmel-dunkel);
  font-weight: 600;
}

.event-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.event-beschrieb p:last-child {
  margin-bottom: 0;
}

.event-link {
  margin: var(--raum-2) 0 0;
  font-weight: 600;
}

.agenda-aktion {
  margin-top: var(--raum-4);
  text-align: center;
}

.agenda-leer {
  font-size: var(--fs-lead);
}

@media (max-width: 30em) {
  .event {
    flex-direction: column;
  }

  .event-datumsbox {
    flex-direction: row;
    gap: 0.4rem;
    width: auto;
    padding: 0.4rem var(--raum-2);
  }
}

/* --------------------------------------------------------------------------
   13. News
   -------------------------------------------------------------------------- */

.news-raster {
  display: grid;
  gap: var(--raum-3);
}

@media (min-width: 40em) {
  .news-raster {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-karte {
  background: var(--weiss);
  border: 1px solid var(--lavendel-hell);
  display: flex;
  flex-direction: column;
}

.news-bild {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--lavendel-hell), var(--himmel-hell));
  color: var(--indigo);
}

.news-karte:nth-child(2) .news-bild {
  background: linear-gradient(135deg, var(--himmel-hell), #E9FFF8);
}

.news-karte:nth-child(3) .news-bild {
  background: linear-gradient(135deg, #FFF4E3, var(--lavendel-hell));
}

.news-icon {
  width: 40px;
  height: 40px;
}

.news-text {
  padding: var(--raum-3);
}

.news-text h3 {
  font-size: 1.1rem;
  margin-bottom: var(--raum-1);
}

.news-text p {
  margin: 0;
  font-size: var(--fs-klein);
}

.news-aktion {
  margin-top: var(--raum-4);
  text-align: center;
}

.instagram-feed {
  margin-top: var(--raum-2);
}

/* --------------------------------------------------------------------------
   14. Über den Verein
   -------------------------------------------------------------------------- */

.verein-text {
  max-width: 44rem;
}

.verein-text p {
  margin-bottom: var(--raum-3);
}

.statuten-link {
  margin: var(--raum-2) 0 0;
}

/* --------------------------------------------------------------------------
   15. Vorstand
   -------------------------------------------------------------------------- */

.vorstand {
  background: var(--lavendel-hell);
}

.vorstand-raster {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--raum-3);
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
}

@media (min-width: 48em) {
  .vorstand-raster {
    grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  }
}

.vorstand-karte {
  background: var(--weiss);
  border-radius: var(--radius-karte);
  box-shadow: var(--schatten-karte);
  padding: var(--raum-3);
  text-align: center;
}

.vorstand-foto img,
.vorstand-initialen {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: var(--raum-2);
}

.vorstand-foto img {
  object-fit: cover;
  display: block;
}

.vorstand-initialen {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lavendel);
  color: var(--indigo);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Farbrotation der Initialen Kreise */
.vorstand-karte:nth-child(4n+2) .vorstand-initialen {
  background: var(--himmel);
}

.vorstand-karte:nth-child(4n+3) .vorstand-initialen {
  background: var(--apricot);
}

.vorstand-karte:nth-child(4n) .vorstand-initialen {
  background: var(--mint);
}

.vorstand-name {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.vorstand-funktion {
  margin: 0;
  font-size: var(--fs-klein);
  font-weight: 600;
  color: var(--himmel-dunkel);
}

/* --------------------------------------------------------------------------
   16. Gönner Logos
   -------------------------------------------------------------------------- */

.goenner-raster {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--raum-3);
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
}

@media (min-width: 48em) {
  .goenner-raster {
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  }
}

.goenner-karte {
  background: var(--weiss);
  border: 1px solid var(--lavendel-hell);
  border-radius: var(--radius-karte);
  padding: var(--raum-3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  text-align: center;
}

.goenner-karte a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.goenner-logo img {
  max-height: 4.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
}

.goenner-name {
  font-weight: 700;
  color: var(--indigo);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   17. Festival Verweis
   -------------------------------------------------------------------------- */

.festival {
  background: linear-gradient(120deg, var(--lavendel) 0%, var(--himmel) 55%, var(--mint) 115%);
  color: var(--indigo);
}

.festival-innen {
  text-align: center;
  max-width: 44rem;
}

.festival .overline {
  display: block;
  font-size: var(--fs-klein);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: var(--raum-2);
}

.festival h2 {
  font-size: var(--fs-h2);
  color: var(--indigo);
}

.festival-text {
  color: var(--indigo);
  opacity: 0.85;
  margin-bottom: var(--raum-4);
}
