/**
 * ==========================================================================
 * MultiPress Enterprise International Section
 * Reuters • BBC • AP Inspired
 * ==========================================================================
 */

.mp-world{
    margin:80px 0;
    font-family:"Poppins",sans-serif;
    background:#f5f7fa;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e5e7eb;
}

/* ==========================================================================
   HEADER
========================================================================== */

.mp-world__header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 30px;
    background:linear-gradient(135deg,#0057b8,#0088cc);
    color:#fff;
}

.mp-world__title{
    margin:0;
    font-size:2rem;
    font-weight:700;
    letter-spacing:.4px;
}

.mp-world__more{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.mp-world__more:hover{
    opacity:.85;
}

/* ==========================================================================
   MAIN LAYOUT
========================================================================== */

.mp-world-dashboard{
    display:grid;
    grid-template-columns:2fr 380px;
    gap:30px;
    padding:30px;
}

/* ==========================================================================
   FEATURED
========================================================================== */

.mp-world-featured{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.mp-world-featured:hover{
    transform:translateY(-6px);
}

.mp-world-featured__image{
    position:relative;
    display:block;
    overflow:hidden;
}

.mp-world-featured__image img{
    width:100%;
    height:480px;
    object-fit:cover;
    transition:.5s;
}

.mp-world-featured:hover img{
    transform:scale(1.08);
}

.mp-world-featured__badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#0057b8;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:.72rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.mp-world-featured__content{
    padding:28px;
}

.mp-world-featured h3{
    margin:0 0 18px;
    font-size:2rem;
    line-height:1.25;
}

.mp-world-featured h3 a{
    color:#111827;
    text-decoration:none;
}

.mp-world-featured h3 a:hover{
    color:#0057b8;
}

.mp-world-featured p{
    margin:0;
    color:#4b5563;
    line-height:1.85;
    font-size:1rem;
}

.mp-world-featured__meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:22px;
    font-size:.86rem;
    color:#6b7280;
}

/* ==========================================================================
   SIDEBAR
========================================================================== */

.mp-world-sidebar,
.mp-world-desks{
    background:#fff;
    border-radius:16px;
    padding:22px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.mp-world-sidebar h3,
.mp-world-desks h3{
    margin:0 0 20px;
    font-size:1.2rem;
    color:#111827;
    border-bottom:2px solid #e5e7eb;
    padding-bottom:12px;
}

/* ==========================================================================
   REGIONAL DESKS
========================================================================== */

.mp-world-desk{
    padding:16px 0;
    border-bottom:1px solid #edf2f7;
}

.mp-world-desk:last-child{
    border-bottom:none;
}

.mp-world-desk__region{
    display:inline-block;
    padding:5px 12px;
    border-radius:30px;
    color:#fff;
    font-size:.72rem;
    font-weight:700;
    margin-bottom:10px;
}

.mp-world-desk:nth-child(2) .mp-world-desk__region{
    background:#0d9488;
}

.mp-world-desk:nth-child(3) .mp-world-desk__region{
    background:#2563eb;
}

.mp-world-desk:nth-child(4) .mp-world-desk__region{
    background:#dc2626;
}

.mp-world-desk:nth-child(5) .mp-world-desk__region{
    background:#d97706;
}

.mp-world-desk h4{
    margin:0;
    font-size:1rem;
    line-height:1.45;
}

.mp-world-desk h4 a{
    color:#111827;
    text-decoration:none;
}

.mp-world-desk h4 a:hover{
    color:#0057b8;
}

.mp-world-desk__meta{
    margin-top:8px;
    color:#6b7280;
    font-size:.82rem;
}

/* ==========================================================================
   TICKER
========================================================================== */

.mp-world-ticker{
    margin:0 30px 30px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #dbe4ee;
}

.mp-world-ticker__track{
    display:flex;
    gap:50px;
    padding:16px 28px;
    white-space:nowrap;
    animation:mpWorldTicker 28s linear infinite;
}

.mp-world-ticker__track span{
    font-weight:600;
    color:#374151;
}

@keyframes mpWorldTicker{

    from{
        transform:translateX(100%);
    }

    to{
        transform:translateX(-100%);
    }

}

/* ==========================================================================
   ADVERTISEMENT
========================================================================== */

.mp-world-ad{
    margin:0 30px 35px;
}

.mp-world-ad .widget{
    margin:0;
}

.mp-ad-placeholder{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef2f7;
    border:2px dashed #cbd5e1;
    color:#64748b;
    font-weight:600;
}

/* ==========================================================================
   GRID
========================================================================== */

.mp-world-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    padding:0 30px 35px;
}

.mp-world-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.06);
    transition:.35s;
}

.mp-world-card:hover{
    transform:translateY(-6px);
}

.mp-world-card img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
    transition:.45s;
}

.mp-world-card:hover img{
    transform:scale(1.08);
}

.mp-world-card__content{
    padding:18px;
}

.mp-world-card__label{
    display:inline-block;
    background:#0057b8;
    color:#fff;
    padding:5px 10px;
    border-radius:30px;
    font-size:.68rem;
    text-transform:uppercase;
    margin-bottom:12px;
    font-weight:700;
}

.mp-world-card h4{
    margin:0;
    font-size:1rem;
    line-height:1.45;
}

.mp-world-card h4 a{
    color:#111827;
    text-decoration:none;
}

.mp-world-card h4 a:hover{
    color:#0057b8;
}

.mp-world-card__meta{
    display:flex;
    justify-content:space-between;
    margin-top:15px;
    color:#6b7280;
    font-size:.82rem;
}

/* ==========================================================================
   FOOTER
========================================================================== */

.mp-world-footer{
    text-align:center;
    padding:0 0 40px;
}

/* ==========================================================================
   RESPONSIVE
========================================================================== */

@media(max-width:1200px){

    .mp-world-dashboard{
        grid-template-columns:1fr;
    }

    .mp-world-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .mp-world{
        margin:50px 0;
    }

    .mp-world__header{
        padding:18px;
    }

    .mp-world__title{
        font-size:1.5rem;
    }

    .mp-world-dashboard{
        padding:20px;
        gap:20px;
    }

    .mp-world-featured__image img{
        height:300px;
    }

    .mp-world-featured h3{
        font-size:1.45rem;
    }

    .mp-world-grid{
        grid-template-columns:1fr;
        padding:0 20px 25px;
    }

    .mp-world-ticker{
        margin:0 20px 25px;
    }

    .mp-world-ad{
        margin:0 20px 25px;
    }

}
