/* --- Top Promo Banner Styles --- */
.top-promo-banner {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6); /* Professional dark to light blue gradient */
    color: #ffffff;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 40px; /* Extra right padding so text doesn't overlap the close button */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.promo-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.promo-link:hover .promo-cta {
    color: #fcd34d; /* Changes arrow/text to amber on hover */
}

.promo-badge {
    background-color: #FFAA00 /* Attention-grabbing amber */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.promo-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-cta {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.2s ease-in-out;
}

.promo-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
    line-height: 1;
}

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

.mobile-only-promo{
    display: none;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .promo-link {
        flex-direction: column;
        gap: 6px;
    }
    
    .desk-only-promo{
        display: none;
    }
    
    .mobile-only-promo{
        display: block;
    }
    
    .promo-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .top-promo-banner {
        padding: 10px 35px 10px 15px; 
    }
}