/* ==============================================
   TYPOGRAPHY
   ============================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }
h5 { font-size: 0.9rem; }
h6 { font-size: 0.85rem; }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

strong { font-weight: 700; color: var(--dark); }
em     { font-style: italic; }

/* Section title reusable */
.section-title {
  font-size: clamp(1.1rem, 2.2vw, 2.5rem);
  font-weight: 700;
  color: var(--teal);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--teal);
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-title.left { text-align: left; }
.section-title.left::after { margin-left: 0; }

/* Entry content (blog/pages) */
.entry-content h2,
.entry-content h3 { margin: 1.5em 0 0.5em; }

.entry-content p   { margin-bottom: 1.2em; }
.entry-content ul,
.entry-content ol  { margin: 0 0 1.2em 1.5em; }
.entry-content ul  { list-style: disc; }
.entry-content ol  { list-style: decimal; }
.entry-content li  { margin-bottom: 0.4em; }
.entry-content a   { color: var(--teal); text-decoration: underline; }
.entry-content a:hover { color: var(--teal-dark); }
.entry-content blockquote {
  border-left: 4px solid var(--teal);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: var(--teal-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}
.entry-content img {
  border-radius: var(--radius);
  margin: 1.2em 0;
}
