/* =========================================================
   TRAVEL SWIFT — BLOG ARTICLE FULL-BLEED IMAGE HEROES
   File: public/assets/css/blog-article-images.css
========================================================= */

/*
 * The image fills the complete right-side hero card.
 * There is no internal padding and no CTA below the image.
 */
.article-hero__visual {
    position: relative;
    display: block;
    overflow: hidden;
    min-width: 0;
    min-height: 440px;
    padding: 0 !important;
}

.article-hero__visual::before,
.article-hero__visual::after {
    display: none !important;
}

.article-hero__visual .article-hero__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 100%;
    margin: 0;
    border-radius: inherit;
    object-fit: cover;
    object-position: left;
}

/* Defensive fallback in case an old CTA survives elsewhere. */
.article-hero__visual > a {
    display: none !important;
}

@media (max-width: 1050px) {
    .article-hero__visual {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .article-hero__visual {
        min-height: 320px;
    }
}
