.where-to-buy {
  padding: 80px 20px;
}

.where-to-buy.light-blue {
  background: #E5F5FF;
}

.where-to-buy .intro {
  text-align: center;
  margin-bottom: 20px;
}

.where-to-buy .intro h2 {
  font-size: 32px;
  margin: 0 0 20px;
}

.where-to-buy .intro h3 {
  color: #004C7F;
  font-family: VisbyCF-BoldOblique;
  font-size: 18px;
  margin-bottom: 20px;
}

.where-to-buy .intro p {
  max-width: 60%;
  margin: 0 auto 16px;
}

.where-to-buy .intro p:last-child {
  margin-bottom: 0;
}

.where-to-buy .retailers {
  align-items: stretch;
  margin-top: 20px;
}

.where-to-buy .retailer {
  align-items: center;
  background: #ffffff;
  border: 1px solid #E5F5FF;
  border-radius: 10px;
  display: flex;
  height: 100%;
  justify-content: center;
  margin-bottom: 30px;
  padding: 25px 20px;
  text-decoration: none;
  transition: border-color 0.5s, box-shadow 0.5s;
}

.where-to-buy a.retailer:hover,
.where-to-buy a.retailer:focus {
  border-color: #217DB0;
  box-shadow: 0 5px 15px rgba(0, 76, 127, 0.1);
}

.where-to-buy a.retailer:focus {
  outline: 2px solid #217DB0;
  outline-offset: 2px;
}

.where-to-buy .retailer img {
  max-height: 80px;
  max-width: 170px;
  object-fit: contain;
  width: auto;
}

@media (max-width: 991px) {
  .where-to-buy .intro p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .where-to-buy {
    padding: 40px 20px;
  }

  .where-to-buy .intro h2 {
    font-size: 26px;
  }

  .where-to-buy .retailer {
    margin-bottom: 20px;
    padding: 20px 15px;
  }

  .where-to-buy .retailer img {
    max-height: 60px;
  }
}
