/* Headings */
h1 {
  font-size: 1.875rem;   /* text-3xl */
  font-weight: 700;      /* font-bold */
  color: #1e40af;        /* text-blue-800 */
  margin-bottom: 1.5rem; /* mb-6 */
}

h2 {
  font-size: 1.5rem;     /* text-2xl */
  font-weight: 600;      /* font-semibold */
  color: #1d4ed8;        /* text-blue-700 */
  margin-top: 2.5rem;    /* mt-10 */
  margin-bottom: 1rem;   /* mb-4 */
}

h3 {
  font-size: 1.25rem;    /* text-xl */
  font-weight: 500;      /* font-medium */
  color: #2563eb;        /* text-blue-600 */
  margin-top: 2rem;      /* mt-8 */
  margin-bottom: 0.5rem; /* mb-2 */
}

h4, h5, h6 {
  font-size: 1.125rem;   /* text-lg */
  font-weight: 500;
  color: #3b82f6;        /* text-blue-500 */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Paragraphs */
p {
  color: #1f2937;        /* text-gray-800 */
  margin-bottom: 1rem;
  line-height: 1.625;    /* leading-relaxed */
}


/* Lists */
ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;        /* text-gray-800 */
}

ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

li {
  margin-bottom: 0.5rem;
}

/* Blockquotes */
blockquote {
  border-left: 4px solid #60a5fa; /* border-blue-400 */
  padding-left: 1rem;
  font-style: italic;
  color: #374151;         /* text-gray-700 */
  margin: 2rem 0;
}

/* Inline code */
code {
  background-color: #f3f4f6;  /* bg-gray-100 */
  font-size: 0.875rem;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}

/* Images */
img {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;

}

/* Reset WP core block styles if needed */
.content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.content ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
}

.content a {
  color: #2563eb;
  text-decoration: underline;
}

.content a:hover {
  color: #1e40af;
}

.content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d4ed8;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

