/* ============================================================
   WEBFONTS (selbst gehostet, OFL-Lizenz)
   Umschalten: --font-heading in :root ändern
   ============================================================ */

/* Raleway 400 */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Raleway-Regular-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Raleway-Regular-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Raleway 600 */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Raleway-SemiBold-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Raleway-SemiBold-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Raleway 700 */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Raleway-Bold-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Raleway-Bold-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-brand:        #8B4A49;   /* Weinrot, Überschriften */
  --color-brand-light:  #C08B8A;   /* Altrosa, Akzente */
  --color-bg:           #FAF7F2;   /* warmes Cremeweiß */
  --color-bg-subtle:    #F0EBE3;   /* leicht abgesetzt */
  --color-text:         #1C1C1C;   /* fast Schwarz */
  --color-text-muted:   #5A5A5A;
  --color-white:        #FFFFFF;

  --font-heading: 'Raleway', Arial, sans-serif;
  --font-body: Arial, -apple-system, sans-serif;

  --nav-height:         88px;
  --container-max:      1100px;

  --space-s:  1rem;
  --space-m:  2rem;
  --space-l:  2rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

a {
  color: var(--color-brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-m);
}

main {
  padding-top: var(--nav-height);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid var(--color-bg-subtle);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-m);
  height: 100%;
}

.nav-logo {
  padding-top: 12px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 68px;
  width: auto;
}

/* --- Desktop Menu --- */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}

.nav-menu > li > a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-brand);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu > li > a:hover {
  color: var(--color-brand-light);
}

/* --- Dropdown --- */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-bg-subtle);
  transition: background 0.2s, color 0.2s;
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  background: var(--color-bg);
  color: var(--color-brand);
}

/* --- Burger Button --- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  width: 100%;
  aspect-ratio: 7 / 2;
  overflow: hidden;
}

.hero--home {
  aspect-ratio: 17 / 4;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ============================================================
   SECTIONS ALLGEMEIN
   ============================================================ */
.section {
  padding: var(--space-l) 0;
}

.archiv-liste {
  list-style: none;
  padding-left: 1.5rem;
}

.archiv-liste li {
  border-bottom: 1px solid var(--color-bg-subtle);
}

.archiv-liste li:last-child {
  border-bottom: none;
}

.archiv-liste li a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
  transition: color 0.2s;
}

.archiv-liste li a:hover {
  color: var(--color-brand-light);
}

.text-content p {
  margin-bottom: var(--space-s);
  line-height: 1.7;
}

.text-content p:last-child {
  margin-bottom: 0;
}

.section--subtle {
  background: var(--color-bg-subtle);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: var(--space-m);
}
.section-title--spaced {
  margin-top: var(--space-l);
}

/* ============================================================
   NÄCHSTES KONZERT
   ============================================================ */
.konzert-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-m);
  align-items: start;
}

.konzert-plakat {
  max-height: 360px;
  width: auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ============================================================
   KONZERTVORSCHAU
   ============================================================ */
.konzertvorschau-tabelle {
  width: 100%;
  border-collapse: collapse;
}

.konzert-datum  { font-size: 1rem; }
.konzert-uhrzeit { font-size: 1rem; margin-top: 4px; color: var(--color-text-muted); }

/* ============================================================
   DER CHOR
   ============================================================ */
.chor-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-m);
  align-items: start;
}

.chor-foto {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
}

.chor-text p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-s);
}

/* ============================================================
   CHORLEITUNG
   ============================================================ */
.chorleitung-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-m);
  align-items: start;
}

.chorleitung-foto {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.chorleitung-text p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-s);
}

/* ============================================================
   CHORLEITUNG — UNTERSEITE
   ============================================================ */
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-top: -1rem;
  margin-bottom: var(--space-m);
}

.foto-credit {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: left;
  margin-top: 0.4rem;
}

.presse-links {
  margin-top: var(--space-s);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.presse-links a {
  font-size: 0.9rem;
}

.presse-credit {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.dirigenten-liste {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.dirigent {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-m);
  align-items: start;
  padding-bottom: var(--space-m);
  border-bottom: 1px solid var(--color-bg);
}

.dirigent:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dirigent-foto {
  width: 100%;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.dirigent-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dirigent-info strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text);
}

.dirigent-info span {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ============================================================
   CHORNACHRICHTEN
   ============================================================ */
.nachrichten-galerie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: var(--space-s) 0;
}

.nachrichten-galerie img {
  height: 180px;
  width: auto;
  object-fit: cover;
}

/* ============================================================
   KALENDER ABONNIEREN
   ============================================================ */
.kalender-anleitung {
  margin-bottom: var(--space-m);
}

.kalender-anleitung h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-brand);
  margin-bottom: 0.5rem;
}

.kalender-anleitung ol,
.kalender-anleitung ul {
  padding-left: 1.5rem;
  line-height: 1.9;
}

/* ============================================================
   CHRONIK
   ============================================================ */
.chronik-programmtitel {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 0.2rem;
}

.chronik-inhalt {
  line-height: 1.7;
}

.chronik-inhalt h2.section-title {
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 2px solid var(--color-brand);
}

.chronik-inhalt h2.section-title:first-child {
  margin-top: 0;
  border-top: none;
}

.chronik-trenner {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.5rem 0;
}

.chronik-inhalt b {
  font-family: var(--font-heading);
  font-weight: 700;
}

.chronik-inhalt .nachrichten-galerie {
  margin: 0.75rem 0;
}

/* ============================================================
   PRESSE
   ============================================================ */
.presse-gruppe-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.5rem 0 0.5rem;
}

.presse-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.presse-highlight {
  border-left: 3px solid var(--color-brand);
  padding-left: 1rem;
}

