@import url("https://use.typekit.net/rpl5qdt.css");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-300);
  line-height: 1.55;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  margin: 0 0 var(--space-4);
  font-weight: 700;
  line-height: 1.1;
  color: #af1e23;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(var(--fs-700), 6vw, var(--fs-900)); line-height: 1.05; }
h2 { font-size: clamp(var(--fs-600), 5vw, var(--fs-800)); }
h3 { font-size: var(--fs-500); }
h4 { font-size: var(--fs-400); }

p {
  margin: 0 0 var(--space-4);
}

a {
  color: var(--color-yellow);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}


ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.button {
  --bg: var(--color-yellow);
  --fg: #58595B;
  display: inline-block;
  padding: 1.14rem 1.92rem 1.14rem 1.68rem;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
  color: #ffffff;
  background: var(--bg);
  text-decoration: none;
  border: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
  transition: background-color 0.15s var(--easing), transform 0.15s var(--easing);
  min-height: 58px;
}

.button:hover,
.button:focus-visible {
  background: var(--color-yellow-hover);
  transform: translateY(-1px);
}

.button--blue {
  --bg: var(--color-blue);
  --fg: var(--color-yellow);
}

.button--blue:hover,
.button--blue:focus-visible {
  background: var(--color-blue-dark);
  color: var(--color-yellow);
}

.button--red {
  --bg: #E0241B;
  --fg: var(--color-white);
}

.button--red:hover,
.button--red:focus-visible {
  background: #C01F17;
  color: var(--color-white);
}

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