.cbg-wrapper{

background:#fafafa;

padding:10px 0;

border-radius:15px;

}


.cbg-grid{

display:grid;

grid-template-columns:repeat(8,1fr);

gap:18px;

}

.cbg-card{

background:#fff;

border:1px solid #ececec;

border-radius:12px;

padding:28px 15px;

text-align:center;

text-decoration:none;

transition:.35s;

}

.cbg-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 40px rgba(0,0,0,.08);

border-color:#d8a316;

}

.cbg-logo{

height:65px;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:20px;

}

.cbg-logo img{

max-height:45px;

width:auto;

}

.cbg-name{

font-weight:600;

font-size:15px;

color:#111;

}

.cbg-placeholder{

width:48px;

height:48px;

border-radius:50%;

background:#d8a316;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

font-weight:bold;

}

@media(max-width:1200px){

.cbg-grid{

grid-template-columns:repeat(6,1fr);

}

}

@media(max-width:992px){

.cbg-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:768px){

.cbg-grid{

grid-template-columns:repeat(2,1fr);

}

}



}