body {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
}

a:link,
a:visited {
  color: var(--brand-blue);
}
a:hover,
a:active {
  color: var(--brand-charcoal);
}

.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
  font-family: "Teko", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}

.heading-1 {
  font-size: 4.25rem;
  line-height: 0.75;
}

.heading-2 {
  font-size: 2.8125rem;
  line-height: 0.75;
}

.heading-3 {
  font-size: 2rem;
}

.heading-4 {
  font-size: 1.75rem;
}

.heading-5 {
  font-size: 1.5rem;
}

.heading-6 {
  font-size: 1rem;
}

[class*="heading-"] em {
  color: var(--brand-red);
  letter-spacing: 1.68px;
  font-style: normal;
  text-shadow: none;
  -webkit-text-stroke: unset;
}

/* Occasionally used heading style that
 * has a red border accent on the left */
.context-heading-accented {
  border-left: 3px solid var(--brand-red);
  padding-left: 12px;
  /* slight hack to make the border the same height as the text
   * itself (the content box is taller to account for the descender
   * height, which we never see because we use all caps) */
  height: 0.8em;
}

.text-title {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 600;
}

.text-title-sm {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
}

.text-title-lg {
  font-size: 1.125rem;
  line-height: 1.1;
  font-weight: 600;
}

.text-title-xl {
  font-size: 1.375rem;
  line-height: 1.1;
  font-weight: 600;
}

.text-body {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.text-body-sm {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}

.text-body-lg {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}

.text-body-xl {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
}

.label-sm {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
}

.label-meta {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
  h2 {
    font-size: 3rem;
  }
  h6 {
    font-size: 1.125em;
  }

  .text-title-lg {
    font-size: 1.25rem;
  }
  .text-title-xl {
    font-size: 1.5rem;
  }
}

/* Utilities */

.fx-normal {
  font-style: normal;
}

.fx-italic {
  font-style: italic;
}

.fx-underline {
  text-decoration: underline;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.ff-teko {
  font-family: "Teko", sans-serif;
}

.ff-barlow {
  font-family: "Barlow", sans-serif;
}

.fc-red {
  color: var(--brand-red);
}

.fc-parchment {
  color: var(--brand-parchment);
}

.bg-charcoal {
  background-color: var(--brand-charcoal);
}
