/* ================================================================
   FÖRDERVEREIN
   ================================================================ */

/* ── Header ── */
.fv-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3.5rem 0 1.5rem;
    position: relative;
}
.fv-header__title {
    color: #fff;
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 0.25rem;
}
.fv-header__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ── Content ── */
.fv-content {
    padding: 2.5rem 0 3rem;
}
.fv-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.75;
}

/* ── Benefits ── */
.fv-benefits-title {
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.benefit-item__icon {
    width: 32px;
    height: 32px;
    background: #ebf4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight-color);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.benefit-item__text {
    font-size: 0.95rem;
}
.benefit-item__text strong {
    display: block;
    margin-bottom: 0.1rem;
}

/* ── Einmalspende ── */
.fv-divider {
    margin: 2rem 0 1.5rem;
    border-color: #e2e8f0;
}
.fv-spende-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.fv-spende-title i {
    color: var(--highlight-color);
}
.fv-spende-box {
    background: #fff;
    border: 2px dashed var(--highlight-color);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
}
.fv-spende-box__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.fv-spende-box__iban {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
}
.fv-spende-box__bank {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* ── Info Card ── */
.info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}
.info-card__header {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
}
.info-card__section {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}
.info-card__section:last-child {
    border-bottom: none;
}
.info-card__section h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.info-card__section p {
    margin-bottom: 0;
    font-size: 0.95rem;
}
.info-card__highlight {
    font-size: 1.3rem !important;
    font-weight: 800;
    color: var(--highlight-color);
}
.info-card__iban {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1rem !important;
    letter-spacing: 0.05em;
}
.info-card__bank-detail {
    font-size: 0.85rem !important;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* ── CTA ── */
.cta-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}
.cta-section h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .fv-header__title {
        font-size: 1.8rem;
    }
}
