.sc-logo-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
  line-height:1.3;
  margin:0 0 24px 0;
}

.sc-logo-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
  max-width:1200px;
  margin:0 auto;
}

.sc-logo-item{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:210px;
  padding:16px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
  text-decoration:none !important;
  box-sizing:border-box;
}

.sc-logo-item img{
  max-width:100%;
  max-height:180px;
  width:auto;
  height:auto;
  display:block;
}

@media (max-width: 768px){
  .sc-logo-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
  }

  .sc-logo-item{
    height:150px;
    padding:10px;
  }

  .sc-logo-item img{
    max-height:120px;
  }

  .sc-logo-title{
    font-size:24px;
    margin-bottom:16px;
  }
}