/* Shared styles for KreyòlAIHub long-form articles. */
.art-hero { padding: 78px 0 44px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line-2); }
.art-hero::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 680px 360px at 12% 0%, rgba(77,139,255,0.12), transparent 60%),
    radial-gradient(ellipse 680px 360px at 100% 100%, rgba(255,198,46,0.10), transparent 60%);
}
.art-hero > * { position: relative; }
.art-hero .crumbs { font-size: 13px; color: var(--ink-4); margin-bottom: 12px; }
.art-hero .crumbs a { color: var(--ink-3); text-decoration: none; }
.art-hero .crumbs a:hover { color: var(--amber); }
.art-hero .eyebrow { justify-content: flex-start; }
.art-hero h1 { margin-top: 12px; font-size: clamp(28px, 4.6vw, 46px); line-height: 1.1; }
.art-hero h1 .accent { color: var(--amber); }
.art-hero .lead { font-size: 18px; color: var(--ink-3); max-width: 730px; margin-top: 18px; line-height: 1.62; }

.art-body { padding: 50px 0 24px; }
.art-body .wrap { max-width: 820px; margin: 0 auto; }

.prose h2 { font-size: clamp(22px, 3.2vw, 30px); margin: 42px 0 8px; scroll-margin-top: 90px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 24px 0 6px; color: var(--ink); }
.prose p { color: var(--ink-2); font-size: 16.5px; line-height: 1.72; margin: 13px 0; }
.prose ul, .prose ol { margin: 12px 0; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding: 7px 0 7px 30px; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.prose ul li::before { content:"→"; position:absolute; left:0; color: var(--green); font-weight:700; }
.prose ol { counter-reset: i; }
.prose ol li { position: relative; padding: 8px 0 8px 40px; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.prose ol li::before {
  counter-increment: i; content: counter(i);
  position: absolute; left: 0; top: 6px;
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(255,198,46,0.16); color: var(--amber);
  display: inline-flex; align-items: center; justify-content: center;
  font-family:'Poppins'; font-weight: 800; font-size: 14px;
}
.prose strong { color: var(--ink); }
.prose a { color: var(--amber); text-decoration: underline; }

.callout {
  background: linear-gradient(135deg, rgba(77,139,255,0.08), rgba(52,224,140,0.05));
  border: 1px solid var(--line); border-left: 3px solid var(--amber);
  border-radius: 14px; padding: 20px 24px; margin: 24px 0;
}
.callout p { margin: 6px 0; }
.callout .k { color: var(--ink); font-weight: 600; }

.faq-wrap { margin-top: 8px; }
.faq-item { border-top: 1px solid var(--line-2); padding: 20px 0; }
.faq-item h3 { margin: 0 0 8px; font-size: 18px; }
.faq-item p { margin: 0; }

.cta-band { background: var(--bg-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 64px 0; text-align: center; }
.cta-band h2 { font-size: clamp(24px, 3.6vw, 34px); }
.cta-band p { color: var(--ink-3); font-size: 16.5px; max-width: 560px; margin: 14px auto 24px; line-height: 1.6; }
.cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
