/* ====================================
   ANNOUNCEMENT BAR - Site-wide
   ==================================== */

.announcement-bar {
    width: 100%;
    height: 40px;
    background-color: #2DD4BF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
    transition: background-color 0.2s ease;
}

.announcement-bar.hidden {
    display: none;
}

.announcement-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #0A1F3D;
    font-size: 15px;
    font-weight: 500;
    padding: 0 60px;
    text-align: center;
    transition: background-color 0.2s ease;
}

.announcement-bar a:hover {
    background-color: #5EEAD4;
}

.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: #0A1F3D;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.announcement-close:hover {
    opacity: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .announcement-bar {
        height: 56px;
        padding: 8px 0;
    }
    
    .announcement-bar a {
        font-size: 14px;
        padding: 0 48px 0 16px;
        line-height: 1.4;
    }
}
