/* =====================================
   TYPOGRAPHY SYSTEM
   Inspired by Drupal Olivero
===================================== */

/* -------------------------------
   Font Stack (System UI)
-------------------------------- */

:root {
  --font-base: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
               "Helvetica Neue", Arial, sans-serif;

  --text-color: #1b1b1b;
  --heading-color: #0f172a;
  --muted-text: #555;
}

/* -------------------------------
   Base Body Text
-------------------------------- */

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-color);
  background-color: #ffffff;
}

/* -------------------------------
   Headings
-------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-base);
  font-weight: 600;
  line-height: 1.25;
  color: var(--heading-color);
  margin-top: 0;
}

h1 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* -------------------------------
   Paragraphs & Lists
-------------------------------- */

p {
  margin: 0 0 1.25rem;
}

ul,
ol {
  margin: 0 0 1.25rem 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* -------------------------------
   Content Areas
-------------------------------- */

.content,
.section1-content,
.node__content {
  font-size: 1rem;
  line-height: 1.8;
}

/* Limit readable width */
.content > *,
.section1-content > *,
.node__content > * {
  max-width: 100%;
}

/* -------------------------------
   Links
-------------------------------- */

a {
  color: #0052cc;
  text-decoration: none;
}

a:hover {
  color: #003d99;
  text-decoration: underline;
}

/* -------------------------------
   Inline Elements
-------------------------------- */

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: 0.875rem;
  color: var(--muted-text);
}

/* -------------------------------
   Blockquotes
-------------------------------- */

blockquote {
  border-left: 4px solid #e5e7eb;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #374151;
  font-style: italic;
}

/* -------------------------------
   Forms & Buttons
-------------------------------- */

input,
textarea,
select,
button {
  font-family: var(--font-base);
  font-size: 1rem;
}

/* -------------------------------
   Utility Text
-------------------------------- */

.text-muted {
  color: var(--muted-text);
}

.text-center {
  text-align: center;
}

/* -------------------------------
   Mobile Adjustments
-------------------------------- */

@media (max-width: 991px) {

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
