.field--name-field-bloque-imagenes {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    .field__item {
        width: 100%;
        gap: 0;

        img {
            max-height: 300px;
            height: 100%;
            object-fit: cover;
            border-radius: 9px !important;
        }
    }

    @media screen and (max-width: 520px) {
        .field__item {
            width: 100%;
        }
    }

    :only-child {
        width: 100%;
    }
}

@media screen and (max-width: 720px) {

    .field--name-field-bloque-imagenes {
        flex-direction: column;
        gap: 0;

        .field__item {
    
            img {
                margin: 0;
                margin-bottom: 15px;
                border-radius: 30px !important;
            }
        }
    }
}