.gallery-featured {
    margin-bottom: 20px;
}

.gallery-featured__img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(21, 65, 137, 0.12);
}

.gallery-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.gallery-row__img {
    flex: 1;
    width: 0;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(21, 65, 137, 0.1);
}

@media (max-width: 768px) {
    .gallery-row {
        flex-direction: column;
    }

    .gallery-row__img {
        width: 100%;
        height: 200px;
    }
}
