/* Start custom CSS *//* GLOBAL ARTICLE STYLING */
.post-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.75;
  font-size: 18px;
  color: #111;
}

/* HEADINGS */
.post-article h1 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.post-article h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 4px solid #222;
  padding-left: 12px;
}

.post-article h3 {
  font-size: 20px;
  margin-top: 25px;
}

/* PARAGRAPHS */
.post-article p {
  margin-bottom: 18px;
}

/* BLOCKQUOTES (KEY EMOTIONAL LINES) */
.post-article blockquote {
  border-left: 4px solid #000;
  padding-left: 15px;
  margin: 25px 0;
  font-style: italic;
  font-size: 20px;
  color: #222;
}

/* LYRICS BLOCK */
.post-article pre {
  background: #111;
  color: #f5f5f5;
  padding: 20px;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 15px;
  line-height: 1.6;
}

/* KEYWORD BLOCK (HIDDEN OPTIONAL FOR SEO) */
.seo-keywords-block {
  background: #f9f9f9;
  padding: 20px;
  margin-top: 40px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* FAQ SECTION */
.faq-section {
  background: #fafafa;
  padding: 25px;
  border: 1px solid #e5e5e5;
  margin-top: 40px;
}

.faq-section h3 {
  margin-top: 20px;
  font-weight: bold;
}

/* CTA SECTION */
.related-posts-cta {
  background: #111;
  color: #fff;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
}

.related-posts-cta a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.related-posts-cta a:hover {
  text-decoration: underline;
}

/* FINAL WORD SECTION */
.post-closing {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 2px solid #ddd;
  font-style: italic;
  font-size: 20px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .post-article {
    font-size: 17px;
    padding: 15px;
  }

  .post-article h1 {
    font-size: 28px;
  }

  .post-article h2 {
    font-size: 22px;
  }
}

/* SUBTLE FADE-IN EFFECT */
.post-article {
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */