:root {
  --accent: #078bff;
  --text: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: transparent;
}

.partner-grid {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: 38px clamp(24px, 4vw, 64px) 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(46px, 7vh, 82px) clamp(28px, 4vw, 72px);
  background: transparent;
}

.partner-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 120px auto;
  justify-items: center;
  text-align: center;
}

.icon-link {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.icon-link:hover {
  transform: translateY(-3px);
  opacity: 0.82;
}

.icon-link:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}

.icon-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 2px dashed currentColor;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-card h2 {
  width: 100%;
  margin: 14px 0 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.25;
  color: #fff;
  font-weight: 500;
  text-wrap: balance;
}

@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .partner-grid {