/**
 * ==========================================================================
 * MultiPress Editor's Pick Enterprise Magazine
 * ==========================================================================
 */

.mp-editors{
    margin:70px 0;
    background:#111;
    color:#fff;
    padding:36px;
    border-radius:18px;
    overflow:hidden;
    position:relative;
}

.mp-editors::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,rgba(201,169,97,.10),transparent 40%);
    pointer-events:none;
}

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

.mp-editors__header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
    border-bottom:1px solid rgba(255,255,255,.08);
    padding-bottom:18px;
}

.mp-editors__title{
    background:linear-gradient(135deg,#c9a961,#e6c87f);
    color:#111;
    padding:14px 38px;
    border-radius:12px;
    font-size:28px;
    font-weight:700;
}

.mp-editors__more{
    color:#e6c87f;
    text-decoration:none;
    font-weight:700;
}

.mp-editors__more:hover{
    color:#fff;
}

/*==================================================
HERO
==================================================*/

.mp-editors__hero{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    margin-bottom:40px;
}

.mp-editors-featured{
    background:#1a1a1a;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.mp-editors-featured__image{
    position:relative;
    display:block;
}

.mp-editors-featured__image img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    transition:.4s;
}

.mp-editors-featured:hover img{
    transform:scale(1.05);
}

.mp-editors-featured__badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#c9a961;
    color:#111;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
}

.mp-editors-featured__content{
    padding:30px;
}

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

.mp-editors-featured h3 a{
    color:#fff;
    text-decoration:none;
}

.mp-editors-featured h3 a:hover{
    color:#e6c87f;
}

.mp-editors-featured p{
    color:#cfcfcf;
    line-height:1.8;
}

.mp-editors-featured__meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:22px;
    color:#999;
    font-size:.9rem;
}

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

.mp-editors-sidebar{
    background:#1a1a1a;
    border-radius:16px;
    padding:24px;
}

.mp-editors-sidebar h3{
    margin:0 0 20px;
    color:#e6c87f;
}

.mp-editors-note{
    display:flex;
    gap:14px;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mp-editors-note:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.mp-editors-note__thumb{
    width:110px;
    flex-shrink:0;
    border-radius:10px;
    overflow:hidden;
}

.mp-editors-note__thumb img{
    width:100%;
    height:80px;
    object-fit:cover;
}

.mp-editors-note h4{
    margin:0 0 8px;
    font-size:1rem;
    line-height:1.4;
}

.mp-editors-note h4 a{
    color:#fff;
    text-decoration:none;
}

.mp-editors-note h4 a:hover{
    color:#e6c87f;
}

.mp-editors-note span{
    color:#999;
    font-size:.82rem;
}

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

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

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

.mp-editors-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.mp-editors-card{
    background:#1d1d1d;
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    overflow:hidden;
    transition:.3s;
}

.mp-editors-card:hover{
    transform:translateY(-6px);
    border-color:#c9a961;
}

.mp-editors-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

.mp-editors-card__content{
    padding:20px;
}

.mp-editors-card__label{
    display:inline-block;
    background:#c9a961;
    color:#111;
    padding:5px 12px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
    margin-bottom:14px;
}

.mp-editors-card h4{
    margin:0 0 14px;
    font-size:1.05rem;
    line-height:1.45;
}

.mp-editors-card h4 a{
    color:#fff;
    text-decoration:none;
}

.mp-editors-card h4 a:hover{
    color:#e6c87f;
}

.mp-editors-card__meta{
    display:flex;
    justify-content:space-between;
    color:#999;
    font-size:.82rem;
}

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

.mp-editors-footer{
    margin-top:42px;
    text-align:center;
}

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

@media(max-width:1200px){

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

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

}

@media(max-width:768px){

    .mp-editors{
        padding:22px;
    }

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

    .mp-editors-featured h3{
        font-size:1.6rem;
    }

    .mp-editors__title{
        font-size:22px;
        padding:12px 24px;
    }

}
