/**
 * ==========================================================================
 * MultiPress Enterprise Three News Columns
 * Event | Newsbeat | Trending
 * ==========================================================================
 */

.mp-three-news{
    margin:80px 0;
    font-family:"Poppins",sans-serif;
}

.mp-three-news__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ==========================================================================
   COLUMN
========================================================================== */

.mp-three-news__column{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.35s;
}

.mp-three-news__column:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

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

.mp-three-news__header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    background:#111827;
    color:#fff;
}

.mp-three-news__header h2{
    margin:0;
    font-size:1.15rem;
    font-weight:700;
}

.mp-three-news__header a{
    color:#fff;
    text-decoration:none;
    font-size:.85rem;
    font-weight:600;
}

.mp-three-news__header a:hover{
    opacity:.8;
}

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

.mp-three-news__featured-image{
    display:block;
    overflow:hidden;
}

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

.mp-three-news__column:hover
.mp-three-news__featured-image img{
    transform:scale(1.06);
}

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

.mp-three-news__featured{
    padding:18px 22px;
}

.mp-three-news__featured h3{
    margin:0;
    font-size:1.15rem;
    line-height:1.5;
}

.mp-three-news__featured h3 a{
    color:#111827;
    text-decoration:none;
}

.mp-three-news__featured h3 a:hover{
    color:#2563eb;
}

/* ==========================================================================
   STORY LIST
========================================================================== */

.mp-three-news__list{
    list-style:none;
    margin:0;
    padding:0 22px 18px;
}

.mp-three-news__list li{
    padding:14px 0;
    border-top:1px solid #edf2f7;
}

.mp-three-news__list li:first-child{
    border-top:none;
}

.mp-three-news__list a{
    display:block;
    color:#374151;
    text-decoration:none;
    line-height:1.55;
    transition:.3s;
}

.mp-three-news__list a:hover{
    color:#2563eb;
    padding-left:6px;
}

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

.mp-three-news__footer{
    padding:20px;
    text-align:center;
}

.mp-three-news__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:999px;
    font-weight:700;
    transition:.3s;
}

.mp-three-news__button:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

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

.mp-three-news__ad{
    margin-top:40px;
}

.mp-three-news__ad .widget{
    margin:0;
}

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

/* ==========================================================================
   CATEGORY COLORS
========================================================================== */

/* Event */

.mp-three-news__column:nth-child(1) .mp-three-news__header{
    background:linear-gradient(135deg,#7c3aed,#a855f7);
}

.mp-three-news__column:nth-child(1) .mp-three-news__button{
    background:#7c3aed;
}

/* Newsbeat */

.mp-three-news__column:nth-child(2) .mp-three-news__header{
    background:linear-gradient(135deg,#b91c1c,#dc2626);
}

.mp-three-news__column:nth-child(2) .mp-three-news__button{
    background:#dc2626;
}

/* Trending */

.mp-three-news__column:nth-child(3) .mp-three-news__header{
    background:linear-gradient(135deg,#ea580c,#f97316);
}

.mp-three-news__column:nth-child(3) .mp-three-news__button{
    background:#ea580c;
}

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

@media (max-width:1200px){

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

}

@media (max-width:768px){

    .mp-three-news{
        margin:50px 0;
    }

    .mp-three-news__grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .mp-three-news__header{
        padding:16px;
    }

    .mp-three-news__featured{
        padding:16px;
    }

    .mp-three-news__list{
        padding:0 16px 16px;
    }

}

@media print{

    .mp-three-news__ad{
        display:none;
    }

    .mp-three-news__column{
        box-shadow:none;
        border:1px solid #ddd;
    }

}

/* ==========================================================================
   END
========================================================================== */

