/* ==========================================================================
   Paving Louisville — deliberate early-2000s local-contractor styling.

   The look is period-correct on purpose: boxed layout, beveled nav buttons,
   bordered photos with captions, blue underlined links, a right sidebar.
   The plumbing underneath is not: it is responsive, keyboard accessible,
   respects reduced motion, and hits WCAG AA contrast. Old face, modern bones.
   ========================================================================== */

:root {
  --navy:       #1f3a63;
  --navy-dark:  #162945;
  --navy-deep:  #142a4d;
  --rule:       #7d8ba1;
  --yellow:     #f2c200;
  --yellow-dk:  #b58f00;
  --asphalt:    #2b2b2b;
  --ink:        #1b1b1b;
  --ink-soft:   #40464d;
  --link:       #0b3d91;
  --link-vis:   #5a2a86;
  --panel:      #eef1f5;
  --panel-alt:  #f7f8fa;
  --page:       #d9dee5;
  --white:      #ffffff;
  --border:     #9aa5b4;
  --border-lt:  #c3cbd6;
  --ok:         #1c6b2e;
  --err:        #97231d;

  --space-xs: 4px;
  --space-s:  8px;
  --space-m:  16px;
  --space-l:  24px;
  --space-xl: 34px;

  --text-s:  0.8125rem;
  --text-b:  1.0625rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0 0 54px;
  background: var(--page);
  color: var(--ink);
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.62;
}

/* The whole site sits in one centered white box, like every contractor
   site of the era. max-width keeps the measure readable on wide screens. */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: var(--space-l);
}

img { max-width: 100%; height: auto; border: 0; }

a { color: var(--link); }
a:visited { color: var(--link-vis); }
a:hover, a:focus-visible { color: #06275e; }

:focus-visible {
  outline: 3px solid var(--yellow-dk);
  outline-offset: 2px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--navy-deep);
  line-height: 1.25;
  margin: 0 0 var(--space-s);
}
h1 { font-size: 1.75rem; }
h2 { font-size: 1.35rem; margin-top: var(--space-l); }
h3 { font-size: 1.1rem;  margin-top: var(--space-m); }

p, ul, ol { margin: 0 0 var(--space-m); }

/* ===== Masthead ============================================================ */

.site-header {
  background: var(--navy);
  background-image: linear-gradient(180deg, #2b4f83 0%, var(--navy) 55%, var(--navy-deep) 100%);
  border-bottom: 4px solid var(--yellow);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-m);
  padding-block: var(--space-m);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  text-decoration: none;
  color: var(--white);
  margin-right: auto;
}
.site-header__brand:visited { color: var(--white); }

.site-header__brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  background: var(--yellow);
  color: var(--navy-deep);
  border: 2px solid var(--white);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-header__brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.1;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.45);
}
.site-header__brand-text strong { color: var(--yellow); }

.site-header__tag {
  display: block;
  font-family: Verdana, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6e0ef;
  text-shadow: none;
  margin-top: 3px;
}

/* Phone / CTA block on the right of the masthead — the era's signature move. */
.site-header__call {
  text-align: right;
  color: var(--white);
  font-size: var(--text-s);
}
.site-header__call .lbl {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d6e0ef;
}
.site-header__call .num {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--yellow);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__call .num:visited { color: var(--yellow); }

/* ===== Navigation ========================================================== */

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }

.nav-toggle__btn {
  display: none;
  cursor: pointer;
  padding: var(--space-s) var(--space-m);
  background: var(--yellow);
  color: var(--navy-deep);
  border: 2px outset var(--yellow);
  font-weight: 700;
  font-size: var(--text-s);
  text-transform: uppercase;
}

/* The nav is the last flex item in the masthead; flex-basis 100% drops it
   onto its own full-width row, giving the period-correct button bar. */
