:root {
  --sgc-red: #006d99;
  --sgc-red-dark: #004e70;
  --sgc-black: #161a1d;
  --sgc-charcoal: #222a2f;
  --sgc-silver: #667078;
  --sgc-cyan: #00a8f0;
  --sgc-magenta: #e50068;
  --sgc-yellow: #f4d800;
  --sgc-white: #fff;
  --sgc-canvas: #f5f7f8;
  --sgc-border: #d9e0e4;
  --sgc-text: #20272c;
  --sgc-muted: #5f6a71;
  --sgc-success: #157347;
  --sgc-radius-sm: 4px;
  --sgc-radius: 8px;
  --sgc-radius-lg: 14px;
  --sgc-shadow: 0 12px 34px rgba(22, 26, 29, 0.1);
  --sgc-container: 1280px;
  --sgc-reading: 760px;
  --sgc-space-1: 0.5rem;
  --sgc-space-2: 0.75rem;
  --sgc-space-3: 1rem;
  --sgc-space-4: 1.5rem;
  --sgc-space-5: 2.25rem;
  --sgc-space-6: 3.5rem;
  --sgc-space-7: 5rem;
  --sgc-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--sgc-white);
  color: var(--sgc-text);
  font-family: var(--sgc-font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .sgc-header {
  top: 32px;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

a {
  color: var(--sgc-red-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sgc-red);
}

:focus-visible {
  outline: 3px solid var(--sgc-red);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  color: var(--sgc-black);
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-block: 0 0.75em;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p,
ul,
ol,
dl,
figure,
blockquote {
  margin-block: 0 1.25rem;
}

address {
  font-style: normal;
}

.screen-reader-text,
.sgc-skip-link:not(:focus) {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.sgc-skip-link:focus {
  background: var(--sgc-white);
  color: var(--sgc-black);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  z-index: 10000;
}

.sgc-container {
  margin-inline: auto;
  max-width: var(--sgc-container);
  padding-inline: clamp(1rem, 3vw, 2rem);
  width: 100%;
}

.sgc-reading-width {
  max-width: var(--sgc-reading);
}

.sgc-icon {
  flex: 0 0 auto;
  height: 1.3rem;
  width: 1.3rem;
}

.sgc-eyebrow {
  color: var(--sgc-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.sgc-button,
button.button,
input.button {
  align-items: center;
  background: var(--sgc-red);
  border: 2px solid var(--sgc-red);
  border-radius: var(--sgc-radius-sm);
  color: var(--sgc-white);
  display: inline-flex;
  font-weight: 750;
  gap: 0.5rem;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.sgc-button:hover,
button.button:hover,
input.button:hover {
  background: var(--sgc-red-dark);
  border-color: var(--sgc-red-dark);
  color: var(--sgc-white);
  transform: translateY(-1px);
}

.sgc-button--secondary {
  background: transparent;
  border-color: currentColor;
  color: var(--sgc-white);
}

.sgc-button--secondary:hover {
  background: var(--sgc-white);
  border-color: var(--sgc-white);
  color: var(--sgc-black);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
