
/* =========================
   MEDIA TALK AFRICA SLIDER
   BRAND SYSTEM (RED / GREEN / YELLOW / BLACK)
========================= */

.mta-bbc-slider{
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:20px;
    margin-bottom:30px;
}

/* =========================
   HERO SECTION
========================= */

.mta-bbc-hero{
    position:relative;
    border-radius:14px;
    overflow:hidden;
    background:#000000;
}

.mta-bbc-hero a{
    display:block;
    color:#ffffff;
    text-decoration:none;
}

/* HERO IMAGE */
.mta-bbc-hero-image{
    width:100%;
    aspect-ratio:16/9;
    background:#111;
}

.mta-bbc-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* HERO OVERLAY */
.mta-bbc-hero-content{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:24px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.60),
        transparent
    );
}

/* HERO TITLE */
.mta-bbc-hero-content h1{
    font-size:28px;
    line-height:1.2;
    margin:0 0 10px;
    font-weight:700;
    color:#ffffff;
}

/* RED BRAND ACCENT UNDER TITLE */
.mta-bbc-hero-content h1::after{
    content:"";
    display:block;
    width:65px;
    height:3px;
    background:#e10600; /* RED BRAND */
    margin-top:10px;
    border-radius:2px;
}

/* HERO DESCRIPTION */
.mta-bbc-hero-content p{
    font-size:14px;
    margin:0;
    color:rgba(255,255,255,0.88);
}

/* =========================
   SIDE CARDS
========================= */

.mta-bbc-side{
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* CARD BASE */
.mta-bbc-card{
    display:flex;
    gap:12px;
    background:#ffffff;
    border-radius:10px;
    overflow:hidden;

    box-shadow:0 2px 10px rgba(0,0,0,0.06);
    border-left:3px solid #f5c518; /* YELLOW accent */
    transition: all 0.2s ease;
}

.mta-bbc-card:hover{
    transform: translateY(-2px);
    box-shadow:0 6px 18px rgba(0,0,0,0.12);
    border-left-color:#e10600; /* RED on hover */
}

/* CARD LINK */
.mta-bbc-card a{
    display:flex;
    gap:12px;
    text-decoration:none;
    color:#111111;
    width:100%;
}

/* IMAGE */
.mta-bbc-card-image{
    width:92px;
    flex-shrink:0;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#e9eef3;
}

.mta-bbc-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* CONTENT */
.mta-bbc-card-content{
    padding:8px 10px;
}

/* TITLE */
.mta-bbc-card-content h3{
    font-size:14px;
    margin:0 0 6px;
    line-height:1.35;
    color:#111111;
    font-weight:600;
}

/* META (GREEN BRAND = freshness / trust) */
.mta-bbc-card-content span{
    font-size:11px;
    color:#2e7d32; /* GREEN */
}

/* =========================
   OPTIONAL BADGE SYSTEM
========================= */

.mta-badge-breaking{
    display:inline-block;
    font-size:10px;
    padding:3px 6px;
    border-radius:3px;
    background:#e10600; /* RED */
    color:#fff;
    margin-bottom:8px;
}

.mta-badge-trending{
    display:inline-block;
    font-size:10px;
    padding:3px 6px;
    border-radius:3px;
    background:#f5c518; /* YELLOW */
    color:#111;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px){

    .mta-bbc-slider{
        grid-template-columns:1fr;
    }

    .mta-bbc-hero-content h1{
        font-size:20px;
    }

    .mta-bbc-card-image{
        width:80px;
    }
}