.announcement-banner {
    width: 100%;
    background: linear-gradient(90deg, #EDF4FF 0%, #FDECF6 30%, #FFF5E9 65%, #F0FBF4 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-text {
    font-family: 'Manrope', sans-serif; 
    font-size: 14px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-text i {
    color: #f59e0b;
    font-size: 18px;
}

.cta-link {
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 2px;
}

@media (max-width: 480px) {
    .announcement-banner {
        padding: 8px 10px; 
    }

    .banner-text {
        font-size: 12px; 
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
        line-height: 1.4;
    }

    .banner-text i {
        font-size: 16px;
    }

    .cta-link {
        display: inline-block;
        margin-top: 2px;
    }
}