/* ================
   OUR STANDARDS
================== */
.our-standards-section {
  background-color: #3c3b31;
}

.our-standards-section .info-box {
  padding: 2rem;
  text-align: left;
  border-right: 1px solid #e5e5e5;
}

/* Remove right border on every 3rd box at ≥992px */
@media (min-width: 992px) {
  .our-standards-section .row > .col:nth-child(3n) .info-box {
    border-right: none;
  }
}

/* Mobile (<992px): switch to bottom borders instead of right */
@media (max-width: 991.98px) {
  .our-standards-section .info-box {
    border-right: none;          /* no right borders */
    border-bottom: 1px solid #e5e5e5; /* add horizontal separators */
  }
  /* remove bottom border on the very last box */
  .our-standards-section .row > .col:last-child .info-box {
    border-bottom: none;
  }
}

/* Typography */
.info-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #F4F3EE;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F4F3EE;
  margin-bottom: 1rem;
}

.info-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #F4F3EE;
}