
/* izGaraže v0.29e — Popular brand logos */
.brand-logo-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}
.brand-logo-grid .brand-logo-card{
  display:flex;
  min-height:108px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 10px;
  border:1px solid #e4e8eb;
  border-radius:14px;
  background:#fff;
  text-decoration:none;
  color:#1f2428;
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}
.brand-logo-grid .brand-logo-card:hover{
  transform:translateY(-2px);
  border-color:#d7dde1;
  box-shadow:0 8px 22px rgba(30,37,43,.08);
}
.brand-logo-mark{
  width:58px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-logo-mark img{
  display:block;
  max-width:58px;
  max-height:42px;
  width:auto;
  height:auto;
  opacity:.92;
}
.brand-logo-mark.logo-missing{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#f1f3f5;
}
.brand-logo-grid .brand-logo-card b{
  font-size:12px;
  line-height:1.2;
  text-align:center;
  font-weight:800;
}
@media(max-width:900px){
  .brand-logo-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media(max-width:600px){
  .brand-logo-grid{
    display:flex;
    overflow-x:auto;
    gap:10px;
    padding-bottom:4px;
    scroll-snap-type:x proximity;
  }
  .brand-logo-grid .brand-logo-card{
    min-width:132px;
    scroll-snap-align:start;
  }
}
