/* Typography for article content (works even if no classes are present) */
article {
  line-height: 1.7;
  color: #222;
}

/* Paragraphs */
article p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Headings */
article h2 {
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.8rem;
  color: #222;
}

article h3 {
  font-size: 1.2rem;            /* matches your inline request */
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #333;
}

article h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #444;
}

/* Lists inside content */
article ul,
article ol {
  margin: 0 0 1.5rem 1.25rem;
  padding: 0;
}
article li {
  margin: 0.35rem 0;
}

/* Links inside paragraphs */
article p a {
  color: #0066cc;
  text-decoration: none;
}
article p a:hover {
  text-decoration: underline;
}

/* Optional helper classes, in case your HTML includes them */
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.fw-bolder { font-weight: 700; }
