/* SplitWeb — article pages (loaded after styles.css) */

.article {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.1rem, 4vw, 2.5rem) clamp(3rem, 7vw, 5rem);
}

.crumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.6rem;
}
.crumb a { color: var(--dim); text-decoration: none; }
.crumb a:hover { color: var(--ink); }
.crumb span { color: var(--line); }

.article h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-stretch: 108%;
  line-height: 1.08;
  margin-bottom: 1.1rem;
}

.standfirst {
  color: var(--mute);
  font-size: 1.12rem;
  line-height: 1.62;
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-soft);
}

.prose { color: var(--mute); font-size: 1.02rem; line-height: 1.72; }
.prose > p { margin-bottom: 1.15em; }
.prose strong { color: var(--ink); font-weight: 600; }

.prose h2 {
  color: var(--ink);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-stretch: 106%;
  line-height: 1.2;
  margin: 2.9rem 0 1rem;
}

.prose h3 {
  color: var(--ink);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 2rem 0 .6rem;
}

.prose a { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(59, 123, 255, .35); }
.prose a:hover { color: #7aa5ff; border-bottom-color: #7aa5ff; }

.prose ul { margin: 0 0 1.15em; padding-left: 1.1rem; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--dim); }

.prose code {
  font-family: var(--mono);
  font-size: .88em;
  color: #cfd6ea;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  padding: .1em .38em;
}

.callout {
  margin: 1.8rem 0;
  padding: 1.15rem 1.3rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--amber);
  border-radius: 0 10px 10px 0;
  background: var(--panel-2);
  color: var(--mute);
  font-size: .96rem;
  line-height: 1.6;
}
.callout strong { display: block; color: var(--ink); margin-bottom: .3rem; }

/* ---------- FAQ ---------- */

.qa { border-top: 1px solid var(--line-soft); }
.qa > div { border-bottom: 1px solid var(--line-soft); padding: 1.6rem 0; }
.qa h2 {
  color: var(--ink);
  font-size: 1.08rem;
  font-stretch: 104%;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 .55rem;
}
.qa p { color: var(--mute); font-size: 1rem; line-height: 1.65; margin: 0; }
.qa p + p { margin-top: .6rem; }

/* ---------- end matter ---------- */

.cta-card {
  margin: 3.2rem 0 0;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0e1120, #0a0c18);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.cta-card img { border-radius: 14px; }
.cta-card h2 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); max-width: 22ch; }

.related { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); }
.related p { margin-bottom: .9rem; }
.related ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.related a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  gap: .5rem;
}
.related a::after { content: "→"; color: var(--dim); transition: transform .18s ease; }
.related a:hover::after { transform: translateX(3px); }
