/* Sponsor / partner logo "cards" — match the rounded white tile look from the Figma */
.logo-row { gap: 22px 26px; }
.logo-row .logo-tile {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(15,42,71,0.06);
  width: 180px;
  height: 110px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid #eef1f6;
}
.logo-row .logo-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(15,42,71,0.10); }
.logo-row .logo-tile img { max-height: 60px; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.logo-row .logo-tile .brand-text {
  font-weight: 800; letter-spacing: 0.5px; font-size: 22px;
  font-family: 'Inter', sans-serif;
}
@media (max-width: 640px) {
  .logo-row .logo-tile { width: 140px; height: 90px; }
}

/* Tier sizing: Diamond +10%, Platinum +5% over the base */
.logo-row.tier-diamond  .logo-tile { width: 198px; height: 121px; }
.logo-row.tier-diamond  .logo-tile img { max-height: 66px; }
.logo-row.tier-diamond  .logo-tile .brand-text { font-size: 24px; }
.logo-row.tier-platinum .logo-tile { width: 189px; height: 115px; }
.logo-row.tier-platinum .logo-tile img { max-height: 63px; }
.logo-row.tier-platinum .logo-tile .brand-text { font-size: 23px; }
@media (max-width: 640px) {
  .logo-row.tier-diamond  .logo-tile { width: 154px; height: 99px; }
  .logo-row.tier-platinum .logo-tile { width: 147px; height: 94px; }
}
