/* === BLOG CONTENT STYLES === */
.entry-content, .post-content {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #222;
  max-width: 750px;
  margin: auto;
  padding: 0 1rem;
}

/* Paragraphs */
.entry-content p {
  margin-bottom: 1.5em;
}

/* Headings */
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  margin: 1.5em 0 0.75em;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}
.entry-content h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 0.25em;
}
.entry-content h3 {
  font-size: 1.3rem;
}
.entry-content h4 {
  font-size: 1.1rem;
}

/* Lists */
.entry-content ul,
.entry-content ol {
  margin: 1em 0 1.5em 2em;
}
.entry-content li {
  margin-bottom: 0.5em;
}

/* Links */
.entry-content a {
  color: #0d6efd;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.entry-content a:hover {
  color: #084298;
}

/* Images & Figures */
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5em 0;
}
.entry-content figure {
  margin: 1.5em 0;
  text-align: center;
}
.entry-content figcaption {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
}

/* Blockquotes */
.entry-content blockquote {
  border-left: 4px solid #0d6efd;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background: #f8f9fa;
  font-style: italic;
  color: #555;
}

/* Code & Pre */
.entry-content code {
  background: #f1f1f1;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: monospace;
}
.entry-content pre {
  background: #1e1e1e;
  color: #f8f8f2;
  padding: 1em;
  border-radius: 6px;
  overflow-x: auto;
  font-family: monospace;
}

/* Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.entry-content th,
.entry-content td {
  border: 1px solid #ddd;
  padding: 0.75em 1em;
}
.entry-content th {
  background: #f5f5f5;
  text-align: left;
}

/* Gutenberg blocks */
.wp-block-image img {
  border-radius: 8px;
}
.wp-block-quote {
  border-left: 4px solid #0d6efd;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #555;
}
.wp-block-button__link {
  background: #0d6efd;
  color: #fff !important;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}
.wp-block-button__link:hover {
  background: #084298;
}
.wp-block-separator {
  border: none;
  border-top: 2px solid #eee;
  margin: 2em 0;
}

/* Alignment helpers */
.alignleft { float: left; margin-right: 1em; }
.alignright { float: right; margin-left: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Responsive */
@media (max-width: 600px) {
  .entry-content { font-size: 0.95rem; }
  .entry-content h1 { font-size: 1.6rem; }
  .entry-content h2 { font-size: 1.4rem; }
  .entry-content h3 { font-size: 1.2rem; }
}
/* End of BLOG CONTENT STYLES */

.single-post-content blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, .single-post-content p, pre, ul, ol, menu {
    margin:2rem 0;
}


