/* =========================================================
   READ MORE — PUBLISHED ARTICLE HERO IMAGE
   Only the real published article card.
   ========================================================= */

.videuro-article-hero-slot{
    width:100%;
    height:110px;
    margin:12px 0 0;
    border-radius:12px;
    overflow:hidden;
    position:relative;
    background:rgba(255,255,255,.04);
}

.videuro-article-hero-slot img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.videuro-article-hero-slot::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0),
            rgba(0,0,0,.10)
        );
}

/* Mobile */
@media (max-width:700px){
    .videuro-article-hero-slot{
        height:150px;
    }
}
