/* Custom responsive overrides for Rapid Response website */

/* Ensure two-column layouts stack properly on tablets and mobile */
@media screen and (max-width: 991px) {
  .row.row-split-content.row-align-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* Ensure proper spacing and full width on mobile */
@media screen and (max-width: 767px) {
  .row.row-split-content.row-align-top {
    grid-row-gap: 36px;
  }

  /* Make Twilio section icon smaller and centered on small screens */
  .twilio-section-icon {
    width: 100px !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
