/* ── Why BSD? article styles ── */

.article-body {
  max-width: 740px;
  margin: 0 auto;
}
.article-body h2 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--cyan);
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body p {
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 1rem;
}
.article-body ul {
  margin: 0 0 1rem 0;
  padding-left: 0;
  list-style: none;
}
.article-body ul li {
  color: var(--text);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}
.article-body ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.article-body strong {
  color: var(--text-bright);
  font-weight: 500;
}

.callout-box {
  border: 1px solid var(--cyan);
  background: rgba(0, 200, 240, 0.04);
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0;
}
.callout-box p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}
.callout-box a {
  color: var(--cyan);
  text-decoration: none;
}
.callout-box a:hover {
  text-decoration: underline;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.85rem;
}
.compare-table th {
  text-align: left;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.875rem;
  border-bottom: 1px solid var(--border-bright);
  background: var(--surface);
}
.compare-table td {
  padding: 0.625rem 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child {
  color: var(--text-bright);
  font-weight: 500;
  white-space: nowrap;
}

.article-cta {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem;
  text-align: center;
  margin-top: 3.5rem;
}
.article-cta__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-bright);
  margin: 0 0 0.5rem;
}
.article-cta__sub {
  color: var(--text);
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
}
