/* =========================================
   ============= TYPOGRAPHY ================
   ========================================= */

body {
  font-family: "Inter", sans-serif;
  margin-bottom: 0.6em;
  color: var(--color-body);
  -webkit-font-smoothing: antialiased;
}

p {
  font-family: "Inter", sans-serif;
  margin-bottom: 0.6em;
  color: var(--color-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  color: var(--color-heading);
  font-weight: 700;
}

/* Desktop: 1200px+ */
@media (min-width: 1200px) {
  h1 { font-size: 42px; }
  h2 { font-size: 36px; }
  h3 { font-size: 30px; }
  h4 { font-size: 24px; }
  h5 { font-size: 20px; }
  h6 { font-size: 18px; }
  body, p { font-size: 16px; }
}

/* Tablet: 768px–1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 26px; }
  h4 { font-size: 22px; }
  h5 { font-size: 18px; }
  h6 { font-size: 16px; }
  body, p { font-size: 15px; }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
  h4 { font-size: 20px; }
  h5 { font-size: 16px; }
  h6 { font-size: 15px; }
  body, p { font-size: 14px; }
}


/* ---- Links ---- */
a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.25s ease;
}

a.plain {
 color: #15727a
}
a:hover {
  color: var(--color-link-hover);
}
