/* ─── Contact page (/contact/) ──────────────────────────
   FAQ sidebar widget, plus a small responsive tweak that
   collapses the form/widget 2-col row on mobile.
   ──────────────────────────────────────────────────────── */

/* ── FAQ sidebar widget ─────────────────────────────── */
.ch-faq-widget {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--secondary);
  margin: 0;
  /* Pin to the top of the side column so it lines up with the form's section head */
  align-self: start;
}

.ch-faq-widget__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}

.ch-faq-widget__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ch-faq-widget__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.ch-faq-widget__item:first-child {
  padding-top: 0;
}

.ch-faq-widget__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.ch-faq-widget__q {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tertiary-dark);
}

.ch-faq-widget__a {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.ch-faq-widget__a a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.ch-faq-widget__a a:hover {
  color: var(--tertiary-dark);
}

/* Sidebar drops below the form on tablet/phone */
@media (max-width: 980px) {
  .ch-faq-widget {
    margin-top: 16px;
  }
}
