/* Feuerwehr Swisttal Alert — Frontend Banner */

#fsa-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
    animation: fsa-slide-in 0.4s ease-out;
}

@keyframes fsa-slide-in {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.fsa-banner__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
}

.fsa-banner__icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.fsa-banner__content {
    flex: 1;
    min-width: 0;
}

.fsa-banner__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.fsa-banner__desc {
    margin: 4px 0 0;
    font-size: 0.9rem;
    opacity: 0.92;
    line-height: 1.4;
}

.fsa-banner__link {
    display: inline-block;
    margin-top: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: underline;
    opacity: 0.95;
    transition: opacity 0.15s;
}

.fsa-banner__link:hover {
    opacity: 1;
}

.fsa-banner__close {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
    line-height: 1;
}

.fsa-banner__close:hover {
    background: rgba(255, 255, 255, 0.35);
}

#fsa-spacer {
    width: 100%;
    transition: height 0.3s ease-in;
}

@media (max-width: 600px) {
    .fsa-banner__icon {
        display: none;
    }

    .fsa-banner__title {
        font-size: 1rem;
    }

    .fsa-banner__inner {
        padding: 12px 14px;
    }
}
