/* Leave a Comment page — matches live /leave-a-comment/ (lac-measure.json geometry).
   White page: left aside (heading + Google CTA + illustration), right Gravity Form. */

body.page-leave-a-comment { background: var(--color-white); }

/* Full-bleed periwinkle wave behind the content (live: Blue-Wave.svg,
   cover, bottom-anchored). Sits under both columns, ends above the footer. */
.page-leave-a-comment {
  background: url('/wp-content/uploads/2023/06/Blue-Wave.svg') no-repeat 50% 100% / cover;
}

.lac-grid {
  display: grid;
  grid-template-columns: minmax(0, 560fr) minmax(0, 560fr);
  column-gap: 20px;
  align-items: start;
  /* Live sections span the full 1140 container (no gutter) → 560px columns. */
  padding-inline: 0;
  padding-top: 64px;
  padding-bottom: 64px;
}

/* ---- Left aside: heading, Google CTA, button, illustration (centered) ---- */
.lac-grid__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lac-title {
  margin: 0;
  color: var(--color-plum);
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}
.lac-lead,
.lac-cta {
  max-width: 500px;
  color: var(--color-plum);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 27.5px;
}
.lac-lead { margin: 55px 0 0; }
.lac-cta { margin: 8px 0 0; }
.lac-google-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 24px;
  background: var(--color-plum);
  color: var(--color-white);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  text-decoration: none;
  transition: background var(--duration-base) var(--ease-out-quint);
}
.lac-google-btn:hover { background: var(--color-plum-hover); }
.lac-illustration {
  width: 560px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 15px;
}

/* ---- Right column: Gravity Form 2 (ref: plum-bordered white inputs) ---- */
.lac-grid__form .gform_wrapper { max-width: 560px; }
/* Live hides admin/marker fields via this GF custom class (Elementor rule). */
.lac-grid__form .hiddenField1 { display: none; }
.lac-grid__form .gfield_label {
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-ink);
}
.lac-grid__form .gform_wrapper input[type="text"],
.lac-grid__form .gform_wrapper input[type="email"],
.lac-grid__form .gform_wrapper textarea {
  border: 2px solid var(--color-plum);
  border-radius: 10px;
  padding: 8px;
  font-size: 15px; /* live leaves these at GF default 15px, not the 20px body */
}
.lac-grid__form .gform_wrapper textarea { min-height: 192px; }
.lac-grid__form .gform_required_legend {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  color: var(--color-ink);
}
.lac-grid__form .gform_wrapper input[type="submit"] {
  font-size: 20px;
  font-weight: 500;
  padding: 10px 32px;
}

/* ---- Mobile: stacked, illustration hidden (matches live) ---- */
@media (max-width: 1024px) {
  .lac-grid {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: var(--gutter);
    padding-top: 40px;
  }
  .lac-title { font-size: 32px; line-height: 40px; }
  .lac-cta {
    margin-top: 44px;
    max-width: 290px;
    font-size: 24px;
    line-height: 30px;
  }
  .lac-google-btn { font-size: 18px; line-height: 22.5px; }
  .lac-illustration { display: none; }
  .lac-grid__form { margin-top: 40px; }
  .lac-grid__form .gform_wrapper { max-width: 100%; }
}
