  /* =================== BASE ===================== */

/**
 * @file
 * Generic base elements.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-serif); /* XSF */
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: var(--line-height-base);
}

body {
  margin: 0;
  word-wrap: normal !important;
  overflow-wrap: normal !important;
  word-break: keep-all;
  hyphens: auto;
  color: var(--color-text-neutral-medium);
  background-color: var(--color-white);
  background-image: none;
  background-position: top left; /* LTR */
}
body.is-fixed {
  position: fixed;
  overflow: hidden;
  width: 100%;
}
body, body*, h1, h2, h3, h4, h5, h6, a, p, td, div, .block__title {
  letter-spacing: 0.1em !important; /* XSF */
  text-decoration: none; /* XSF */
}
.site-header__fixable.is-expanded .site-header__inner {
	box-shadow: none;
}

html.js body:not(.is-always-mobile-nav) .site-header__inner {
	transition: box-shadow 0.0s;
}
em  {
  font-family: var(--font-serif-italic); /* XSF */
}

[dir="rtl"] body {
  background-position: top right;
}

a {
  color: var(--color-text-primary-medium);
  text-decoration: none;
}

a:hover {
  color: var(--color--primary-50); /* XSF */
}

a:focus {
  outline: solid 2px currentColor;
  outline-offset: 2px;
}

button {
  font-family: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

audio {
  display: block;
  max-width: 100%;
}

h1 {
  letter-spacing: 0.01em; /* XSF */
  font-family: var(--font-sans); /* XSF */
  font-size: 1.75rem;
  line-height: var(--sp3);
}

@media (min-width: 43.75rem) {
  h1 {
    font-size: 3.75rem;
    line-height: var(--sp3);
  }
}

h2 {
  letter-spacing: 0.01em; /* XSF */
  font-size: 1.5rem;
  line-height: var(--sp2);
}

@media (min-width: 43.75rem) {
  h2 {
    font-size: 2.25rem;
    line-height: var(--sp2);
  }
}

h3 {
  font-size: 1.25rem;
  line-height: var(--sp1-5);
}

@media (min-width: 43.75rem) {
  h3, .webform-confirmation__message {
    font-size: var(--font-size-xl);
    line-height: var(--sp2);
  }
}

h4 {
  font-size: var(--font-size-base);
  line-height: var(--sp1-5);
}

h5 {
  font-size: 1rem;
  line-height: var(--sp1);
}

h6 {
  font-size: 0.875rem;
  line-height: var(--sp1);
}

h1,
h2,
h3,
h4,
h5,
h6,
.webform-confirmation__message {
  margin-block: var(--sp);
  color: var(--color-text-neutral-loud);
  font-family: var(--font-sans); /* XSF */
  font-weight: normal; /* XSF */
}

@media (min-width: 43.75rem) {
  h1,
  h2,
  h3 {
    margin-block: var(--sp1-5);
  }
}
@media (min-width: 43.75rem) {
  h4,
  h5,
  h6 {
    margin-block: var(--sp1);
  }
}

ul {
  margin-block-start: 0.25em;
  margin-block-end: 0.25em;
  margin-inline-start: 1.5em;
  margin-inline-end: 0;
  padding-inline-start: 0;
  list-style-type: disc;
  list-style-image: none;
}

.fieldset__label, .field__label, .form-item__label, .mailchimp-signup-subscribe-description    {
    font-family: var(--font-sans); /* XSF */
    font-size: 1.4rem; /* XSF */
    font-weight: normal; /* XSF */
}
.field__item  {
  font-size: var(--font-size-base);
  }
.form-item__description {
	font-size: var(--font-size-m); /* XSF */
}