/* ============================================================
   CONTACT.CSS
   Contact page only: the address/prose column paired with the
   office photo on the right.
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
