.examples__preview .row__custom {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}


.examples__preview .col__custom {
    width: 31%;
}

@media(max-width: 1200px) {
    .examples__preview .row__custom {
        gap: 1.5rem;
    }
    .examples__preview .col__custom {
        width: 28%;
    }
}

@media(max-width: 991px) {
    .examples__preview .row__custom {
        gap: 1.5rem;
    }
    .examples__preview .col__custom {
        width: 45%;
    }
}
@media(max-width: 576px) {
    .examples__preview .row__custom {
        gap: 0;
        row-gap: 1rem;
    }
    .examples__preview .col__custom {
        width: 100%;
    }
}