/* ─────────────────────────────────────────────────────────────────────
   Content pages (about, guides)
   ───────────────────────────────────────────────────────────────────── */

.content-page {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.content-page h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--navy);
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
  color: var(--ink);
}

.content-page p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.content-page ul {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}

.content-page li {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.content-page a {
  color: var(--brass-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-page a:hover {
  color: var(--brass);
}

/* ─── Tables ─────────────────────────────────────────────────────── */

.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.content-table th,
.content-table td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 0.5px solid var(--rule);
}

.content-table th {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  opacity: 0.7;
}

.content-table td:first-child {
  font-weight: 500;
  white-space: nowrap;
}

.content-table--compare th:first-child {
  width: 30%;
}

.content-table--compare td:nth-child(2) {
  color: var(--brass-deep);
  font-weight: 500;
}

/* ─── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .content-page h2 { font-size: 1.3rem; }

  .content-table {
    font-size: 0.82rem;
  }

  .content-table th,
  .content-table td {
    padding: 0.4rem 0.5rem;
  }
}
