/* ================================================
   Azubi fIT-Programm – Zusätzliche Styles
   passend zum Design der Website seminar-dozentin.de
   ================================================

   WIEDERVERWENDETE KLASSEN aus style.css:
   - .section, .section-cream      → Abschnittsabstände & Hintergründe
   - .content-block               → Content-Container mit max-width
   - .page-hero, .page-hero-copy  → Hero-Bereich (bereits im HTML)
   - .eyebrow                     → Label über der Überschrift
   - .hero-lead                   → Lead-Text Formatierung
   - .button                      → CTA-Button
   - .site-footer, .brand-footer  → Fußzeile
   - .brand, .brand-mark, .brand-copy → Logo-Styles

   NEUE KLASSEN (in dieser Datei definiert):
   - .luecken-grid               → Grid-Layout für 5 Praxis-Lücken
   - .luecken-card               → Einzelne Lücken-Karte
   - .luecken-nummer             → Nummern 01–05
   - .stats-programm             → Stats-Box "Programm im Überblick"
   - .stats-programm-titel       → Titel der Stats-Box
   - .stats-programm-grid        → Grid für die Stats-Zahlen
   - .stats-item                 → Einzelne Stat-Zeile
   - .stats-zahl                 → Große Zahl (z.B. "5–7")
   - .stats-label                → Label darunter
   - .zitat-grid                 → Grid für Zitate
   - .azubi-zitat                → Zitat-Karte
   - .azubi-zitat-mark           → Anführungszeichen-Symbol

   ================================================ */

/* --- Grid für die 5 Praxis-Lücken --- */
.luecken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

/* --- Einzelne Lücken-Karte --- */
.luecken-card {
  padding: 1.75rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}

.luecken-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(23, 35, 66, .12);
}

/* --- Nummer 01, 02, ... --- */
.luecken-nummer {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
}

/* --- Überschrift der Karte --- */
.luecken-card h3 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -.02em;
}

/* --- Beschreibungstext --- */
.luecken-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* --- Stats-Box "Programm im Überblick" --- */
.stats-programm {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats-programm-titel {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: 1.5rem;
  text-align: center;
  color: var(--blue);
}

.stats-programm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.stats-zahl {
  display: block;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.stats-label {
  display: block;
  margin-top: .5rem;
  color: var(--muted);
  font-size: .9rem;
}

/* --- Zitat-Grid --- */
.zitat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* --- Einzelne Zitat-Karte --- */
.azubi-zitat {
  position: relative;
  margin: 0;
  padding: 2rem 2rem 2rem 3.5rem;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(23, 35, 66, .06);
}

/* --- Anführungszeichen --- */
.azubi-zitat-mark {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 3.5rem;
  line-height: 1;
}

.azubi-zitat p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

/* ================================================
   Responsive Anpassungen
   ================================================ */

@media (max-width: 900px) {
  .stats-programm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 760px) {
  .luecken-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-programm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-zahl {
    font-size: 2.2rem;
  }
  
  .zitat-grid {
    grid-template-columns: 1fr;
  }
}