/**
 * Layout portada: col-lg-4 al lado de col-lg-8 (Top of the Week + Latest).
 * Aplica solo en escritorio (992px+). En tablet/móvil responsive.css de Magro apila columnas.
 * El “espacio violeta” a la derecha suele ser el col-lg-4 vacío al inspeccionar en DevTools.
 */
/* Solo escritorio (992px+). En tablet/móvil Magro responsive.css apila columnas (100%). */
@media (min-width: 992px) {
    .magro-topweek-inner {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        min-width: 0 !important;
    }
    .magro-topweek-inner > .col-lg-8 {
        -ms-flex: 0 0 69.666667% !important;
        flex: 0 0 69.666667% !important;
        flex-basis: 69.666667% !important;
        max-width: 69.666667% !important;
        width: 69.666667% !important;
        min-width: 0 !important;
    }
    .magro-topweek-inner > .col-lg-4 {
        -ms-flex: 0 0 30.333333% !important;
        flex: 0 0 30.333333% !important;
        flex-basis: 30.333333% !important;
        max-width: 30.333333% !important;
        width: 30.333333% !important;
        min-width: 0 !important;
    }
}
