:root{
  --text:#111;
  --line:#000;
  --card-line:#eee;
  --shadow:rgba(0,0,0,.08);
  --gold:#c9a24d;
  --gold2:#d8b866;
  --bg:#fff;
}

.brand-section{
  margin:52px 0;
  padding:0 16px;
  text-align:center;
  color:var(--text);
}

.brand-title{
  font-size:14px;
  font-weight:600;
  letter-spacing:0.6px;
  margin:0 0 12px;
  color:#222;
}

.brand-divider{
  width:56px;
  height:2px;
  background:var(--line);
  margin:0 auto 28px;
}

.brand-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

/* Square cards */
.brand-item{
  background:var(--bg);
  border-radius:18px;
  box-shadow:0 0 0 1px var(--card-line);
  overflow:hidden;
  aspect-ratio:1 / 1;
  transition:transform .25s ease, box-shadow .25s ease;
}

.brand-item:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 34px var(--shadow);
}

.brand-item a{
  display:block;
  width:100%;
  height:100%;
  text-decoration:none;
}

.brand-item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* More button */
.more-brands{
  margin-top:40px;
}

.more-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 40px;
  border:2px solid var(--gold);
  border-radius:999px;
  font-size:15px;
  font-weight:650;
  letter-spacing:.6px;
  color:var(--gold);
  text-decoration:none;
  background:transparent;
  transition:transform .35s ease, box-shadow .35s ease, background-color .35s ease, color .35s ease;
}

.more-btn span{
  font-size:18px;
  transition:transform .35s ease;
}

.more-btn:hover{
  background:#111;
  color:var(--gold2);
  transform:translateY(-3px);
  box-shadow:0 10px 26px rgba(201,162,77,.35);
}

.more-btn:hover span{
  transform:translateX(6px);
}

/* Mobile */
@media (max-width: 768px){
  .brand-section{
    margin:44px 0;
  }

  .brand-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .brand-item{
    border-radius:16px;
  }

  .brand-title{
    font-size:13px;
    letter-spacing:0.45px;
  }

  .brand-divider{
    width:48px;
    margin:0 auto 22px;
  }

  .more-btn{
    padding:12px 30px;
    font-size:14px;
  }
}