/* Brand logo strip — 5×2 grid; scrolls on narrow screens with pagination dots */

.brand-strip {
  background: #fff;
  border-top: 1px solid #e4e8ee;
  border-bottom: 1px solid #e4e8ee;
}

.brand-strip__inner {
  width: var(--tci-content-width, 98%);
  max-width: var(--tci-content-width, 98%);
  margin: 0 auto;
  padding: clamp(1.25rem, 2.6vw, 2rem) 0 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.brand-strip__inner::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.brand-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(11.5rem, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem) clamp(0.85rem, 2vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: min(100%, 58rem);
}

.brand-strip__item {
  margin: 0;
  min-width: 0;
}

.brand-strip__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(3.25rem, 6.5vw, 4.75rem);
  padding: 0.4rem 0.5rem;
  text-decoration: none !important;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-strip__link:hover,
.brand-strip__link:focus {
  opacity: 0.78;
  transform: translateY(-1px);
}

.brand-strip__link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(2.75rem, 5.5vw, 4rem);
  object-fit: contain;
}

.brand-strip__placeholder {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(0.55rem, 1.15vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #5b6775;
  border: 1px dashed #d5dde6;
  border-radius: 0.35rem;
  padding: 0.55rem 0.35rem;
  background: #f7f9fb;
}

.brand-strip__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0 1rem;
}

.brand-strip--paged .brand-strip__dots {
  display: flex;
}

.brand-strip__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c5ced8;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.brand-strip__dot.is-active {
  width: 1.15rem;
  background: #0054a5;
}

.brand-strip__dot:focus-visible {
  outline: 2px solid #0054a5;
  outline-offset: 2px;
}