.site-nav {
  flex: 1 0 100%;
  background: var(--navy-deep);
  border-top: 2px solid var(--yellow);
  margin-bottom: calc(-1 * var(--space-m));
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list li { border-right: 1px solid #33507d; }
.site-nav__list li:first-child { border-left: 1px solid #33507d; }

.site-nav__list a {
  display: block;
  padding: 9px 18px;
  color: var(--white);
  text-decoration: none;
  font-size: var(--text-s);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.site-nav__list a:visited { color: var(--white); }
.site-nav__list a:hover,
.site-nav__list a:focus-visible { background: var(--yellow); color: var(--navy-deep); }

.site-nav__call { display: none; }

/* ===== Page shell ========================================================== */

main { display: block; }

.shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 0;
  padding: var(--space-l) var(--space-m) var(--space-xl);
}

/* Two-column classic layout: content left, sidebar right. */
.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
}
.layout-full { display: block; }

/* ===== Hero / photo banner ================================================= */

/* The hero works with or without a photo. With no --hero set it renders as a
   solid banner, which is what these sites ship until real job photos exist:
   a wrong or generated photo costs more trust on a local trade site than
   no photo at all. Set --hero on the section to layer one in. */
.hero {
  position: relative;
  background: var(--navy-deep) var(--hero, none) center / cover no-repeat;
  background-image: var(--hero, linear-gradient(160deg, #2b4f83 0%, var(--navy) 45%, var(--navy-deep) 100%));
  border-bottom: 4px solid var(--yellow);
  color: var(--white);
}
/* Scrim only when a photo is actually layered in. */
.hero[style*="--hero"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 45, 0.68);
}
.hero__inner { position: relative; z-index: 1; padding-block: var(--space-xl); }
.hero__title {
  color: var(--white);
  font-size: 1.9rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  margin-bottom: var(--space-s);
}
.hero__title span { color: var(--yellow); }
.hero__lead { max-width: 90ch; font-size: var(--text-b); margin-bottom: var(--space-m); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-s); }

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s) var(--space-l);
  margin: var(--space-m) 0 0;
  padding: 0;
  font-size: var(--text-s);
}
.hero__trust li::before { content: "\2713 "; color: var(--yellow); font-weight: 700; }

/* ===== Buttons ============================================================= */

.btn {
  display: inline-block;
  padding: 9px 18px;
  font-family: Verdana, sans-serif;
  font-size: var(--text-s);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px outset var(--yellow);
  background: var(--yellow);
  color: var(--navy-deep);
}
.btn:visited { color: var(--navy-deep); }
.btn:hover, .btn:focus-visible { background: #ffd633; color: var(--navy-deep); }
.btn:active { border-style: inset; }

.btn--ghost {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-deep);
}
.btn--ghost:visited { color: var(--navy-deep); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: #eef1f5; }

.btn--lg { padding: 12px 24px; font-size: 0.9rem; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ===== Trust bar =========================================================== */

.trustbar {
  background: var(--panel);
  border-bottom: 1px solid var(--border-lt);
}
.trustbar__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-m);
  margin: 0;
  padding: var(--space-m) 0;
  text-align: center;
}
.trustbar__item strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--navy);
}
.trustbar__item span { font-size: var(--text-s); color: var(--ink-soft); }

/* ===== Sections ============================================================ */

.section { padding-block: var(--space-l); }
.section--mist { background: var(--panel-alt); }
.section__head { margin-bottom: var(--space-m); }
.section__head.center { text-align: center; }
.section__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dk);
}
.section__title { margin-top: 2px; }
.section__lead { color: var(--ink-soft); }
.prose { max-width: none; }
.text-soft { color: var(--ink-soft); }

/* Classic sectioned box with a title bar. */
.panel {
  border: 1px solid var(--border);
  background: var(--white);
  margin-bottom: var(--space-m);
}
.panel__head {
  background: var(--navy);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 7px var(--space-m);
  border-bottom: 2px solid var(--yellow);
}
.panel__body { padding: var(--space-m); }

