/**
 * mortgages.css
 *
 * Styling for views/mortgages.php — loaded only on that page (see
 * layouts/head.php's $page === 'mortgages' check). Same palette as
 * search.css/listing-detail.css/home.css. The form itself and the agent
 * contact block are styled by the shared css/lead-form.css (its lf- and
 * ac- prefixed classes, also loaded on this page) — this file only owns
 * the two-column layout and the left column's copy.
 */

/* Same container/padding convention as views/search.php's .sr-wrap and
   views/listing-detail.php's .ld-wrap (max-width/margin/padding), not a
   separately-invented set of numbers — see those files' own css. */
.mg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  color: #12233D;
}

.mg-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mg-heading {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 16px;
}

.mg-copy {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5A70;
  margin: 0 0 16px;
}

.mg-info .ac-block {
  margin-top: 24px;
}

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