/**
 * ============================================================================
 * ACCORDION CSS - Native (ohne jQuery UI)
 * Version: 1.2
 * ============================================================================
 * 
 * CHANGELOG v1.2:
 * - FIX: Keine eigenen Pfeile (main.css hat bereits Pfeile)
 * - DESIGN: Bronze Hintergrund für Antworten (wie vorher)
 * 
 * ============================================================================
 */

/* ==========================================================================
   CONTENT (Antwort) - Bronze Hintergrund nur wenn offen
   ========================================================================== */

.accordion .accitem {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, background-color 0.2s ease;
    background-color: transparent;
    padding: 0;
    border: none;
}

.accordion .accitem.is-open {
    background-color: #c3ad8d;
}

.accordion .accitem > div,
.accordion .accitem > [itemprop="text"] {
    padding: 1.25rem;
}

.accordion .accitem p {
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.accordion .accitem p:last-child {
    margin-bottom: 0;
}

.accordion .accitem strong {
    color: #ffffff;
    font-weight: 600;
}

.accordion .accitem a {
    color: #ffffff;
    text-decoration: underline;
}

.accordion .accitem a:hover {
    text-decoration: none;
}

/* ==========================================================================
   ACCESSIBILITY: Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .accordion .accitem {
        transition: none;
    }
}

/* ==========================================================================
   END ACCORDION CSS
   ========================================================================== */