/* ===== Grids & cards ======================================================= */

.grid { display: grid; gap: var(--space-m); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--split { grid-template-columns: 1.35fr 1fr; gap: var(--space-xl); }

.card {
  border: 1px solid var(--border);
  background: var(--panel-alt);
  padding: var(--space-m);
}
.card--link { text-decoration: none; color: inherit; display: block; }
.card--link:visited { color: inherit; }
.card--link:hover, .card--link:focus-visible {
  background: #fffdf0;
  border-color: var(--yellow-dk);
}
.card__icon { font-size: 1.6rem; line-height: 1; margin-bottom: var(--space-xs); }
.card__title { font-size: 1.05rem; margin: 0 0 var(--space-xs); }
.card__text { font-size: var(--text-s); color: var(--ink-soft); margin-bottom: var(--space-xs); }
.card__more { font-size: var(--text-s); font-weight: 700; color: var(--link); }

/* ===== Photo frames — bordered with a caption, as the era did ============== */

.photo {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 5px;
  margin: 0 0 var(--space-m);
}
.photo img { display: block; width: 100%; }
.photo figcaption {
  font-size: 0.75rem;
  color: var(--ink-soft);
  padding: 5px 3px 2px;
  border-top: 1px solid var(--border-lt);
  margin-top: 5px;
}
.photo--right { float: right; width: 46%; margin: 0 0 var(--space-m) var(--space-m); }

/* Derived from the container, not guessed: 1140 - 48 padding - 32 shell = 1060
   content, and a sidebar page's main column is 1060 - 300 - 34 gap = 726. Cap
   the inline figures at that so a photo is the same size whether or not the
   page has a sidebar, rather than ballooning on the full-width ones. */
.prose > .photo { max-width: 726px; }

/* A floated figure must not run under the heading or table that follows it.
   No-op on pages with no photos. */
.prose > h2,
.prose > h3,
.prose table { clear: both; }

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}
.photo-row .photo { margin-bottom: 0; }

/* ===== Lists =============================================================== */

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: var(--space-xs);
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}
.stack-sm > * + * { margin-top: var(--space-xs); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-m);
}
.steps__item {
  border: 1px solid var(--border);
  background: var(--panel-alt);
  padding: var(--space-m);
  text-align: center;
}
.steps__num {
  width: 34px;
  height: 34px;
  margin: 0 auto var(--space-xs);
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--yellow);
  font-family: Georgia, serif;
  font-weight: 700;
}

/* ===== Sidebar ============================================================= */

aside .card { background: var(--panel); }
.side-title {
  background: var(--navy);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 0.95rem;
  padding: 6px var(--space-s);
  margin: 0 0 var(--space-s);
  border-bottom: 2px solid var(--yellow);
}

/* ===== Quotes ============================================================== */

.quote {
  border: 1px solid var(--border);
  background: var(--panel-alt);
  margin: 0;
  padding: var(--space-m);
}
.quote__stars { color: var(--yellow-dk); letter-spacing: 2px; }
.quote__text { font-size: var(--text-s); font-style: italic; }
.quote__who { font-weight: 700; font-size: var(--text-s); }
.quote__where { font-size: 0.75rem; color: var(--ink-soft); }

/* ===== FAQ ================================================================= */

