/* ==========================================================================
   Flex Guitar Custom Styles
   ========================================================================== */

/* Base typography tweaks for blog content */
.prose p {
  margin-bottom: 1.5rem; /* Space between paragraphs */
  line-height: 1.7;      /* Better readability */
}

/* Headings inside blog posts */
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

/* Lists inside blog posts */
.prose ul,
.prose ol {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

/* Links inside blog posts */
.prose a {
  color: #000;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.prose a:hover {
  color: #444;
}

/* Images inside blog posts */
.prose img {
  margin: 2rem auto;
  border-radius: 0.5rem;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Blockquotes for callouts */
.prose blockquote {
  margin: 2rem 0;
  padding-left: 1rem;
  border-left: 4px solid #000;
  font-style: italic;
  color: #555;
}

/* Code snippets (inline and blocks) */
.prose code {
  background: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.95em;
}

.prose pre {
  background: #111;
  color: #eee;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

/* Footer tweaks */
footer p {
  margin-bottom: 0.75rem;
}
