/* Alle Icons standardmäßig weiß – für rot einfach text-primary Klasse verwenden */
.material-symbols-outlined {
  color: white;
}

/* ============================================================
   FANFARENZUG ILMENAU – Global Styles
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { color-scheme: dark; }

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #f1f5f9;
  min-height: 100vh;
  background-color: #1a0808;
}

::selection { background: #db0000; color: white; }

/* iOS Fix: body::before als fixer Hintergrund */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(26,8,8,0.2), rgba(26,8,8,0.35)), url('/images/background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }

/* --- CSS Variables --- */
:root {
  --primary: #db0000;
  --bg-dark: #1a0808;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.5);
  --glass-inner-glow: rgba(255,255,255,0.15);
  --glass-reflection: rgba(255,255,255,0.7);
  --radius-card: 2.5rem;
  --radius-pill: 9999px;
  --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Liquid Glass --- */
.liquid-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(40px) saturate(180%) brightness(115%);
  -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(115%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 3px rgba(255,255,255,0.7),
    inset 0 -1px 3px rgba(255,255,255,0.2),
    inset 2px 0 3px rgba(255,255,255,0.15),
    inset -2px 0 3px rgba(255,255,255,0.15),
    0 8px 32px rgba(0,0,0,0.15),
    0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.liquid-glass::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.03) 50%,
    transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.liquid-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.0) 70%,
    rgba(255,255,255,0.06) 100%);
  pointer-events: none;
  z-index: 1;
}

/* --- Glass Pill --- */
.glass-pill {
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(40px) saturate(180%) brightness(115%);
  -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(115%);
  box-shadow:
    inset 0 1px 3px rgba(255,255,255,0.7),
    inset 0 -1px 3px rgba(255,255,255,0.2),
    0 4px 16px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.glass-pill::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Standard glass-pill hover – für Nav-Links, Zurück-Buttons usw. */
.glass-pill:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(255,255,255,0.08);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.8),
    inset 0 0 25px rgba(255,255,255,0.2),
    0 25px 60px rgba(219,0,0,0.4);
}

/* Nav-Button – kein Springen, weißer Glow */
.nav-links .glass-pill:hover {
  transform: none;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.8),
    inset 0 0 20px rgba(255,255,255,0.15),
    0 8px 25px rgba(255,255,255,0.15);
  color: white;
}

/* Alle Aktions-Buttons – einheitlich roter Hover */
.btn.glass-pill:hover,
.btn-primary.glass-pill:hover,
.btn-submit.glass-pill:hover,
.card-icon-wrap.glass-pill:hover {
  background: rgba(219,0,0,0.85) !important;
  border-color: rgba(219,0,0,0.6) !important;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.3),
    0 15px 50px rgba(219,0,0,0.5) !important;
  transform: translateY(-4px) scale(1.03);
}

/* Nav-CTA Button – weißer Hover, kein Springen */
.nav-cta.glass-pill:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(219,0,0,0.85) !important;
  border-color: rgba(219,0,0,0.6) !important;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.3),
    0 15px 50px rgba(219,0,0,0.5) !important;
  color: white !important;
}

.jahr-aktiv {
  background: rgba(219,0,0,0.85) !important;
  border-color: rgba(219,0,0,0.6) !important;
  box-shadow: 0 8px 30px rgba(219,0,0,0.4) !important;
}
.red-accent-glow   { filter: drop-shadow(0 0 20px rgba(219,0,0,0.8)); }
.text-primary      { color: var(--primary); }
.text-shadow-heavy { text-shadow: 0 10px 20px rgba(0,0,0,0.9); }

.chromatic-edge {
  border-bottom: 2px solid rgba(255,255,255,0.2);
  position: relative;
}
.chromatic-edge::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,0,0,0.4), rgba(255,255,255,0.7), transparent);
}

.glass-shine {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.divider-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(to right, rgba(219,0,0,0.8), rgba(255,255,255,0.7), transparent);
}

/* --- Layout --- */
.page-wrapper {
  max-width: 90rem;
  margin: 0 auto;
  padding: 10rem 1.5rem 10rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.content-wrapper {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1.5rem 10rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.narrow-wrapper {
  max-width: 60rem;
  margin: 0 auto;
  padding: 10rem 1.5rem 10rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* --- Section Header --- */
.section-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

/* --- Cards --- */
.card {
  border-radius: var(--radius-card);
  padding: 3rem;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.card:hover { transform: translateY(-1rem); }

.card-icon-wrap {
  width: 7rem;
  height: 7rem;
  border-radius: var(--radius-pill);
  background: rgba(219,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  border: 1px solid var(--glass-border);
}

/* --- Grid helpers --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.grid-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.galerie-vorschau-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* --- Nav --- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 0.75rem 1rem;
}

.nav-outer {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-inner {
  flex: 1;
  border-radius: var(--radius-pill);
  padding: 0 2.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  box-shadow:
    inset 0 1px 3px rgba(255,255,255,0.7),
    inset 0 -1px 3px rgba(255,255,255,0.2),
    inset 2px 0 3px rgba(255,255,255,0.15),
    inset -2px 0 3px rgba(255,255,255,0.15);
  filter: drop-shadow(0 0 0px transparent);
}

.nav-inner::before,
.nav-inner::after { display: none; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 10;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.05em;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  position: relative;
  z-index: 10;
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-active { color: var(--primary) !important; }

.nav-cta {
  background: rgba(255,255,255,0.08);
  color: white !important;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.65rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.nav-mobile-menu {
  display: none;
  margin-top: 0.5rem;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 2rem;
}

.nav-mobile-inner {
  border-radius: 2rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.nav-mobile-inner a { padding: 0.5rem 0; display: block; }
.nav-mobile-inner a:hover { color: var(--primary); }

/* --- Hero --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-card {
  max-width: 100%;
  width: 100%;
  padding: 4rem 2rem;
  border-radius: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: white;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 20px rgba(0,0,0,0.9);
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(241,245,249,0.9);
  max-width: 48rem;
  line-height: 1.7;
  font-weight: 600;
  text-shadow: 0 10px 20px rgba(0,0,0,0.9);
  position: relative;
  z-index: 1;
}

.hero-badge {
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.btn {
  padding: 1.5rem 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: white;
}

.btn-primary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}

/* --- Two-col layout (text + image) --- */
.two-col {
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.two-col-text {
  flex: 1;
  min-width: 300px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.two-col-image {
  flex: 1;
  min-width: 300px;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  transition: filter 1s;
  position: relative;
}
.two-col-image:hover { filter: grayscale(0); }
.two-col-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,8,8,0.6), transparent);
}

/* --- Stat card --- */
.stat-card {
  border-radius: var(--radius-card);
  padding: 4rem 2rem;
  text-align: center;
}

.stat-value {
  font-size: 5rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 20px rgba(0,0,0,0.9);
}

.stat-label {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
}

/* --- CTA Banner --- */
.cta-banner {
  border-radius: var(--radius-card);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: rgba(219,0,0,0.25);
  filter: blur(120px);
  border-radius: 9999px;
  pointer-events: none;
}

/* --- Contact links --- */
.contact-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.5rem;
  transition: background 0.3s;
}
.contact-link:hover { background: rgba(255,255,255,0.1); }

.contact-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-pill);
  background: rgba(219,0,0,0.2);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Form --- */
.form-group { display: flex; flex-direction: column; gap: 1rem; overflow: hidden; }

.form-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.7);
}

