@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/source-sans-3-variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/source-sans-3-variable-italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Slab';
  src: url('../fonts/roboto-slab-variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --su-ink: #272a2d;
  --su-muted: #6b6d71;
  --su-action: #e01719;
  --su-action-strong: #af1214;
  --su-link: #007395;
  --su-service: #003557;
  --su-service-bright: #0068a9;
  --su-canvas: #f6f6f6;
  --su-surface-muted: #f2f5f7;
  --su-info: #cce9fb;
  --su-border: #dadbdb;
  --su-focus: #0091eb;
  --su-font-sans: 'Source Sans 3', Arial, sans-serif;
  --su-font-slab: 'Roboto Slab', Georgia, serif;
  --su-space-half: 3px;
  --su-space-1: 6px;
  --su-space-2: 12px;
  --su-space-3: 18px;
  --su-space-4: 24px;
  --su-space-6: 36px;
  --su-space-8: 48px;
  --su-space-12: 72px;
  --su-control-height: 52px;
  --su-radius-control: 3px;
  --su-radius-card: 6px;
  --su-shadow-card:
    0 1px 2px rgb(51 93 121 / 7%), 0 2px 4px rgb(51 93 121 / 7%),
    0 4px 8px rgb(51 93 121 / 7%), 0 8px 16px rgb(51 93 121 / 7%),
    0 16px 32px rgb(51 93 121 / 7%);
  --su-shadow-overlay: var(--su-shadow-card), 0 32px 64px rgb(51 93 121 / 7%);
  --su-surface: #fff;
  --su-field-border: #909294;
}
[data-theme='dark'] {
  --su-ink: #f4f5f6;
  --su-muted: #b8bdc2;
  --su-canvas: #171a1d;
  --su-surface: #22262a;
  --su-surface-muted: #2c3136;
  --su-border: #4a5056;
  --su-field-border: #737a81;
}
.su-button {
  display: inline-flex;
  min-height: var(--su-control-height);
  height: var(--su-control-height);
  border: 3px solid transparent;
  border-radius: var(--su-radius-control);
  padding: 0 27px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 700 18px/24px var(--su-font-sans);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.su-button--primary {
  background: var(--su-action);
  color: white;
}
.su-button--secondary {
  background: white;
  border-color: var(--su-action);
  color: var(--su-action);
}
.su-button--outline {
  background: transparent;
  border-color: var(--su-action);
  color: var(--su-action);
}
.su-button:focus-visible,
.su-field:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--su-focus) 35%, transparent);
  outline-offset: 3px;
}
.su-field {
  width: 100%;
  min-height: var(--su-control-height);
  border: 1px solid var(--su-field-border);
  border-radius: var(--su-radius-control);
  padding: 9px 12px;
  background: var(--su-surface);
  color: var(--su-ink);
  caret-color: var(--su-ink);
  -webkit-text-fill-color: var(--su-ink);
  font: 400 18px/24px var(--su-font-sans);
}
.su-field::placeholder {
  color: var(--su-muted);
  opacity: 1;
}
.su-field:focus-visible {
  border-color: var(--su-focus);
  outline: 0;
  box-shadow: 0 0 0 3px rgb(0 145 235 / 18%);
}
.su-field:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  background: var(--su-surface-muted);
}
.su-field--select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b6d71' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}
textarea.su-field {
  min-height: 132px;
  resize: vertical;
}
.su-choice {
  display: flex;
  align-items: center;
  gap: var(--su-space-2);
  color: var(--su-ink);
  font: 400 16px/24px var(--su-font-sans);
  cursor: pointer;
}
.su-choice > input {
  appearance: none;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid var(--su-field-border);
  background: var(--su-surface);
  cursor: pointer;
}
.su-choice > input[type='radio'] {
  border-radius: 50%;
}
.su-choice > input[type='checkbox'] {
  border-radius: var(--su-radius-control);
}
.su-choice > input::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  transform: scale(0);
}
.su-choice > input[type='radio']::after {
  border-radius: 50%;
}
.su-choice > input[type='checkbox']::after {
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: transparent;
  transform: translateY(-1px) rotate(-45deg) scale(0);
}
.su-choice > input:checked {
  border-color: var(--su-action);
  background: var(--su-action);
}
.su-choice > input:checked::after {
  transform: scale(1);
}
.su-choice > input[type='checkbox']:checked::after {
  transform: translateY(-1px) rotate(-45deg) scale(1);
}
.su-switch {
  display: flex;
  align-items: center;
  gap: var(--su-space-2);
  color: var(--su-ink);
  font: 400 16px/24px var(--su-font-sans);
}
.su-switch > input {
  appearance: none;
  width: 44px;
  height: 24px;
  margin: 0;
  padding: 2px;
  border: 1px solid var(--su-field-border);
  border-radius: 999px;
  background: var(--su-surface-muted);
  cursor: pointer;
}
.su-switch > input::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 25%);
  transition: transform 140ms ease;
}
.su-switch > input:checked {
  border-color: var(--su-action);
  background: var(--su-action);
}
.su-switch > input:checked::after {
  transform: translateX(20px);
}
.su-choice > input:focus-visible,
.su-switch > input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--su-focus) 35%, transparent);
  outline-offset: 3px;
}
.su-card {
  border-radius: var(--su-radius-card);
  background: white;
  box-shadow: var(--su-shadow-card);
  overflow: hidden;
}
.su-card__image {
  display: block;
  width: 100%;
  border-radius: var(--su-radius-card) var(--su-radius-card) 0 0;
}
.su-card__body {
  padding: var(--su-space-3);
}
.su-card--solid {
  border: 1px solid #66869a;
  background: var(--su-surface-muted);
  box-shadow: none;
  padding: var(--su-space-6);
}
.su-page-title {
  background: var(--su-canvas);
  padding: var(--su-space-12) max(var(--su-space-6), calc((100vw - 1200px) / 2));
}
.su-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--su-space-3);
  border-top: 4px solid var(--su-service-bright);
  background: var(--su-info);
  padding: var(--su-space-6);
  color: var(--su-service);
}
.su-link {
  color: var(--su-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .su-button {
    width: 100%;
  }
  .su-page-title {
    padding: var(--su-space-8) var(--su-space-4);
  }
}
