/* Promo Bar Widget Styles */

.promo-bar-widget {
    padding: 2rem 1rem;
    width: 100%;
    border-radius: 8px;
}

.promo-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.promo-bar-content {
    flex: 1;
}

.promo-bar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.promo-bar-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.promo-bar-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

/*.promo-bar-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.promo-bar-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}*/

/* Responsive Design - Desktop */
@media (min-width: 769px) {
    .promo-bar-inner {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .promo-bar-ctas {
        flex-direction: row;
        gap: 1rem;
        width: auto;
        flex-shrink: 0;
    }

    
}
.promo-bar-btn {
    width: auto;
    text-decoration: none;
    text-align: center;
}

/* Background Color Classes */
.bg-white {
    background-color: #ffffff;
}

.bg-lightblue {
    background-color: #00b2eb;
}

.bg-purple {
    background-color: #dcbdff;
}

.bg-navy {
    background-color: #1e3268;
}

.bg-yellow {
    background-color: #ffd255;
}

/* Text Color Classes */
.text-white {
    color: #ffffff;
}

.text-navy {
    color: #1e3268;
}

/* Note: Button classes (btn-primary, btn-cta-white, btn-cta-yellow) are defined in site.css */