.faq__item {
  border: 1px solid var(--border-lt);
  background: var(--white);
  margin-bottom: 6px;
}
.faq__item summary {
  cursor: pointer;
  padding: 9px var(--space-m);
  font-weight: 700;
  font-size: var(--text-s);
  background: var(--panel);
  color: var(--navy-deep);
}
.faq__item summary:hover { background: #e3e9f1; }
.faq__body { padding: var(--space-m); font-size: var(--text-s); border-top: 1px solid var(--border-lt); }

/* ===== Breadcrumb / page hero ============================================= */

.page-hero {
  background: var(--navy);
  background-image: linear-gradient(180deg, #2b4f83, var(--navy-deep));
  color: var(--white);
  border-bottom: 4px solid var(--yellow);
  padding-block: var(--space-l);
}
.page-hero__title { color: var(--white); margin-bottom: var(--space-xs); }
.page-hero__lead { max-width: 95ch; margin: 0; color: #dce4ef; }

.breadcrumb {
  background: var(--panel);
  border-bottom: 1px solid var(--border-lt);
  font-size: var(--text-s);
}
.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: 0;
  padding: 7px 0;
}
.breadcrumb li + li::before { content: "\203A"; margin-right: var(--space-xs); color: var(--ink-soft); }

/* ===== CTA band ============================================================ */

.cta-band {
  background: var(--navy-deep);
  color: var(--white);
  border-top: 4px solid var(--yellow);
  padding-block: var(--space-l);
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
}
.cta-band__title { color: var(--white); margin: 0; font-size: 1.25rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--space-s); }

/* ===== Forms =============================================================
   Class names here must match includes/quote-form.php, which uses BEM-ish
   .form__* names. An earlier pass styled .form-row / .form-hint, which the
   markup never emits, so the form rendered completely unstyled.
   ========================================================================== */

.form {
  background: var(--panel-alt);
  border: 1px solid var(--border);
  padding: var(--space-m);
}
aside .form,
.card .form { background: transparent; border: 0; padding: 0; }

.form__row { margin-bottom: var(--space-s); }
.form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-s);
}
.form__group { margin-bottom: var(--space-s); }

.form__label {
  display: block;
  font-family: Verdana, sans-serif;
  font-size: var(--text-s);
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 3px;
  padding: 0;
}
/* required marker */
.form__label span { color: var(--err); font-weight: 700; }

.form__control {
  width: 100%;
  padding: 8px 9px;
  font: inherit;
  font-size: var(--text-s);
  color: var(--ink);
  background: var(--white);
  border: 2px inset #cfd6e0;
  border-radius: 0;
}
.form__control::placeholder { color: #8b939d; }
.form__control:hover { background: #fffef7; }
.form__control:focus {
  outline: none;
  border: 2px solid var(--navy);
  background: #fffdf0;
  box-shadow: inset 0 0 0 1px var(--yellow);
}
textarea.form__control { min-height: 104px; resize: vertical; line-height: 1.55; }

/* Service checkboxes — a bordered box with a title bar, period-correct */
.form__fieldset {
  border: 1px solid var(--border-lt);
  background: var(--white);
  padding: 0;
  margin: 0 0 var(--space-s);
  min-width: 0;
}
.form__fieldset > .form__label {
  display: block;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: Georgia, serif;
  padding: 6px var(--space-s);
  margin: 0;
  border-bottom: 2px solid var(--yellow);
}
.form__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px var(--space-s);
  padding: var(--space-s);
}
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: var(--text-s);
  line-height: 1.4;
  padding: 4px 5px;
  cursor: pointer;
}
.form__check:hover { background: #fffdf0; }
.form__check input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  flex: none;
  accent-color: var(--navy);
}
.form__check:has(input:checked) {
  background: #fff8d6;
  font-weight: 700;
}

/* honeypot — off-screen, never shown, never focusable in the tab order */
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__note {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: var(--space-s) 0 0;
  padding-top: var(--space-s);
  border-top: 1px solid var(--border-lt);
}

.form button[type="submit"] { margin-top: var(--space-xs); }

/* Turnstile widget spacing when enabled */
.cf-turnstile { margin: var(--space-s) 0; }

