/* ============================================================
RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--n50);
  color: var(--n900);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: var(--font);
}

/* Accessibility screen-reader only utility */
.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;
}

/* ============================================================
TYPOGRAPHY SCALE
============================================================ */
.t-display {
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
}

.t-h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.t-h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.t-h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}

.t-body-lg {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.t-body {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.t-small {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.t-label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

