.cbg-grid-wrapper{
        width:100%;
        max-width:1200px;
        margin:20px auto 40px;
        padding:0 10px;
        box-sizing:border-box;
    }
    .cbg-grid-outer{
        border:1px solid #e3e6ea;
        padding:3px;
        box-sizing:border-box;
        background:#ffffff;
    }
    .cbg-grid{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:3px;
    }
    /* УБИВАЕМ ПУСТЫЕ P, КОТОРЫЕ ЛОМАЮТ ПЕРВУЮ КНОПКУ */
    .cbg-grid > p{
        margin:0 !important;
        padding:0 !important;
        height:0 !important;
        line-height:0 !important;
        display:none !important;
    }

    .cbg-tile{
        display:block;
        width:24%;
        min-width:220px;
        text-decoration:none;
        color:inherit;
    }
    .cbg-tile-inner{
        background:#ffffff;
        border:1px solid #e3e6ea;
        padding:16px 10px 20px;
        box-sizing:border-box;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:flex-start;
        transition:transform .18s ease, box-shadow .18s ease;
        min-height:260px;
    }
    .cbg-tile-inner:hover{
        transform:translateY(-2px);
        box-shadow:0 8px 18px rgba(0,0,0,.08);
    }
    .cbg-tile-title{
        font-size:15px;
        font-weight:700;
        letter-spacing:.04em;
        text-transform:uppercase;
        color:#314550;
        margin-bottom:10px;
        text-align:center;
    }
    .cbg-tile-imagewrap{
        width:80%;
        max-width:354px;
        aspect-ratio:1/1;
        display:flex;
        align-items:center;
        justify-content:center;
        overflow:hidden;
        margin-bottom:12px;
		border-radius:5px;
    }
    .cbg-tile-image{
        max-width:100%;
        max-height:100%;
        object-fit:contain;
        display:block;
        transition:transform .18s ease;
    }
    .cbg-tile-inner:hover .cbg-tile-image{
        transform:scale(1.04);
    }
    .cbg-tile-button{
        margin-top:auto;
        width:80%;
        max-width:354px;
        padding:9px 0;
        text-align:center;
        border-radius:4px;
        border:none;
        background:#f4ca49;
        color:#314550;
        font-weight:600;
        text-transform:uppercase;
        letter-spacing:.03em;
        cursor:pointer;
        transition:background-color .18s ease, box-shadow .18s ease;
    }
    .cbg-tile-inner:hover .cbg-tile-button{
        background:#ffe27a;
        box-shadow:0 6px 14px rgba(0,0,0,.12);
    }

    
    }
    
    }

@media (max-width: 900px){
    .cbg-grid{
        flex-direction:column;
        align-items:stretch;
    }
    .cbg-tile{
        width:100%;
        min-width:0;
        max-width:none;
    }
}

