/* Blog Post Typography Styles */
.blog-content {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
}

.blog-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-top: 48px;
  margin-bottom: 24px;
  line-height: 1.25;
}

.blog-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.blog-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.7;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 24px;
  padding-left: 28px;
}

.blog-content li {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.6;
}

.blog-content strong {
  font-weight: 600;
  color: #1f2937;
}

.blog-content a {
  color: #2563eb;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.3);
  transition: text-decoration-color 0.2s;
}

.blog-content a:hover {
  text-decoration-color: #2563eb;
}

.blog-content blockquote {
  border-left: 4px solid #e5e7eb;
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
  color: #6b7280;
}

.blog-content section {
  margin-bottom: 40px;
}

/* First h2 in article has smaller top margin */
.blog-content section:first-child h2 {
  margin-top: 0;
}

/* Reusable CTA Section */
.blog-cta {
  background-color: #f9fafb;
  border-left: 4px solid #3b82f6;
  padding: 24px;
  margin: 32px 0;
  border-radius: 8px;
}

.blog-cta-title {
  color: #111827;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.blog-cta-text {
  color: #374151;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.blog-cta-button {
  display: inline-block;
  background-color: #2563eb;
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.blog-cta-button:hover {
  background-color: #1d4ed8;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.blog-cta-button:visited {
  color: #ffffff !important;
}