.na-brand-logos-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.na-brand-logos-title{
  font-weight:600;
  font-size:1.1rem;
}

.na-brand-logos-all{
  text-decoration:none;
  font-size:.95rem;
}

.na-brand-logos-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}

@media (min-width: 576px){
  .na-brand-logos-grid{ grid-template-columns:repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 992px){
  .na-brand-logos-grid{ grid-template-columns:repeat(6, minmax(0, 1fr)); gap:14px; }
}

.na-brand-logos-item{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:10px;
  background:#fff;
  transition:transform .08s ease, box-shadow .08s ease;
}

.na-brand-logos-item:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.na-brand-logos-img{
  max-width:100%;
  max-height:42px;
  object-fit:contain;
}

.na-brand-logos-empty{
  padding:12px;
  border:1px dashed rgba(0,0,0,.2);
  border-radius:10px;
}
