/* Blog post styles */
.section {
  margin-bottom: 2rem;
}

.section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
}

.section img {
  width: 100%;
  max-width: 800px;
  border-radius: 0.5rem;
  margin: 1.5rem auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.section img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.section strong {
  font-weight: 600;
  color: #ea580c;
}

/* Add a subtle highlight for blockquotes */
blockquote {
  border-left: 4px solid #f97316;
  padding-left: 1rem;
  margin-left: 0;
  font-style: italic;
  color: #4b5563;
  margin: 1.5rem 0;
}

/* Enhance code blocks */
pre, code {
  background-color: #f9fafb;
  border-radius: 0.375rem;
  padding: 0.2rem 0.4rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  border: 1px solid #e5e7eb;
}

pre {
  padding: 1rem;
  overflow-x: auto;
}

/* Add a subtle divider between sections */
h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 100px;
  background: linear-gradient(to right, #f97316, transparent);
  margin-top: 0.5rem;
}

/* Enhance figure/image captions */
figure {
  margin: 2rem 0;
}

figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
  font-style: italic;
} 