/* Stromfee — Förder-Banner für Claw-Demos
 * Lavender-Stempel zwischen Hero und Voice-Section.
 * Verwendet in /demos/claw/{auto,build,cargo,charge,estate,fleet,gastro,grid,hotel,biogas}*.html
 * CTA-href variiert: foerderkompass-2026.html (allgemein) vs foerderkompass-logistik.html (Hub-Ranking).
 */
.foerder-banner {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #c4b5fd;
    font-family: 'Montserrat', system-ui, sans-serif;
}
.foerder-banner-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.foerder-banner-label {
    font-weight: 700;
    color: #6d28d9;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.foerder-banner-text {
    color: #1e1b4b;
    font-size: 14px;
}
.foerder-banner-cta {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
    padding: 8px 18px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    transition: filter 0.15s ease;
}
.foerder-banner-cta:hover {
    filter: brightness(1.1);
}
