/* Contact page: equal-height office cards fix */

/* Neutralize the global stagger offset applied to nth-child(2) on every other page */
.contact-office-row.row > .single-column:nth-child(2) {
  padding-top: 0 !important;
}

/* Propagate flex stretch down the column → single-item → inner-box chain */
.contact-office-row.row {
  align-items: stretch;
}

.contact-office-row > .single-column {
  display: flex;
  flex-direction: column;
}

.contact-office-row > .single-column > .single-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-office-row > .single-column > .single-item > .inner-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Push the Schedule Demo button to the bottom of the Sales card */
.contact-office-row .btn-push-bottom {
  margin-top: auto;
  padding-top: 20px;
}

/* Prevent gap between stacked cards on mobile */
@media (max-width: 767px) {
  .contact-office-row > .single-column {
    margin-bottom: 30px;
  }

  .contact-office-row > .single-column:last-child {
    margin-bottom: 0;
  }
}
