.equipo-section div > div :is(img) {
    max-height: 200px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

/* Custom CSS for 2025 Blog Articles Image Gallery */
.gallery-2025 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-2025 .gallery-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.gallery-2025 .gallery-item {
    width: 100%;
    height: 270px;
    border-radius: 6px;
    overflow: hidden;
}

.gallery-2025 .gallery-item img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

/* Desktop responsive - 2 images per row */
@media (min-width: 768px) {
    .gallery-2025 .gallery-item {
        width: 48%;
    }
}

/* Mobile responsive - 1 image per row */
@media (max-width: 767px) {
    .gallery-2025 .gallery-item {
        width: 100%;
    }
}