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

body {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

/* =================================
   HEADINGS
================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: .875rem;
}

/* =================================
   PARAGRAPHS
================================= */

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* =================================
   LINKS
================================= */

a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}

/* =================================
   EYEBROW
================================= */

.eyebrow {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* =================================
   LISTS
================================= */

ul,
ol {
  padding-left: 1.25rem;
}

li {
  margin-bottom: .5rem;
}

/* =================================
   BLOCKQUOTE
================================= */

blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* =================================
   UTILITIES
================================= */

.text-center {
  text-align: center;
}

.text-gray {
  color: var(--text-light);
}

.text-white {
  color: var(--white);
}

.section-title-light {
  color: var(--white);
}

.medium-text {
  font-size: 1.125rem;
}