.eat-featured-image {
    text-align: left;
}

.eat-featured-image__frame {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.eat-featured-image__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@supports not (aspect-ratio: 16 / 9) {
    .eat-featured-image__frame::before {
        content: '';
        display: block;
        padding-top: 56.25%;
    }

    .eat-featured-image__img {
        position: absolute;
    }
}

/* Spécifique aux articles */
.eat-single-post .eat-featured-image__frame {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    /* Hauteur minimale par défaut sur mobile ; peut être surchargée via le contrôle de hauteur min */
    .eat-single-post .eat-featured-image__frame {
        min-height: 56vw;
    }
}
