/* AmraCore — content/article styles (uses tokens from styles.css) */

/* Force light theme on content pages by default */
html { color-scheme: light; }

.content-shell { padding: 56px 0 80px; position: relative; z-index: 1; }
.content-shell .bg-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: var(--brand-glow); filter: blur(140px); opacity: 0.35;
  pointer-events: none; z-index: 0;
}

.crumbs {
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3); margin-bottom: 24px;
  display: flex; gap: 8px; flex-wrap: wrap;
  letter-spacing: 0.02em;
}
.crumbs a { color: var(--ink-2); transition: color .2s; }
.crumbs a:hover { color: var(--brand); }
.crumbs span { color: var(--ink-4); }

.article {
  max-width: 760px; margin: 0 auto;
  position: relative; z-index: 2;
}
.article h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 700; margin-bottom: 18px;
  text-wrap: balance;
}
.article .lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2); line-height: 1.55;
  margin-bottom: 40px; text-wrap: pretty;
}
.article .meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3); margin-bottom: 56px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
  letter-spacing: 0.02em;
}
.article .meta b { color: var(--ink-2); font-weight: 600; }

.article h2 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15; letter-spacing: -0.02em;
  font-weight: 700; margin: 56px 0 18px;
  text-wrap: balance;
}
.article h3 {
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 700; letter-spacing: -0.01em;
  margin: 36px 0 10px;
}
.article p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink); margin-bottom: 20px;
  max-width: 68ch;
}
.article p strong, .article li strong { color: var(--ink); font-weight: 600; }
.article a {
  color: var(--brand); border-bottom: 1px solid color-mix(in oklab, var(--brand) 30%, transparent);
  transition: border-color .2s, color .2s;
}
.article a:hover { color: var(--ink); border-color: var(--ink); }

.article ul, .article ol {
  margin: 8px 0 28px; padding-left: 0; list-style: none;
}
.article ol { counter-reset: ol-counter; }
.article ol > li {
  counter-increment: ol-counter;
  position: relative; padding-left: 44px;
  font-size: 17px; line-height: 1.7; color: var(--ink);
  margin-bottom: 14px;
}
.article ol > li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute; left: 0; top: 1px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: var(--brand);
  width: 32px;
}
.article ul > li {
  position: relative; padding-left: 28px;
  font-size: 17px; line-height: 1.7; color: var(--ink);
  margin-bottom: 10px;
}
.article ul > li::before {
  content: ''; position: absolute; left: 6px; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
}

.article hr {
  border: none; border-top: 1px solid var(--line);
  margin: 56px 0;
}

.article .faq h3 {
  font-size: 18px; font-weight: 700;
  margin-top: 32px; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.article .faq h3:first-of-type { margin-top: 12px; }
.article .faq p { margin-bottom: 12px; }

.article .cta-box {
  margin-top: 64px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.article .cta-box h3 {
  margin: 0; font-size: 22px; letter-spacing: -0.02em;
}
.article .cta-box p { margin-bottom: 0; max-width: none; }
.article .cta-box .actions {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px;
}

/* Service overview cards (for /diensten/) */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.svc-card:hover {
  border-color: color-mix(in oklab, var(--brand) 35%, var(--line));
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -20px var(--brand-glow);
}
.svc-card .tag {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.svc-card h3 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.svc-card p {
  font-size: 14px; color: var(--ink-2); line-height: 1.55;
  margin-bottom: 18px;
}
.svc-card .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand); font-weight: 600; font-size: 14px;
  margin-top: auto; transition: gap .2s;
}
.svc-card:hover .arrow { gap: 12px; }
.svc-card.soon { opacity: 0.65; }
.svc-card.soon .arrow { color: var(--ink-3); }