.presse-highlight blockquote {
  margin: 0 0 0.35rem 0;
  font-style: italic;
  line-height: 1.6;
}

.presse-highlight a {
  font-size: 0.85rem;
  display: block;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  align-items: start;
}

.kontakt-foto {
  margin: 0 0 1rem 0;
  display: inline-block;
  max-width: 100%;
}

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

.kontakt-foto figcaption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
}

.kontakt-personen {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.kontakt-personen li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.kontakt-personen li:last-child {
  border-bottom: none;
}

.spenden-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0,0,0,0.04);
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   WECHSELRAHMEN
   ============================================================ */
.wechselrahmen {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-bg-subtle);
  max-width: 580px;
  margin: var(--space-l) auto 0;
}

.wechselrahmen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.wechselrahmen img.aktiv {
  opacity: 1;
}

.kontakt-formular h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kontakt-form label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

.kontakt-form input[type="email"],
.kontakt-form input[type="text"],
.kontakt-form textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #ffffff;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.kontakt-form textarea {
  resize: vertical;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: 2px solid var(--color-brand);
  outline-offset: 1px;
}

.kontakt-form-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.kontakt-form-buttons button {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.kontakt-form-buttons button[type="submit"] {
  background: var(--color-brand);
  color: #fff;
}

.kontakt-form-buttons button[type="reset"] {
  background: transparent;
  color: var(--color-brand);
  border: 1px solid var(--color-brand);
}

.kontakt-form-buttons button:hover {
  opacity: 0.8;
}

.form-hinweis {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROBENPLAN
   ============================================================ */
.probenplan-wrapper {
  overflow-x: auto;
  margin-bottom: var(--space-m);
}

.probenplan-tabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.probenplan-tabelle th,
.probenplan-tabelle td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.probenplan-tabelle th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-brand);
  white-space: nowrap;
}

.probenplan-tabelle tr:last-child td {
  border-bottom: none;
}

.probenplan-tabelle tbody tr:hover {
  background: rgba(0,0,0,0.03);
}

.probenplan-tabelle tr.probenplan-info td {
  background: #f0ead8;
  font-weight: 600;
  font-style: italic;
  color: var(--color-text);
  border-bottom: none;
}

@media (max-width: 600px) {
  .probenplan-wrapper {
    overflow-x: visible;
  }

  .probenplan-tabelle thead {
    display: none;
  }

  .probenplan-tabelle,
  .probenplan-tabelle tbody,
  .probenplan-tabelle td {
    display: block;
    width: 100%;
  }

  .probenplan-tabelle tbody tr {
    display: grid;
    grid-template-columns: 2fr 3fr;
    border-bottom: 2px solid var(--color-border);
    padding: 0.6rem 0;
    margin-bottom: 0.25rem;
  }

  /* Wann | Uhrzeit  →  Was | Repertoire  →  Wo (full width) */
  .probenplan-tabelle td:nth-child(3) { grid-column: 1; grid-row: 2; }
  .probenplan-tabelle td:nth-child(4) { grid-column: 1 / -1; grid-row: 3; }
  .probenplan-tabelle td:nth-child(5) { grid-column: 2; grid-row: 2; }

  .probenplan-tabelle tbody tr:last-child {
    border-bottom: none;
  }

  .probenplan-tabelle td {
    border-bottom: none;
    padding: 0.15rem 0;
  }

  .probenplan-tabelle td::before {
    content: attr(data-label);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 0.05rem;
  }

  .probenplan-tabelle td:empty {
    display: none;
  }

  .probenplan-tabelle tr.probenplan-info {
    border-bottom: none;
  }

  .probenplan-tabelle tr.probenplan-info td {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 0.5rem 0.75rem;
    border-radius: 3px;
  }

  .probenplan-tabelle tr.probenplan-info td::before {
    display: none;
  }

  /* Datum fett + alternierende Hintergründe */
  .probenplan-tabelle td:nth-child(1) {
    font-weight: 700;
  }

  .probenplan-tabelle tbody tr:nth-child(even):not(.probenplan-info) {
    background: rgba(240, 235, 227, 0.9);
  }
}

.probenplan-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-m);
}

.probenplan-buttons button {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  background: var(--color-brand);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.probenplan-buttons button:hover {
  opacity: 0.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-m) 0;
  text-align: right;
}

.site-footer a {
  color: var(--color-bg);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE — TABLET (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  .nav-burger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    bottom: 0;
    width: 240px;
    z-index: 9999;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-m);
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--color-bg-subtle);
  }

  .nav-menu > li > a {
    padding: 0.9rem 0;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Pfeil-Indikator bei Dropdown-Eltern */
  .has-dropdown > a::after {
    content: '›';
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.2s;
  }

  .has-dropdown.open > a::after {
    transform: rotate(90deg);
  }

  /* Dropdowns auf Mobile: Accordion — standardmäßig versteckt */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    background: transparent;
    padding-left: var(--space-s);
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .dropdown li a {
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1rem;
    color: var(--color-text-muted);
  }

  .chorleitung-grid,
  .konzert-block,
  .chor-grid {
    grid-template-columns: 1fr;
  }

  .chorleitung-foto {
    max-width: 280px;
    margin: 0 auto;
  }

  .chor-foto {
    max-width: 100%;
    margin: 0 auto;
  }

  .konzert-plakat {
    max-height: 280px;
    margin: 0 auto;
  }

  #konzertvorschau {
    overflow-x: auto;
  }

}

/* ============================================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --space-m: 1rem;
    --space-l: 2.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .konzertvorschau-tabelle td {
    font-size: 0.9rem !important;
    padding: 6px !important;
  }

  .chorleitung-foto {
    max-width: 200px;
  }
}
