/* ============================================================
   CASHEENO — contact page
   Page shell, forms, flash and sidebar cards live in cs-ui.css.
   ============================================================ */

/* The intro spans the full container - both the form and sidebar columns
   below it - rather than being boxed into the left-hand column. */
.cs-contact__intro {
  display: grid;
  justify-items: start;
  max-width: none;
}
.cs-contact__intro .cs-h1 { max-width: 20ch; }
.cs-contact__intro .cs-lede { max-width: 74ch; }
@media (min-width: 1000px) {
  .cs-contact__intro .cs-h1 { max-width: none; }
}
.cs-contact__intro > .cs-eyebrow { margin-bottom: 1.4rem; }
.cs-contact__intro > .cs-h1      { margin-bottom: 1.2rem; }

.cs-contact { padding-block: clamp(2rem, 4vw, 3rem) clamp(4rem, 8vw, 6.5rem); }

.cs-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  align-items: start;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
@media (max-width: 900px) {
  .cs-contact__grid { grid-template-columns: minmax(0, 1fr); }
}

