:root {
  --font-display: Spezia;
  --font-body: Spezia Serif;
  --font-functional: Spezia Serif;
}
.font--display, .text--bold, b, strong {
  font-family: var(--font-display);
  font-weight: 700;
}
.font--body {
  font-family: var(--font-body);
  font-weight: 400;
}
.font--functional {
  font-style: normal !important;
  font-family: var(--font-functional);
  font-weight: 400;
}
.has-giant-font-size {
  font-size: var(--text-xxl);
  line-height: 1.1;
}
.has-x-large-font-size {
  font-size: var(--text-xl);
  line-height: 1.2;
}
.has-large-font-size {
  font-size: var(--text-l);
  line-height: 1.2;
}
.has-medium-font-size {
  font-size: var(--text-m);
  line-height: 1.2;
}
p {
  margin: 0;
  letter-spacing: -0.025em;
}
.has-small-font-size {
  font-size: var(--text-s);
}
a {
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.required {
  font-size: var(--text-xs);
  color: var(--base-light);
}
.gb-content p, .gb-content ul {
  max-width: 65ch;
}
