/* Blog Content Styles */
.blog-content h1 { 
  font-size: 2.5rem; 
  font-weight: bold; 
  margin: 2rem 0 1rem 0; 
  color: #1f2937; 
}

.blog-content h2 { 
  font-size: 2rem; 
  font-weight: 600; 
  margin: 1.5rem 0 1rem 0; 
  color: #1f2937; 
}

.blog-content h3 { 
  font-size: 1.5rem; 
  font-weight: 600; 
  margin: 1.25rem 0 0.75rem 0; 
  color: #374151; 
}

.blog-content p { 
  margin: 1rem 0; 
  line-height: 1.7; 
  color: #4b5563; 
}

.blog-content ul, .blog-content ol { 
  margin: 1rem 0; 
  padding-left: 1.5rem; 
}

.blog-content li { 
  margin: 0.5rem 0; 
  color: #4b5563; 
}

.blog-content img { 
  max-width: 100%; 
  height: auto; 
  border-radius: 0.5rem; 
  margin: 1.5rem auto; 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
  display: block;
}

/* Mobile-responsive table styling */
.blog-content table { 
  width: 100%; 
  border-collapse: collapse; 
  margin: 1.5rem 0;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* Reset table display for larger screens */
@media (min-width: 768px) {
  .blog-content table {
    display: table;
    white-space: normal;
  }
}

.blog-content th, .blog-content td { 
  border: 1px solid #d1d5db; 
  padding: 0.75rem; 
  text-align: left; 
  min-width: 120px; /* Ensure minimum width for readability */
}

/* Smaller padding on mobile */
@media (max-width: 767px) {
  .blog-content th, .blog-content td {
    padding: 0.5rem;
    font-size: 0.875rem;
    min-width: 100px;
  }
}

.blog-content th { 
  background-color: #f9fafb; 
  font-weight: 600; 
  position: sticky;
  top: 0;
  z-index: 10;
}

.blog-content .cta-button { 
  display: inline-block; 
  background-color: #3b82f6; 
  color: white !important; 
  padding: 0.75rem 1.5rem; 
  border-radius: 0.5rem; 
  text-decoration: none; 
  font-weight: 600; 
  margin: 1rem 0; 
  transition: background-color 0.2s ease;
}

.blog-content .cta-button:hover { 
  background-color: #2563eb; 
}

.blog-content .call-to-action { 
  background-color: #f3f4f6; 
  padding: 2rem; 
  border-radius: 0.5rem; 
  margin: 2rem 0; 
  text-align: center; 
}

.blog-content button { 
  background-color: #3b82f6; 
  color: white; 
  padding: 0.75rem 1.5rem; 
  border-radius: 0.5rem; 
  border: none; 
  font-weight: 600; 
  margin: 1rem 0; 
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.blog-content button:hover { 
  background-color: #2563eb; 
}

.blog-content a {
  color: #3b82f6;
  text-decoration: underline;
}

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

.blog-content blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #6b7280;
}
