.article {
  padding: 32px 0 64px;
}
.article-header {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.article-eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.article-header h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.article-header .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.article-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 16px;
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

.article-cover {
  max-width: 1100px;
  margin: 0 auto 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 16 / 9;
}
.article-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.article-body > * { margin: 0 0 20px; }
.article-body h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  color: var(--ink);
}
.article-body h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.3;
  margin: 32px 0 12px;
  color: var(--ink);
}
.article-body p { margin: 0 0 18px; }
.article-body a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--blue-700); }
.article-body ul,
.article-body ol {
  padding-left: 22px;
  margin: 0 0 20px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body blockquote {
  border-left: 4px solid var(--blue);
  background: var(--blue-50);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--ink);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 20px 0;
}
.article-body th,
.article-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.article-body th {
  background: var(--bg-2);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
}
.article-body tr:last-child td { border-bottom: 0; }

.quick-answer {
  max-width: 720px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, var(--blue-50), var(--green-100));
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 22px 24px;
}
.quick-answer .qa-label {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 8px;
}
.quick-answer h2,
.quick-answer p:first-of-type {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.4;
}
.quick-answer p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  color: var(--ink-2);
}

.inline-cta {
  max-width: 720px;
  margin: 36px auto;
  padding: 24px;
  background: var(--bg-2);
  border-radius: var(--r);
  text-align: center;
}
.inline-cta h3 {
  font-family: var(--display);
  font-size: 22px;
  margin: 0 0 8px;
}
.inline-cta p { margin: 0 0 16px; color: var(--ink-2); font-size: 15px; }

.cta-block { padding: 64px 0; background: var(--bg-2); }
.cta-card {
  background: linear-gradient(135deg, var(--ink) 0%, oklch(28% 0.06 252) 100%);
  border-radius: var(--r-xl);
  padding: 48px;
  color: white;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-card h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: white;
}
.cta-card p { margin: 0 0 16px; opacity: 0.85; font-size: 15px; line-height: 1.6; }
.cta-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}
.cta-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  color: oklch(88% 0.18 145);
  font-weight: 600;
}
.cta-bullets li::before { content: "✓"; }
.cta-actions {
  display: flex; flex-direction: column; gap: 12px;
}
.cta-actions .btn { width: 100%; justify-content: center; }
.cta-actions .btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
}
.cta-actions .btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.32); }

@media (max-width: 760px) {
  .cta-card { grid-template-columns: 1fr; padding: 32px 24px; }
}

.related { padding: 56px 0; }
.related-title {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 28px);
  text-align: center;
  margin: 0 0 28px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.related-card {
  position: relative;
  display: block;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  color: var(--ink);
  text-decoration: none;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue-100);
}
.related-card h3 {
  font-family: var(--display);
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
}
.related-card p {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}
.related-arrow {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 18px;
  color: var(--blue);
  transition: transform .15s;
}
.related-card:hover .related-arrow { transform: translateX(3px); }

.page-faq {
  max-width: 760px;
  margin: 48px auto 0;
}
.page-faq h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 30px);
  margin: 0 0 20px;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card .cover {
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  overflow: hidden;
}
.blog-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 {
  font-family: var(--display);
  font-size: 19px;
  margin: 0 0 8px;
  line-height: 1.3;
}
.blog-card .excerpt {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0 0 14px;
  line-height: 1.55;
}
.blog-card .meta {
  margin-top: auto;
  font-size: 12px;
  color: var(--ink-3);
  display: flex; gap: 12px;
}
