/* ============================================
   kurzwaffenausbildung.de – Ergaenzungen zu style.css
   Nur Komponenten, die der Hub nicht hat.
   ============================================ */

/* Vertrauensleiste unter dem Hero */
.trust { background: var(--bg-alt); border-top: 1px solid var(--line);
         border-bottom: 1px solid var(--line); padding: 28px 0; }
.trust ul { list-style: none; display: grid; gap: 22px;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.trust li { display: flex; align-items: center; gap: 12px;
            font-size: 0.98rem; color: var(--text-muted); }
.trust img { width: 44px; height: auto; flex: 0 0 auto; }

/* Zwei Spalten: passt / passt nicht */
.passung { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.passung > div { background: var(--bg-alt); border: 1px solid var(--line); padding: 28px; }
.passung h3 { color: var(--accent); }
.passung.nein h3 { color: var(--grey); }
.passung ul { list-style: none; }
.passung li { padding-left: 26px; position: relative; margin-bottom: 12px; }
.passung li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.passung .nein li::before { content: "\2717"; color: var(--text-muted); }

/* Kurs-Kacheln mit Bild */
.kacheln { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.kachel { background: var(--bg-alt); border: 1px solid var(--line);
          text-decoration: none; color: var(--text); display: block; transition: border-color .18s; }
.kachel:hover { border-color: var(--accent); }
.kachel img { width: 100%; height: 190px; object-fit: cover; display: block; }
.kachel .txt { padding: 18px 20px 22px; }
.kachel .txt strong { font-family: 'Oswald', Arial, sans-serif; text-transform: uppercase;
                      display: block; font-size: 1.15rem; letter-spacing: .04em; }
.kachel .txt span { color: var(--accent); font-size: .92rem; }

/* Videoblock */
.videoblock { background: #000; border: 1px solid var(--line); aspect-ratio: 16/9;
              display: flex; align-items: center; justify-content: center; text-align: center; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-family: 'Oswald', Arial, sans-serif; text-transform: uppercase;
               letter-spacing: .03em; font-size: 1.02rem; list-style: none; position: relative;
               padding-right: 34px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: -2px;
                      color: var(--accent); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { color: var(--accent); }
.faq .antwort { padding-top: 12px; color: var(--text-muted); }
.faq .antwort ul { margin: 10px 0 0 22px; }

/* Platzhalter, die vor dem Livegang verschwinden muessen */
.todo { background: var(--accent); color: #fff; padding: 2px 8px; font-weight: 700; }
.platzhalter-form { border: 2px dashed var(--accent); padding: 24px; background: var(--bg-alt); }