.alert {
  border: 2px solid;
  padding: var(--space-s) var(--space-m);
  font-size: var(--text-s);
  margin-bottom: var(--space-m);
}
.alert--err { border-color: var(--err); background: #fdf0ef; color: var(--err); }
.alert--ok  { border-color: var(--ok);  background: #eff7f0; color: var(--ok); }

@media (max-width: 620px) {
  .form__row--2 { grid-template-columns: 1fr; }
  .form__checks { grid-template-columns: 1fr; }
}

/* ===== Footer ============================================================== */

.site-footer {
  background: var(--navy-deep);
  color: #cdd7e5;
  border-top: 4px solid var(--yellow);
  font-size: var(--text-s);
  padding-block: var(--space-l);
}
.site-footer a { color: #ffe071; }
.site-footer a:visited { color: #ffe071; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-l);
}
.site-footer__title {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0 0 var(--space-xs);
  border-bottom: 1px solid #33507d;
  padding-bottom: 3px;
}
.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin-bottom: 3px; }
.site-footer__phone { font-family: Georgia, serif; font-size: 1.1rem; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-s);
  border-top: 1px solid #33507d;
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  font-size: 0.75rem;
}

/* ===== Sticky mobile call bar ============================================= */

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  padding: 13px var(--space-m);
  background: var(--yellow);
  color: var(--navy-deep);
  border-top: 3px solid var(--yellow-dk);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
}
.call-bar:visited { color: var(--navy-deep); }

/* ===== Responsive ========================================================== */

@media (max-width: 860px) {
  .layout { grid-template-columns: 1fr; }
  .grid--3,
  .grid--4,
  .photo-row { grid-template-columns: repeat(2, 1fr); }
  .grid--split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trustbar__list { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { padding-bottom: 60px; }
  .site-header__inner { padding-block: var(--space-s); }
  .site-header__brand-text { font-size: 1.25rem; }
  .site-header__call { text-align: left; width: 100%; }

  .nav-toggle__btn { display: block; margin-left: auto; }
  .site-nav { display: none; }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav__list { flex-direction: column; }
  .site-nav__list li { border: 0; border-top: 1px solid #33507d; }
  .site-nav__list li:first-child { border-left: 0; }

  .grid--3,
  .grid--4,
  .photo-row,
  .steps,
  .trustbar__list,
  .site-footer__grid { grid-template-columns: 1fr; }

  .photo--right { float: none; width: auto; margin-left: 0; }
  .hero__title { font-size: 1.5rem; }
  .call-bar { display: block; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media print {
  .site-nav, .call-bar, .cta-band, .nav-toggle__btn { display: none !important; }
  body { background: #fff; }
}

/* ===== Tables — period-correct: ruled, boxed, striped ==================== */

.prose table,
.panel__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-m);
  font-size: var(--text-s);
  border: 1px solid var(--border);
  background: var(--white);
}
.prose th, .panel__body th {
  text-align: left;
  background: var(--navy);
  color: var(--white);
  font-family: Georgia, serif;
  font-weight: 700;
  padding: 8px 10px;
  border-right: 1px solid #33507d;
  border-bottom: 2px solid var(--yellow);
}
.prose th:last-child, .panel__body th:last-child { border-right: 0; }
.prose td, .panel__body td {
  padding: 8px 10px;
  border-right: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  vertical-align: top;
}
.prose td:last-child, .panel__body td:last-child { border-right: 0; }
.prose tbody tr:nth-child(even),
.panel__body tbody tr:nth-child(even) { background: var(--panel-alt); }
.prose tbody tr:last-child td,
.panel__body tbody tr:last-child td { border-bottom: 0; }

/* Wide tables scroll inside their own box rather than pushing the page out. */
.prose table, .panel__body table { display: table; }
@media (max-width: 620px) {
  .prose, .panel__body { overflow-x: auto; }
  .prose table, .panel__body table { min-width: 34rem; }
}

/* Give the prose column real breathing room now that it runs full width. */
.prose > h2 { margin-top: var(--space-xl); }
.prose > h2:first-child { margin-top: 0; }
.prose > ul, .prose > ol { padding-left: 1.3em; }
.prose > ul li, .prose > ol li { margin-bottom: var(--space-xs); }
