/* Radio TV Promo Banner Styles */
.radiotv-promo-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.banner-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.banner-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffc107;
    width: fit-content;
}

.banner-text-wrapper h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

.banner-text-wrapper p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.banner-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
}

.highlight {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    display: flex;
    align-items: center;
}

.banner-action {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.btn-banner-primary,
.btn-banner-secondary {
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-banner-primary {
    background: #fff;
    color: #1a1a1a;
}

.btn-banner-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-banner-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-banner-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: #fff;
}

.banner-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .banner-text-wrapper h2 {
        font-size: 32px;
    }
    
    .banner-text-wrapper p {
        font-size: 16px;
    }
    
    .banner-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .radiotv-promo-banner {
        padding: 50px 0;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .banner-text-wrapper h2 {
        font-size: 28px;
    }
    
    .banner-text-wrapper p {
        font-size: 14px;
    }
    
    .banner-badge {
        font-size: 12px;
    }
    
    .banner-highlights {
        grid-template-columns: 1fr;
        gap: 10px 15px;
    }
    
    .highlight {
        font-size: 13px;
    }
    
    .banner-action {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-banner-primary,
    .btn-banner-secondary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }
    
    .banner-image {
        max-width: 280px;
    }
}
