@font-face {
  font-family: "Zipline";
  src:
    url("../fonts/zipline-solid.woff2") format("woff2"),
    url("../fonts/zipline-solid.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text-primary);
  letter-spacing: 0.005em;
}

h1,
h2,
.headline,
blockquote {
  font-family: var(--font-secondary);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-tight);
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
}
h3 {
  font-weight: var(--fw-bold);
}

h1 {
  font-size: var(--fs-3xl);
}
h2 {
  font-size: var(--fs-2xl);
}
h3 {
  font-size: var(--fs-xl);
}
h4 {
  font-size: var(--fs-lg);
}

p {
  font-size: var(--fs-base);
}

small {
  font-size: var(--fs-sm);
}

strong,
b {
  font-weight: var(--fw-semibold);
}

a {
  color: var(--color-link);
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-link-hover);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-secondary-300);
}

.section-title {
  font-size: var(--fs-2xl);
  margin-top: var(--space-3);
}

.section-lead {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 60ch;
  margin-top: var(--space-4);
}

.text-muted {
  color: var(--color-text-secondary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
