/* Phase 21: sponsor logo row, shown right below the hero slideshow */

.sponsors-bar {
  background: var(--color-off-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.sponsors-bar__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-charcoal-soft);
  margin-bottom: 16px;
}

.sponsors-bar__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.sponsors-bar__logo-link,
.sponsors-bar__logo-static {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.sponsors-bar__logo-link img,
.sponsors-bar__logo-static img {
  max-height: 48px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.sponsors-bar__logo-link:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
