/* =========================================================================
   Shared "info page" template — Why a Board-Certified OMS, Office & Technology,
   Insurance, First Visit, Cost of Dental Implants, Why Refer.
   Verified against Figma v2 frames (512:2, 513:2, 514:2, 511:2, 508:2, 510:2), 2026-07-25.
   ========================================================================= */

@import url("design-tokens.css");

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px 64px;
}

.article__lead {
  font-size: 19px;
  color: var(--color-body-muted);
  margin-bottom: 48px;
}

.article__section { margin-bottom: 48px; }
.article__section h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  color: var(--color-ink);
  margin-bottom: 16px;
}
.article__section p {
  font-size: var(--text-subhead);
  color: var(--color-body-muted);
  margin: 0 0 16px;
}
.article__section p:last-child { margin-bottom: 0; }

.article__faq { margin-bottom: 0; }

@media (max-width: 900px) {
  .article { padding: 40px 20px 48px; }
}

/* =========================================================================
   Contact & Scheduling pages — Contact Us, Location & Directions,
   Office Hours, Request an Appointment, Refer a Patient. Added 2026-07-28,
   no Figma source (Discovery-doc IA, PRD §7 / Open Question #6) — built
   directly against design-tokens.css.
   ========================================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--color-teal-tint);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-card h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  color: var(--color-ink);
  margin: 0 0 16px;
}
.contact-card dl { margin: 0; }
.contact-card dt {
  font-size: var(--text-label-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-eyebrow-muted);
  margin: 16px 0 4px;
}
.contact-card dt:first-of-type { margin-top: 0; }
.contact-card dd {
  font-size: var(--text-subhead);
  color: var(--color-ink);
  margin: 0;
}
.contact-card dd a { color: var(--color-teal); text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th { text-align: left; padding-bottom: 8px; border-bottom: 1px solid var(--color-blue-tint); }
.hours-table td, .hours-table th {
  font-size: var(--text-subhead);
  color: var(--color-body-muted);
  padding: 12px 0;
  border-top: 1px solid var(--color-blue-tint);
}
.hours-table tr:first-child td, .hours-table tr:first-child th { border-top: none; }
.hours-table td:first-child { color: var(--color-ink); font-weight: 500; }
.hours-table td:last-child, .hours-table th:last-child { text-align: right; }

.embed-placeholder {
  border: 1px dashed var(--color-sage);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  background: var(--color-white);
  margin-bottom: 32px;
}
.embed-placeholder__tag {
  display: inline-block;
  font-size: var(--text-label-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-sage);
  background: var(--color-cta-light);
  border-radius: var(--radius-tag);
  padding: 4px 10px;
  margin-bottom: 16px;
}
.embed-placeholder p { font-size: var(--text-subhead); color: var(--color-body-muted); margin: 0 0 20px; }
.embed-placeholder p:last-child { margin-bottom: 0; }

/* Live Jotform embed. The iframe carries its own height inline (forms.json
   minHeight) so there is no layout shift before Jotform's handler resizes it. */
.form-embed {
  margin-bottom: 32px;
}
.form-embed iframe {
  display: block;
  width: 100%;
  border: none;
}
.form-embed noscript p {
  padding: 32px;
  text-align: center;
  border: 1px dashed var(--color-sage);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.emergency-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-refer-box);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: var(--text-subhead);
  color: var(--color-ink);
}
.emergency-cta a { color: var(--color-teal); font-weight: 600; text-decoration: underline; }

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