/* ===============================
   TYPOGRAPHY SYSTEM
   Global text rules (FINAL)
================================ */

/* ===== Base text ===== */
body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
}

/* ===== Paragraph ===== */
p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

/* ===== Headings ===== */
h1 {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 2.1rem;
  line-height: 1.28;
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.30;
  margin-bottom: 0.9rem;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h5 {
  font-size: 1.05rem;
  line-height: 1.4;
}

h6 {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ===== Section titles (shared pages) ===== */
.section-title {
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 1.4rem;
}

/* ===== Cards / people / awards ===== */
.card-title {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
}

/* ===== Lists ===== */
ul li,
ol li {
  line-height: 1.6;
}

/* ===== Links ===== */
a {
  color: inherit;
  text-decoration: none;
}

/* ===== Buttons (text only) ===== */
button,
.btn {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
}

/* ===== Long-form text ===== */
.long-text,
.modal-description,
.card-description {
  line-height: 1.7;
}

/* ===== Small text ===== */
small,
.text-small {
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ===== Emphasis ===== */
strong,
b {
  font-weight: 600;
}

