.brands-block {
  padding: 0;
}

/* Заголовок */
.brands-block__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.brands-block__description {
  font-size: 16px;
  color: #555;
  max-width: 600px;
}

/* Сетка */
.brands-block__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(0, 0, 0, .08);
}

.brands-block__item {
  padding: 8px 76px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, .08);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
}

.brands-block__item:nth-child(4n) {
  border-right: none;
}

.brands-block__logo {
  height: 100%;
  object-fit: contain;
}

/* Мобильная адаптация */
@media (max-width: 991px) {
  .brands-block__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-block__item {
    padding: 8px 22px;
    height: 156px;
  }

  .brands-block__item:nth-child(1n) {
    border-right: 1px solid rgba(0, 0, 0, .08);
  }

  .brands-block__item:nth-child(2n) {
    border-right: 1px solid rgba(0, 0, 0, .08);
  }
}

@media (max-width: 600px) {
  .brands-block__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-block__item {
    height: 136px;
  }
}
