/* Статичная сетка логотипов: 5 в ряд, столько строк, сколько нужно. Без бегущей строки. */

.clients-grid {
  width: 100%;
  max-width: 1280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-sizing: border-box;
}

.clients-grid__row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}

.clients-grid__item {
  height: 120px;
  padding: 16px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

/* Принудительная подгонка любого файла в ячейку */
.clients-grid__logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: min(200px, 100%) !important;
  max-height: 72px !important;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .clients-grid__row {
    display: contents;
  }

  .clients-grid__item {
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    padding: 4px 6px;
  }

  .clients-grid__logo {
    max-width: 100% !important;
    max-height: 34px !important;
  }
}
