/* Blog typography */
.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #F0F0F5;
  background: linear-gradient(135deg, #00F5A0, #00D9FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #F0F0F5;
}

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

.article-content ul,
.article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: #C0C4D6;
  line-height: 1.8;
}

.article-content ul { list-style-type: disc; }
.article-content ol { list-style-type: decimal; }
.article-content li { margin-bottom: 0.5rem; }

.article-content strong {
  color: #F0F0F5;
  font-weight: 600;
}

.article-content a:not(.btn-primary) {
  color: #00F5A0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.article-content a:not(.btn-primary):hover {
  color: #00D9FF;
}

.article-content blockquote {
  border-left: 3px solid #00F5A0;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(0, 245, 160, 0.05);
  border-radius: 0 8px 8px 0;
  color: #C0C4D6;
  font-style: italic;
}

.article-content img {
  border-radius: 12px;
  margin: 1.5rem 0;
  max-width: 100%;
}

/* Article meta (date + reading time) */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #6B7094;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

/* CTA block inside article */
.article-cta {
  border: 1px solid rgba(0, 245, 160, 0.3);
  background: rgba(26, 31, 46, 0.8);
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.article-cta p {
  color: #C0C4D6;
  margin-bottom: 1rem;
}

.article-cta .cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F0F0F5;
  margin-bottom: 0.5rem;
}

/* Blog card (listing) */
.blog-card {
  border: 1px solid #1E2235;
  border-radius: 16px;
  padding: 1.5rem;
  background: #1A1F2E;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(0, 245, 160, 0.3);
  box-shadow: 0 0 40px rgba(0, 245, 160, 0.08);
  transform: translateY(-4px);
}

.blog-card .card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #F0F0F5;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card .card-excerpt {
  color: #8B8FA3;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6B7094;
  font-size: 0.8125rem;
}

.blog-card .card-link {
  color: #00F5A0;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.blog-card .card-link:hover {
  color: #00D9FF;
}

/* Related articles */
.related-card {
  border: 1px solid #1E2235;
  border-radius: 12px;
  padding: 1.25rem;
  background: #1A1F2E;
  transition: all 0.3s;
}

.related-card:hover {
  border-color: rgba(0, 245, 160, 0.3);
  box-shadow: 0 0 30px rgba(0, 245, 160, 0.06);
}
