.three-images-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: nowrap;
}

.three-images-row .image-item {
    flex: 1;
    min-width: 0;
    border-radius: 0px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.three-images-row .image-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0px;
}

@media (max-width: 768px) {
    .three-images-row {
        gap: 10px;
    }
}