/* =========================================================
   RK FAQ – Hilfe & Accordion  (modern, mobile-first)
   CI: #1c2539 / #ea5e20
========================================================= */

.rk-faq {
    padding: 0;
    overflow: visible;
}

/* ── Header ───────────────────────────────────────────── */

.rk-faq__header {
    padding: 24px 20px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.rk-faq__title {
    font-size: 22px;
    font-weight: 800;
    color: #1c2539;
    margin: 0 0 6px;
}

.rk-faq__subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ── Schnellnavigation ────────────────────────────────── */

.rk-faq__nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.rk-faq__nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #1c2539;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
    font-family: inherit;
}

.rk-faq__nav-btn:hover {
    background: #1c2539;
    border-color: #1c2539;
    color: #fff;
}

/* ── Sektion ──────────────────────────────────────────── */

.rk-faq__section {
    margin-bottom: 4px;
}

.rk-faq__section-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #ea5e20;
    margin: 0;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Items / Accordion ────────────────────────────────── */

.rk-faq__items {
    margin: 0;
}

.rk-faq__item {
    border-bottom: 1px solid #e5e7eb;
}

.rk-faq__item:last-child {
    border-bottom: none;
}

/* Frage — vollflächiger blauer Balken */
.rk-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: #1c2539;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    gap: 16px;
    transition: background 0.15s;
    box-sizing: border-box;
}

.rk-faq__question:hover {
    background: #243050;
}

.rk-faq__item.open .rk-faq__question {
    background: #ea5e20;
    color: #fff;
}

/* Chevron */
.rk-faq__chevron {
    flex-shrink: 0;
    color: rgba(255,255,255,0.6);
    transition: transform 0.25s ease;
}

.rk-faq__item.open .rk-faq__chevron {
    transform: rotate(180deg);
    color: #fff;
}

/* ── Antwort ──────────────────────────────────────────── */

.rk-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.rk-faq__answer p {
    margin: 0;
    padding: 18px 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #1c2539;
    border-left: 4px solid #ea5e20;
}
