/**
 * Simple Tagline Banner
 * Full-width trust message at top
 */

/* ==========================================
   FULL-WIDTH TAGLINE BANNER
   ========================================== */

.site-tagline-banner-wrapper {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    padding: 0.625rem 1rem;
    margin-bottom: 0;
}

.site-tagline-banner {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}

.tagline-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: white;
}

.tagline-text strong {
    font-weight: 700;
}

/* ==========================================
   SIDEBAR PROMO BOX
   ========================================== */

.sidebar-promo-box {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e293b 100%);
    border-radius: 12px;
    padding: 1.25rem;
    color: white;
    text-align: left;
}

.promo-headline {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: white;
}

.promo-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0 0 1rem;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #f59e0b;
    color: #1e293b;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.promo-cta:hover {
    background: #fbbf24;
    transform: translateY(-1px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .site-tagline-banner-wrapper {
        padding: 0.5rem 0.75rem;
    }
    
    .tagline-text {
        font-size: 0.75rem;
    }
    
    .promo-headline {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .tagline-text {
        font-size: 0.6875rem;
    }
}