/**
 * Styles pour le composant query-loop-3
 */

.atom-remontee-page article {
    overflow: hidden;
}

.atom-remontee-page .wp-block-post-featured-image {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
}

.atom-remontee-page .wp-block-post-featured-image img {
    height: 100%;
}

.atom-remontee-page article .wp-block-post-featured-image img {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.atom-remontee-page article:hover .wp-block-post-featured-image img {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

.atom-remontee-page article>.wp-block-group.wp-block-group-is-layout-constrained {
    width: 100%;
}

@media (max-width: 1023px) {
    .atom-remontee-page {
        padding: 40px 0px !important;
    }
}

@media (max-width: 769px) {
    .atom-remontee-page .content-remontee-page {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}