/* ======================================================
   HEADER TOP BANNERS
====================================================== */

.me-header-top-banners{
    width:100%;
    padding:14px 0;
    background:#ffffff;
    border-bottom:1px solid rgba(0,0,0,0.06);
    position:relative;
    z-index:20;
}

.me-header-top-banners::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(177,18,23,0.25), transparent);
}

.me-header-top-banners img{
    display:block;
    width:100%;
    height:auto;
    border-radius:10px;
}

.me-header-top-banners a{
    display:block;
    text-decoration:none;
}

.me-header-top-banners .me-banner-slot{
    margin:0;
}


/* ======================================================
   INNER WIDTH
====================================================== */

.me-header-top-banners__full,
.me-header-top-banners__split{
    width:min(1200px, calc(100% - 24px));
    margin:0 auto;
}


/* ======================================================
   FULL BANNER
====================================================== */

.me-header-top-banners__full{
    text-align:center;
}

.me-header-top-banners__full .me-banner-slot{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}


/* ======================================================
   SPLIT BANNERS
====================================================== */

.me-header-top-banners__split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    align-items:center;
}

.me-header-top-banners__col .me-banner-slot{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}


/* ======================================================
   HOVER
====================================================== */

.me-header-top-banners .me-banner-slot img{
    transition:transform 0.25s ease, opacity 0.25s ease;
}

.me-header-top-banners a:hover img{
    transform:scale(1.015);
    opacity:0.98;
}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 991px){

    .me-header-top-banners{
        padding:12px 0;
    }

    .me-header-top-banners__full,
    .me-header-top-banners__split{
        width:min(100%, calc(100% - 20px));
    }

    .me-header-top-banners__split{
        gap:14px;
    }
}

@media (max-width: 768px){

    .me-header-top-banners__split{
        grid-template-columns:1fr;
    }

    .me-header-top-banners__col .me-banner-slot,
    .me-header-top-banners__full .me-banner-slot{
        border-radius:10px;
        box-shadow:0 8px 22px rgba(0,0,0,0.07);
    }
}

@media (max-width: 640px){

    .me-header-top-banners{
        padding:10px 0;
    }

    .me-header-top-banners__full,
    .me-header-top-banners__split{
        width:min(100%, calc(100% - 16px));
    }

    .me-header-top-banners__split{
        gap:12px;
    }

    .me-header-top-banners img{
        border-radius:8px;
    }
}
.me-header-top-banners{
    width:100%;
    padding:14px 0;
    background:#111;
    border-bottom:1px solid rgba(255,255,255,0.06);
    position:relative;
    z-index:20;
}

.me-header-top-banners::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(177,18,23,0.35), transparent);
}