/* ==========================================================================
   Adapt Practice — Workplace AI checklist landing page stylesheet

   Page-specific components for ai-workplace-checklist.html only.
   This file must be loaded after adapt-practice.css. Everything not
   defined here (buttons, form fields, editorial rows, header, footer)
   comes from the shared stylesheet.
   ========================================================================== */

/* Secondary hero paragraph — smaller than the lead sentence above it. */
.page-hero__content .checklist-hero__problem {
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────────────────────────
   Form + preview layout
   Form column leads; the preview is deliberately the narrower column and
   stacks below the form on smaller screens.
   ───────────────────────────────────────────────────────────────────────── */
.checklist-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: start;
}

.checklist-form-panel {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow);
}

.checklist-form-panel h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }

.checklist-form-panel__intro {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.checklist-form__required-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.checklist-form__optional {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--grey);
  border-radius: var(--radius-sm);
  padding: 0.15rem 0.5rem;
  margin-left: 0.4rem;
}

.checklist-form__submit { width: auto; }

.checklist-form__status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.checklist-form__status:empty { margin-top: 0; }
.checklist-form__status--error { color: var(--error); }

.checklist-form__privacy {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-mid);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────
   Preview column
   ───────────────────────────────────────────────────────────────────────── */
.checklist-aside h2 { font-size: 1.25rem; margin-bottom: 0.85rem; }

.checklist-aside p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.checklist-aside .checklist-aside__lead {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--navy);
}

.checklist-preview { margin-top: 1.75rem; }

.checklist-preview img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.checklist-preview figcaption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────
   Secondary bridge to Practical Workplace AI
   Deliberately plain: no panel, no button — it must stay quieter than the
   form CTA above it.
   ───────────────────────────────────────────────────────────────────────── */
.checklist-bridge { max-width: 680px; }
.checklist-bridge h2 { margin-bottom: 0.85rem; }
.checklist-bridge p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   Responsive — shared breakpoints only
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .checklist-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .checklist-preview img { max-width: 260px; }
}

@media (max-width: 640px) {
  .checklist-form-panel { padding: 2rem 1.5rem; }
  .checklist-form__submit { width: 100%; text-align: center; }
  .checklist-preview img { max-width: 220px; }
}

/* Centred variant, used on thank-you-ai-checklist.html where the page's
   content column is centred rather than left-aligned. */
.checklist-bridge--centred {
  margin: 0 auto;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────────────────
   Thank-you page — extends .thank-you from thank-you.css
   ───────────────────────────────────────────────────────────────────────── */
.thank-you .section__label { margin-bottom: 0.9rem; }

.thank-you .thank-you__note {
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
}
