/* ============================================================
   ABI Guide — news article pages (news/<slug>.html)
   Reuses global tokens from style.css
============================================================ */

.article { padding: calc(var(--nav-h) + var(--sp-10)) 0 var(--sp-24); }
.article__wrap {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.article__hd { margin: var(--sp-4) 0 var(--sp-6); }
.article__readtime {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.article__title {
  font-family: var(--font-hd);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin: var(--sp-3) 0;
  text-wrap: balance;
}
.article__lede {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.article__hero {
  height: 300px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--sp-8);
}
.article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article__body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 68ch;
}
.article__body p { margin-bottom: var(--sp-4); }
.article__body strong { color: var(--ink); font-weight: 500; }
.article__body a { color: var(--amber); }
.article__body a:hover { color: var(--amber-bright); text-decoration: underline; }
.article__body h2 {
  font-family: var(--font-hd);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: var(--sp-8) 0 var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.article__body h3 {
  font-family: var(--font-hd);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: var(--sp-6) 0 var(--sp-2);
}
.article__body ul {
  list-style: none;
  margin: 0 0 var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.article__body ul li {
  position: relative;
  padding-left: var(--sp-5);
}
.article__body ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--amber-dim);
  transform: rotate(45deg);
}

@media (max-width: 560px) {
  .article__hero { height: 200px; }
}
