.am-brand-strip {
  background: var(--band-color, #E6C744);
  width: 100%;
  padding: 28px 24px;
}

.am-brand-strip__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.am-brand-strip__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--color-text, #000000);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

a.am-brand-strip__item {
  min-width: 44px;
}

a.am-brand-strip__item:hover,
a.am-brand-strip__item:focus-visible {
  opacity: 1;
}

.am-brand-strip__item img {
  display: block;
  width: auto;
  max-width: 140px;
  max-height: 52px;
  object-fit: contain;
  /* Logos ship on light backgrounds; multiply blends them into the gold band
     exactly as the Figma (mix-blend-multiply / darken) does. */
  mix-blend-mode: multiply;
}

.am-brand-strip__name {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--color-text, #000000);
}

/* Tablet */
@media (max-width: 768px) {
  .am-brand-strip {
    padding: 24px 20px;
  }
  .am-brand-strip__row {
    gap: 20px 32px;
  }
  .am-brand-strip__item img {
    max-width: 90px;
  }
  .am-brand-strip__name {
    font-size: 18px;
  }
}

/* Mobile — horizontal scroll so logos stay on one tidy line */
@media (max-width: 480px) {
  .am-brand-strip__row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 28px;
  }
  .am-brand-strip__row::-webkit-scrollbar {
    display: none;
  }
  .am-brand-strip__item {
    flex: 0 0 auto;
  }
}
