/* ─── CONTENT PAGES (vs/ and what-is/) ─── */

/* Article prose */
.content-body {
  max-width: 760px;
}

.content-body h2 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.25;
  margin: 48px 0 16px;
}

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

.content-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-body strong {
  color: var(--white);
  font-weight: 600;
}

.content-body em {
  color: var(--white);
  font-style: italic;
}

/* ─── COMPARISON TABLE ─── */
.comparison-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  margin: 40px 0 8px;
  overflow: hidden;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
  transition: background 0.2s;
}

.ct-row:last-child {
  border-bottom: none;
}

.ct-row:not(.ct-header):hover {
  background: #111111;
}

.ct-row span {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.ct-row span:not(:first-child) {
  border-left: 1px solid var(--border);
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
}

/* Header row */
.ct-header {
  background: var(--near-black);
}

.ct-header span {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
}

/* Yes / No indicators */
.ct-yes {
  color: var(--accent) !important;
}

.ct-no {
  color: #666 !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .ct-row {
    grid-template-columns: 1fr 90px 90px;
  }

  .ct-row span {
    padding: 14px 12px;
    font-size: 13px;
  }

  .ct-row span:not(:first-child) {
    font-size: 12px;
    padding: 14px 8px;
  }

  .content-body h2 {
    margin-top: 36px;
  }
}
