/* =========================================================
TRENDING CARDS FINAL
========================================================= */

.dxb-trending{
    padding:40px 0 80px;
}

.dxb-section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
}

.dxb-section-head h2{
    font-size:42px;
    color:#111827;
}

.dxb-section-head a{
    color:#d9a441;
    font-weight:700;
    text-decoration:none;
}

/* GRID */

.dxb-post-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:24px;

}

/* CARD */

.dxb-post-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    height:320px;

    background:#111;

}

.dxb-post-card a{
    display:block;
    width:100%;
    height:100%;
}

/* IMAGE */

.dxb-post-card img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

/* OVERLAY */

.dxb-post-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.08)
    );

    padding:22px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

}

.dxb-post-overlay span{

    display:inline-block;

    background:#ff6b57;

    color:#fff;

    font-size:11px;

    font-weight:700;

    padding:8px 12px;

    border-radius:999px;

    width:max-content;

    margin-bottom:12px;

    text-transform:uppercase;

}

.dxb-post-overlay h3{

    color:#fff;

    font-size:28px;

    line-height:1.2;

}

/* TABLET */

@media(max-width:1200px){

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

}

/* MOBILE */

@media(max-width:768px){

    .dxb-post-grid{
        grid-template-columns:1fr;
    }

    .dxb-post-card{
        height:260px;
    }

    .dxb-post-overlay h3{
        font-size:22px;
    }

}