/* ============================================
   Single Post Template Styles
   ============================================ */
/* Prose Styling for Post Content */
.prose-invert {
  color: #c7cdd8;
}

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

.prose li {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: #c7cdd8;
}

.prose a {
  color: #4da6ff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.prose a:hover {
  color: #80c4ff;
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

.prose blockquote {
  border-left: 4px solid #4da6ff;
  padding-left: 1.5rem;
  font-style: italic;
  color: #a0a8b8;
}

.prose code {
  background: rgba(100, 150, 255, 0.1);
  color: #80c4ff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.875em;
}

.prose pre {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.prose pre code {
  background: transparent;
  padding: 0;
}

.prose img {
  border-radius: 1rem;
  margin: 2rem 0;
  max-width: 100%;
  height: auto;
}

.prose hr {
  border: none;
  border-top: 2px solid rgba(100, 150, 255, 0.2);
  margin: 3rem 0;
}

/* Post Meta Links */
.post-meta a {
  color: #4da6ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-meta a:hover {
  color: #80c4ff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .content {
    padding: 60px 20px;
  }
  section {
    padding: 30px 20px;
    margin-bottom: 60vh;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 36px;
  }
  p {
    font-size: 18px;
  }
  .prose h2 {
    font-size: 2rem;
  }
  .prose h3 {
    font-size: 1.75rem;
  }
  .prose h4 {
    font-size: 1.5rem;
  }
  .prose p,
  .prose li {
    font-size: 1.125rem;
  }
}