
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 160px;
        gap: 20px;
        padding: 60px;
    }

    /* Base */
    .bento-card {
        color: white;
        border-radius: 22px;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        transition: transform .25s ease, box-shadow .25s ease;
        cursor:pointer;
    }

    .bento-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(0,0,0,.4);
    }

    /* Variantes */
    .bento-main {
        grid-column: span 2;
        grid-row: span 2;
        background: url("/add/img/girshopping.png");
        background-size: cover;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-tall {
        grid-row: span 2;
    }

    .bento-empty {
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .cmss {
        width:150px;
    }

    .cmsss{
         width:200px;
    }

    .cmsi h2{
        padding-top:20px;
    }

    @media (max-width: 992px) {
        .bento-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .bento-main,
        .bento-wide,
        .bento-tall {
            grid-column: span 2;
            grid-row: auto;
        }
    }

    .cmsii {
        text-align:right;
    }

    @media (max-width: 576px) {
        .bento-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 10px;
        }

        .bento-card {
            grid-column: span 1;
            grid-row: auto;
            padding: 15px;
        }

        .cms {
            width:150px;
        }

        .cmss {
            width:150px;
        }

        .cmsii {
            text-align:right;
        }

        .cmsi {
            width:150px;
        }

        .cmsi h2{
            padding-top:10px;
        }

        .cmsss{
            width:150px;
        }
    }
