.bloc_grid_boxes_home .boxes-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Por defecto: 2 en móvil */
    column-gap: 16px;
    row-gap: 24px;
}

@media (min-width: 992px){ /* Desktop */
    .bloc_grid_boxes_home .boxes-grid{
        grid-template-columns: repeat(4, 1fr); /* 4 columnas */
    }
}

.bloc_grid_boxes_home .item-box{
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.bloc_grid_boxes_home .thumb{
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.bloc_grid_boxes_home .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.bloc_grid_boxes_home .item-box:hover .thumb img{
    transform: scale(1.04);
}

.bloc_grid_boxes_home .badge{
    position: absolute;
    top: 8px;
    left: 8px;
     padding: 4px 5px;
    border-radius: 3px;
    background: #e53935;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .03em;
    pointer-events: none;
}

.bloc_grid_boxes_home .item-box-title{
    margin: 22px 4px 0;
    text-align: center;
    color: var(--cml-body-color);
    font-size: var(--cml-body-size);
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
}
