﻿.article-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  color: #475569;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content strong {
  color: #0f172a;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbeafe;
  background: linear-gradient(135deg, #eff6ff, #f8fafc 55%, #ffffff);
}

.blog-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0));
  pointer-events: none;
}

.blog-card {
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
}

.blog-article {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.blog-cta {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, #020617, #0f172a);
}

.callout-box {
  border: 1px solid #dbeafe;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}
