.categories-grid {
    --grid-gap: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--grid-gap);
}
.categorie-item {
    width: calc(25% - (var(--grid-gap) / 1.25));
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.1),
        0 6px 20px 0 rgba(0, 0, 0, 0.1);
    transition: all 250ms ease-in-out;
}
.categorie-container {
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10%;
}
.categorie-container h3 {
    color: #ffffff;
    font-size: 24px !important;
    line-height: 1.4 !important;
}
/* Hover animation */
.categorie-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.15),
        0 6px 20px 0 rgba(0, 0, 0, 0.15);
}
/* Responsive settings */
@media (max-width: 1260px) {
    .categorie-item {
        width: calc(50% - (var(--grid-gap) / 2));
    }
    .categorie-item:hover {
        transform: scale(1.02);
    }
}
@media (max-width: 550px) {
    .categorie-item {
        width: 100%;
    }
    .categorie-item:hover {
        transform: scale(1.01);
    }
}
