.blog .ast-blog-featured-section img,
.archive .ast-blog-featured-section img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* --------------------------------
   IMAGE GRID ROWS – exactly 3 per row
-------------------------------- */

.fr-image-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin: 40px auto !important;
    max-width: 1180px !important;
}

.fr-image-row > figure {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px !important;
    margin: 0;
}

.fr-image-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tablet – 2 per row */
@media (max-width: 900px) {
    .fr-image-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile – 1 per row */
@media (max-width: 600px) {
    .fr-image-row {
        grid-template-columns: 1fr !important;
    }
}
