
.history__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    display: grid;
    overflow: hidden;
}

.history__grid {
    @media (width <= 1400px) {
        gap: 32px;
    }
}

.history__grid {
    @media (width <= 1024px) {
        grid-template-columns: 1fr 1fr;
    }
}

.history__grid {
    @media (width <= 575px) {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 5px;
    }
}