@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.10), transparent 22%),
    linear-gradient(180deg, #f8fcfa 0%, #ffffff 26%, #f8fafc 100%);
}

.font-display {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
}

.article-prose {
  font-size: 1.05rem;
  line-height: 1.9;
}

.article-prose p {
  margin: 0 0 1.1rem;
  color: #334155;
}

.article-prose h2,
.article-prose h3 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  color: #0f172a;
  scroll-margin-top: 6rem;
}

.article-prose h2 {
  margin: 2rem 0 0.9rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.article-prose h3 {
  margin: 1.6rem 0 0.75rem;
  font-size: 1.2rem;
  line-height: 1.35;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: #334155;
}

.article-prose li + li {
  margin-top: 0.55rem;
}

.article-prose li::marker {
  color: #059669;
  font-weight: 700;
}

.article-prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #059669;
  background: #f0fdf4;
  border-radius: 0.75rem;
  color: #0f172a;
  font-weight: 600;
}

.article-prose table {
  width: 100%;
  border-collapse: collapse;
}

.article-prose th,
.article-prose td {
  vertical-align: top;
}

::selection {
  background: rgba(5, 150, 105, 0.2);
}

