/* Blog-specific styles for Jazzed Technology blog template */

.prose {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #374151;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #111827;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

.prose h2 {
  font-size: 1.875rem;
  border-bottom: 2px solid #87E0FD;
  padding-bottom: 0.5rem;
}

.prose h3 {
  font-size: 1.5rem;
  color: #1f2937;
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose ul,
.prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose a {
  color: #87E0FD;
  text-decoration: none;
  transition: color 0.3s ease;
}

.prose a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

/* Featured image styling with glassmorphic effect */
article .relative.overflow-hidden {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(135, 224, 253, 0.1), rgba(59, 130, 246, 0.1));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

article img {
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Post meta styling */
article time,
article .text-gray-500 {
  font-size: 0.875rem;
}

/* Call to action box */
.bg-gray-50 {
  background-color: #f9fafb;
}

/* Tag styling */
.px-3.py-1.bg-gray-100 {
  background-color: #f3f4f6;
  color: #374151;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prose h1 {
    font-size: 1.875rem;
  }

  .prose h2 {
    font-size: 1.5rem;
  }
}