/* Styling for the overall info-box */
.info-box {
  border: 1px solid #af9751;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.info-box--no-border {
  border: none;
}

.info-box--no-mobile-padding {
  padding: 0;
}

.info-box--is-left {
  text-align: left;
}

/* Font and style for the info-box title */
.info-box__title {
  font: 22px/22px "Playfair Display", "Times New Roman", serif;
}

/* Styling of the short line on info-boxes */
.info-box__divider {
  width: 50px;
  border: 0;
  border-top: solid 2px #000;
  border-top-color: #cccccc;
  margin: 25px auto;
  text-align: left;
}

.info-box__divider--full-width {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.info-box__divider--is-left {
  margin-left: 0;
}

.info-box__list {
  list-style-type: none;
  -webkit-padding-start: 0;
  margin: 0;
}

.info-box__list-item--is-heading {
  font: 18px/22px "Playfair Display", "Times New Roman", serif;
}

.info-box__list-item {
  margin-bottom: 0.5rem;
}

.info-box__list-item--is-last {
  margin-bottom: 0rem;
}

/* Styling for the info-box CTA */
.info-box__cta {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 10px 40px;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .info-box--no-padding {
    padding: 0;
  }
}

@media screen and (min-width: 992px) {
  .info-box--is-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
