#pd-brands {
  box-sizing: border-box;
  clear: both;
  width: 100%;
  max-width: 1400px;
  margin: 35px auto 0;
  padding: 45px 25px 50px;
  background: #f4f6f8;
  border-radius: 20px;
  text-align: center;
}

#pd-brands h2 {
  margin: 0 0 35px;
  color: #111;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
}

#pd-brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pd-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 245px;
  height: 155px;
  padding: 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.pd-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 105px;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  #pd-brands {
    padding: 35px 12px 40px;
    border-radius: 15px;
  }

  #pd-brands h2 {
    margin-bottom: 27px;
    font-size: 26px;
  }

  #pd-brands-grid {
    gap: 14px;
  }

  .pd-brand {
    width: calc(50% - 7px);
    height: 125px;
    padding: 16px;
  }

  .pd-brand img {
    max-height: 82px;
  }
}