/* ═══════════════════════════════════════════════
   RMTV Banners — RadioMayabTV
   Rotating header ads + main banner
   ═══════════════════════════════════════════════ */

/* ─── Rotating Carousel (Header Ads) ─────────── */
.rmtv-carousel {
    position: relative;
    width: 728px;
    max-width: 100%;
    height: 90px;
    overflow: hidden;
    margin-left: auto;
    margin-right: 0;
}

.rmtv-carousel .rmtv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.rmtv-carousel .rmtv-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.rmtv-carousel .rmtv-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.rmtv-carousel .rmtv-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Carousel Navigation Dots ───────────────── */
.rmtv-carousel-dots {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.rmtv-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.rmtv-carousel-dot.active {
    background: #ff6f00;
    border-color: #ff6f00;
}

/* ─── Main Banner RMTV ────────────────────────── */
.rmtv-banner-principal-wrapper {
    margin-bottom: 25px;
}

.rmtv-banner-principal-wrapper .rmtv-banner-principal-link {
    display: block;
}

.rmtv-banner-principal-wrapper .rmtv-banner-principal-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ─── Top Bar — Slim & Professional ──────────── */
.mg-head-detail {
    padding: 2px 0 !important;
    font-size: 12px;
}
.mg-head-detail .info-left li {
    line-height: 24px !important;
    font-size: 12px;
}
.mg-head-detail .info-left li span.time {
    line-height: 24px !important;
    font-size: 11px !important;
    padding: 1px 4px !important;
    background-color: #ff6f00;
    color: #fff;
    border-radius: 2px;
}
.mg-head-detail .info-left i,
.mg-head-detail .info-right i {
    font-size: 12px !important;
}
.mg-head-detail .info-right li a {
    font-size: 12px !important;
}
.mg-head-detail .info-left li a {
    font-size: 12px !important;
}

/* ─── Top Bar Clock ───────────────────────────── */
#time {
    font-weight: 500;
    margin-left: 2px;
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .rmtv-carousel {
        width: 100%;
        height: auto;
        aspect-ratio: 728 / 90;
    }
    .rmtv-carousel-dot {
        width: 6px;
        height: 6px;
    }
}