.form-input, .form-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  outline: none;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: #64748b; }
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(219,0,0,0.2);
}
.form-textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.23,1,0.32,1), border-color 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s cubic-bezier(0.23,1,0.32,1), transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.btn-submit:hover {
  background: rgba(219,0,0,0.85);
  border-color: rgba(219,0,0,0.6);
  box-shadow: 0 10px 40px rgba(219,0,0,0.4);
  transform: translateY(-2px);
}

/* --- Event row (Termine page) --- */
.event-row {
  padding: 2.5rem 3rem;
  border-radius: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.event-row:hover { transform: translateY(-0.5rem); }

.event-divider {
  width: 2px; height: 5rem;
  background: linear-gradient(to bottom, transparent, rgba(219,0,0,0.6), transparent);
  flex-shrink: 0;
}

/* --- Gallery grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.gallery-item:hover { transform: translateY(-0.75rem) scale(1.02); }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.8s;
  display: block;
}

.gallery-item:hover img { filter: grayscale(0); }

/* --- Step row (Mitmachen) --- */
.step-row {
  padding: 2.5rem 3rem;
  border-radius: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.step-row:hover { transform: translateX(0.5rem); }

/* --- Legal page --- */
.legal-section { display: flex; flex-direction: column; gap: 1rem; }
.legal-divider { height: 1px; background: rgba(255,255,255,0.1); }

.legal-heading {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
}

.legal-text {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* --- Footer --- */
footer {
  margin-top: 8rem;
  padding: 8rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.05em;
}

.footer-desc {
  color: #94a3b8;
  max-width: 28rem;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
}

.footer-col-title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  width: fit-content;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.footer-social {
  display: flex;
  gap: 2.5rem;
}

.footer-social a {
  color: inherit;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--primary); }

/* --- Responsive --- */


/* ── Chrome Android Fixes ── */
* {
  -webkit-tap-highlight-color: transparent;
}
.btn, .glass-pill, .card, .liquid-glass {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero-buttons {
  flex-wrap: wrap;
  gap: 1rem;
}
/* ── iPad / Tablet: Hamburger ab 1280px (inkl. Querformat) ── */
@media (max-width: 1280px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-cta { display: none; }
  .nav-inner {
    padding: 0 1.5rem;
    overflow: hidden;
  }
  .nav-logo {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .nav-mobile-btn {
    flex-shrink: 0;
    margin-left: auto;
  }
}

/* ── Smartphone ── */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 1.25rem;
    gap: 0.5rem;
    overflow: hidden;
  }
  .nav-logo {
    font-size: 1rem;
    gap: 0.5rem;
    min-width: 0;
    flex-shrink: 1;
  }
  /* Logo-Text zweizeilig – kein Abschneiden */
  .nav-logo > span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .nav-mobile-btn {
    flex-shrink: 0;
    margin-left: auto;
  }

  /* Buttons nicht breiter als Container */
  .btn {
    padding: 1rem 1.75rem;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
  }
  .btn-submit {
    width: 100%;
    box-sizing: border-box;
  }

  /* Formularfelder nie breiter als Elternelement */
  input, textarea, select {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px; /* Verhindert Auto-Zoom auf iOS/Android */
  }

  /* Formular-Grid einspaltrig */
  .buchung-form-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .page-wrapper, .content-wrapper { gap: 4rem; padding-top: 8rem; padding-left: 1rem; padding-right: 1rem; max-width: 60rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .galerie-vorschau-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

  /* Fotos auf Mobile immer in Farbe – kein Hover-Effekt auf Touchscreens */
  .gallery-item img { filter: grayscale(0) !important; }
  .gallery-item:hover img { filter: grayscale(0) !important; }
  .two-col-image { filter: grayscale(0) !important; }
  .gallery-overlay { display: none !important; }

  /* Termine: Datumsblock schmaler */
  .event-date-block {
    width: 2.5rem !important;
    min-width: 2.5rem !important;
  }
  .event-date-block .day { font-size: 1.1rem !important; }
  .event-date-block .month-key { font-size: 0.55rem !important; }
}
