/* A quiet contact page: one editorial introduction followed by three useful
   routes into the publication. Loaded after publication-interiors.css. */

.contact-page {
  max-width: 1180px;
  margin-inline: auto;
}

.contact-list { border-bottom: 1px solid var(--line); }

.contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: end;
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child { border-bottom: 0; }

.contact-row-copy .eyebrow { margin-bottom: 8px; }

.contact-row h2 {
  margin: 0 0 9px;
  font-family: var(--body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.015em;
}

.contact-row h2 a {
  color: var(--brand-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.contact-row-copy > p:last-child {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  line-height: 1.7;
}

.contact-arrow {
  color: var(--brand-blue);
  font-size: .79rem;
  font-weight: 700;
  white-space: nowrap;
}

.contact-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 26px 27px;
  }

  .contact-arrow { justify-self: start; }
}

@media (max-width: 360px) {
  .contact-row h2 { font-size: 1rem; }
}
