@charset "UTF-8";
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/Merriweather-Variable.woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/Merriweather-Variable.woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather Sans";
  src: url("/fonts/MerriweatherSans-Variable.woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather Sans";
  src: url("/fonts/MerriweatherSans-Variable.woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather Sans";
  src: url("/fonts/MerriweatherSans-Variable.woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/MerriweatherItalic-Variable.woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/MerriweatherItalic-Variable.woff2");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Merriweather Sans";
  src: url("/fonts/MerriweatherSansItalic-Variable.woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Merriweather Sans";
  src: url("/fonts/MerriweatherSansItalic-Variable.woff2");
  font-weight: 700;
  font-style: italic;
}
/**
 * Enhanced
 * Bootstrap the rest of the styles on cut the mustard
 */
/**
 * Abstracts
 * Sass tools, helper files, variables, functions, mixins and other config files
 * These files don’t output any CSS when compiled
 */
/**
 * Default link style
 *
 */
/**
 * Breakpoints
 * Media query helper
 * @group 30-mixins
 */
/**
 * Basic
 * Some default CSS styles
 */
body {
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.8;
}

a {
  color: #025E8D;
}

button {
  cursor: pointer;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/**
 * Typography
 * Set base font size
 */
html {
  font-size: 100%;
}

body {
  font-size: 1.125rem;
}

/*
 * Headings
 */
h1 {
  font-size: 2.25rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
}

h5 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

/**
 * Layout
 * Universal layout styles
 */
html {
  height: 100%;
  overflow-y: scroll;
  font-size: 100%;
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  font-size: 1.125rem;
  color: #222;
  background: #fff;
}

abbr[title] {
  text-decoration: none;
}

dd {
  margin: 0;
}

p {
  margin-top: 0;
  margin-bottom: 2rem;
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  color: #025E8D;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
}
a.visited, a:visited {
  color: #01324B;
}
a.hover, a:hover {
  color: #01324B;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
}
a.active, a:active {
  color: #025E8D;
}
a.focus, a:focus {
  outline: 4px solid #0088CC;
}

table {
  font-size: 1rem;
  line-height: 1.8;
  border-collapse: collapse;
  border: none;
  width: 100%;
  margin-bottom: 32px;
}

th,
td {
  padding: 8px;
  vertical-align: top;
}

th {
  text-align: left;
  border-bottom: 3px solid #01324B;
}

td {
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-bottom: 2px solid #dadada;
}

/**
 * @springernature/elements/layout-grid
 * Default skin settings
 *
 */
/* ↓ Necessary since non-Dart Sass chokes
on the min() function */
.l-grid {
  list-style: none;
  padding: 0;
}

.l-grid > * + * {
  margin-top: 1em;
  margin-top: var(--grid--gap, 1em);
}

@supports (display: grid) {
  .l-grid > * {
    margin: 0;
  }
  .l-grid {
    display: grid;
    gap: 1em;
    gap: var(--grid--gap, 1em);
    grid-template-columns: repeat(auto-fit, minmax(var(--grid--basis, min(300px, 100%)), 1fr));
  }
}
/**
 * @springernature/elements/layout-stack
 * Default skin settings
 *
 */
.l-stack > * {
  margin: 0;
}

.l-stack > * + * {
  margin-top: 1.5em; /* ← core browser fallback */
  margin-top: var(--stack--gap, 1.5em);
}

@supports (gap: 1.5em) {
  .l-stack > * {
    margin: 0;
  }
  .l-stack {
    display: flex;
    flex-direction: column;
    gap: var(--stack--gap, 1.5em);
  }
}
/**
* @springernature/elements/layout-cluster
* Default skin settings
*
*/
.l-cluster {
  display: flex;
  flex-wrap: wrap;
  /* ↓ In case it is a list */
  list-style: none;
  padding: 0;
}
@supports (gap: 1em) {
  .l-cluster {
    gap: var(--cluster--gap, 1em);
  }
}

.l-cluster > * {
  /* ↓ Because margin doubles up */
  margin: calc(1em / 2);
}
@supports (gap: 1em) {
  .l-cluster > * {
    margin: 0;
    gap: var(--cluster--gap, 1em);
  }
}

.l-cluster--right {
  justify-content: flex-end;
}

.l-cluster--center {
  justify-content: center;
}

.l-cluster--top {
  align-items: flex-start;
}

.l-cluster--middle {
  align-items: center;
}

.l-cluster--bottom {
  align-items: flex-end;
}

/**
 * @springernature/elements/layout-with-sidebar
 * Default skin settings
 *
 */
.l-with-sidebar {
  display: flex;
  flex-wrap: wrap;
}

.l-with-sidebar > * {
  margin: 0;
}

.l-with-sidebar__sidebar {
  flex-grow: 1;
  flex-basis: 400px; /* fallback static value for IE */
  min-width: var(--with-sidebar--min-width, 400px);
  flex-basis: var(--with-sidebar--basis, 400px);
}

.l-with-sidebar > :not(.l-with-sidebar__sidebar) {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 50%; /* fallback static value for IE */
  min-width: var(--with-sidebar--min, 50%);
}

.l-with-sidebar > :first-child {
  padding-right: 4rem; /* gap for IE11 (so desktop) */
}

@supports (gap: 1em) {
  .l-with-sidebar > :first-child {
    padding-right: 0;
  }
  .l-with-sidebar {
    gap: var(--with-sidebar--gap, 4rem);
  }
}
.eds-c-header-new {
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  background-color: #fff;
  border-bottom: 2px solid #C5E0F4;
  line-height: 1.5;
}

.eds-c-header-new__container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 16px;
  margin: 0 auto;
  padding: 0 4px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  padding: 0 8px;
}

.eds-c-header-new__brand {
  margin-right: 4px;
}
.eds-c-header-new__brand img {
  height: 3rem;
}
.eds-c-header-new__brand a {
  display: block;
  padding: 4px 0 8px 8px;
}
@media only screen and (min-width: 768px) {
  .eds-c-header-new__brand img {
    height: 2rem;
  }
}

@media only screen and (min-width: 768px) {
  .eds-c-header-new__brand--with-nav {
    margin-right: 8px;
  }
  .eds-c-header-new__brand--with-nav img {
    height: 3rem;
  }
  .eds-c-header-new__brand--with-nav a {
    padding: 4px 16px 8px 8px;
  }
}
@media only screen and (min-width: 1220px) {
  .eds-c-header-new__brand--with-nav img {
    height: 2rem;
    width: auto;
  }
}

.eds-c-header-new__main-nav-container {
  display: flex;
  flex: 1;
}
.eds-c-header-new__main-nav-container .eds-c-navigation {
  display: none;
  border-bottom: unset;
}

.eds-c-header-new__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eds-c-header-new__list--main-nav {
  display: none;
  visibility: hidden;
}
.eds-c-header-new__list--main-nav:first-child + * {
  margin-block-start: 0;
}
@media only screen and (min-width: 1024px) {
  .eds-c-header-new__list--main-nav {
    align-items: center;
    display: flex;
    gap: 8px;
    visibility: visible;
    padding-left: 16px;
  }
  .eds-c-header-new__list--main-nav li {
    height: 100%;
  }
  .eds-c-header-new__list--main-nav .eds-c-header-new__link {
    height: 100%;
    justify-content: center;
  }
}

.eds-c-header-new__list-item {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 16px;
  font-weight: bold;
  padding: 8px;
}
.eds-c-header-new__list-item:not(:last-child) {
  border-bottom: 2px solid #C5E0F4;
}

.eds-c-header-new__action-items-panel {
  display: flex;
}
@media only screen and (min-width: 876px) {
  .eds-c-header-new__action-items-panel {
    padding-left: 8px;
    border-left: 2px solid #C5E0F4;
  }
}

.eds-c-header-new__action-items {
  display: flex;
  align-items: center;
  border-left: none;
}
.eds-c-header-new__action-items .eds-c-header-new__link {
  min-width: 50px;
}

.eds-c-header-new__action-items .eds-c-header-new__link,
.eds-c-header-new__mobile-menu .eds-c-header-new__link {
  font-size: 0.75rem;
  font-weight: normal;
  padding: 8px 4px;
  min-width: 44px;
}
@media only screen and (min-width: 480px) {
  .eds-c-header-new__action-items .eds-c-header-new__link,
  .eds-c-header-new__mobile-menu .eds-c-header-new__link {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 8px 8px;
  }
}

.eds-c-header-new__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 8px;
  color: inherit;
  text-decoration-color: transparent;
  position: relative;
  font-weight: bold;
  word-break: normal;
  white-space: nowrap;
  font-size: 0.875rem;
}
.eds-c-header-new__link:visited {
  color: inherit;
}
.eds-c-header-new__link:hover {
  color: inherit;
  text-decoration-color: inherit;
}
.eds-c-header-new__link:not(.eds-c-header-new-expander .eds-c-header-new__link):hover {
  text-decoration-color: transparent;
}
.eds-c-header-new__link:not(.eds-c-header-new-expander .eds-c-header-new__link):hover::after {
  content: "";
  background-color: #0088CC;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.eds-c-header-new__link.is-open {
  color: #0088CC;
}
.eds-c-header-new__link.is-open::after {
  content: "";
  background-color: #0088CC;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.eds-c-header-new__icon {
  fill: currentColor;
  transform: translate(0, 0);
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1em;
  position: relative;
  vertical-align: bottom;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.eds-c-header-new__heading {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 16px;
  padding: 16px 0;
}

.eds-c-header-new__item--divider:before {
  content: "";
  position: absolute;
  top: 0;
  border-left: 2px solid #C5E0F4;
  height: 4rem;
  display: none;
}
@media only screen and (min-width: 876px) {
  .eds-c-header-new__item--divider:before {
    display: block;
  }
}

.eds-c-header-new__action-items div:nth-child(1) {
  margin-left: 16px;
}

@media only screen and (min-width: 1024px) {
  .eds-c-header-new__mobile-menu {
    display: none;
    visibility: hidden;
  }
  .eds-c-header-new__mobile-menu:first-child + * {
    margin-block-start: 0;
  }
  .eds-c-header-new__main-nav-container .eds-c-navigation {
    display: block;
  }
  .eds-c-header-new__main-nav-container .eds-c-navigation__desktop-menu {
    background-color: unset;
  }
  .eds-c-header-new__action-items--search {
    display: flex;
  }
}
.has-tethered .eds-c-header-new__heading {
  display: none;
  visibility: hidden;
  visibility: hidden;
}
.has-tethered .eds-c-header-new__heading:first-child + * {
  margin-block-start: 0;
}

.eds-c-header-new__heading {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 16px;
  padding: 16px 0;
}

.eds-c-header-new__action-items--has-notification {
  position: relative;
}

.eds-c-header-new__action-items--has-notification::before {
  content: "";
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  background-color: #C75301;
  border-radius: 50%;
  display: block;
  position: absolute;
  z-index: 999;
}

.eds-c-header-new__action-items-count {
  position: absolute;
  min-width: 28px;
  display: block;
  text-align: center;
  padding: 2px 2px;
  background-color: #C75301;
  color: #fff;
  border-radius: 8px;
  border: 2px solid #fff;
  z-index: 999;
}
.eds-c-header-new__action-items-count--cart {
  top: 5px;
  right: -5px;
}
.eds-c-header-new__action-items-count--notifications {
  top: 5px;
  right: 8px;
}

.eds-c-header-new-expander__action-dropdown {
  z-index: 10;
}
.eds-c-header-new-expander__action-dropdown--search .eds-c-header-new-expander__search {
  padding: 24px 0;
}
@media only screen and (min-width: 768px) {
  .eds-c-header-new-expander__action-dropdown--search .eds-c-header-new-expander__search {
    max-width: 70%;
  }
}
@media only screen and (max-width: 479px) {
  .eds-c-header-new-expander__action-dropdown--search .eds-c-header-new-expander__search .eds-c-header-new-expander__search-btn {
    flex: 1 0 auto;
  }
}
.eds-c-header-new-expander__action-dropdown--search .eds-c-header-new-expander__search--advanced-link {
  margin-top: 2rem;
}
.eds-c-header-new-expander__action-dropdown[id=eds-c-header-new-account] {
  display: none;
}
.eds-c-header-new-expander__action-dropdown[id=eds-c-header-new__mobile-menu] .eds-c-header-new-expander__action-dropdown-section:first-child {
  display: none;
}
.eds-c-header-new-expander__action-dropdown .eds-c-header-new-expander__action-dropdown-section--notifications .u-icon {
  width: 1.4rem;
  height: 1.4rem;
  margin: -1px 8px 0 0;
}

.has-tethered.eds-c-header-new-expander__action-dropdown {
  background-color: #fff;
  width: 100%;
  min-width: 320px;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  bottom: auto;
  z-index: 10;
  margin-top: 0;
  border: 2px solid #C5E0F4;
  box-shadow: 0px 4px 12px 0px rgba(1, 50, 75, 0.1);
  display: block;
}
@media only screen and (min-width: 480px) {
  .has-tethered.eds-c-header-new-expander__action-dropdown {
    width: auto;
    border-radius: 8px;
  }
}
.has-tethered.eds-c-header-new-expander__action-dropdown > p {
  margin-bottom: 8px;
}
@media only screen and (min-width: 480px) {
  .has-tethered.eds-c-header-new-expander__action-dropdown[id=eds-c-header-new-your-work] {
    right: 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .has-tethered.eds-c-header-new-expander__action-dropdown[id=eds-c-header-new-your-work] {
    right: 70px;
  }
}
.has-tethered.eds-c-header-new-expander__action-dropdown--search {
  display: block;
  width: 100%;
}
.has-tethered.eds-c-header-new-expander__action-dropdown--search .eds-c-header-new-expander__search {
  margin: auto;
}
.has-tethered.eds-c-header-new-expander__action-dropdown[id=eds-c-header-new-account] {
  display: block;
}
@media only screen and (min-width: 480px) {
  .has-tethered.eds-c-header-new-expander__action-dropdown[id=eds-c-header-new-account] {
    right: 56px;
  }
}
@media only screen and (min-width: 1024px) {
  .has-tethered.eds-c-header-new-expander__action-dropdown[id=eds-c-header-new-account] {
    right: 0px;
  }
}
@media only screen and (min-width: 480px) {
  .has-tethered.eds-c-header-new-expander__action-dropdown[id=eds-c-header-new__mobile-menu] {
    width: 100%;
  }
}
.has-tethered.eds-c-header-new-expander__action-dropdown[id=eds-c-header-new__mobile-menu] .eds-c-header-new-expander__action-dropdown-section:first-child {
  display: block;
}
.has-tethered.eds-c-header-new-expander__action-dropdown .eds-c-header-new-expander__action-dropdown-section--notifications:first-child > div {
  padding: 8px 24px 8px 24px;
}

@media only screen and (min-width: 768px) {
  .has-tethered.eds-c-header-new-expander--menu {
    display: none;
    visibility: hidden;
  }
  .has-tethered.eds-c-header-new-expander--menu:first-child + * {
    margin-block-start: 0;
  }
}

.eds-c-header-new-expander__action-dropdown-section > div {
  padding: 24px;
}
.eds-c-header-new-expander__action-dropdown-section > div > .eds-c-button {
  width: 100%;
}
.eds-c-header-new-expander__action-dropdown-section:not(:last-child)::after {
  content: "";
  display: block;
  border-bottom: 1px solid #C5E0F4;
  margin: 0;
}
.eds-c-header-new-expander__action-dropdown-section:first-child > div {
  padding: 24px 24px 16px 24px;
}
.eds-c-header-new-expander__action-dropdown-section:last-child > div {
  padding: 8px 24px 24px 24px;
}
.eds-c-header-new-expander__action-dropdown-section--notifications > div {
  background-color: #f0f7fc;
}
@media only screen and (min-width: 480px) {
  .eds-c-header-new-expander__action-dropdown-section--notifications > div {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}
.eds-c-header-new-expander__action-dropdown-section--notifications > div > .eds-c-header-new-expander__link {
  font-weight: 700;
}
.eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link {
  text-decoration: none;
  display: inline-block;
  padding: 16px 0;
  width: 100%;
}
.eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link .eds-c-header-new-expander__notifications-text {
  color: #025E8D;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
}
.eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link .eds-c-header-new-expander__notifications-text.visited, .eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link .eds-c-header-new-expander__notifications-text:visited {
  color: #01324B;
}
.eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link .eds-c-header-new-expander__notifications-text.hover, .eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link .eds-c-header-new-expander__notifications-text:hover {
  color: #01324B;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
}
.eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link .eds-c-header-new-expander__notifications-text.active, .eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link .eds-c-header-new-expander__notifications-text:active {
  color: #025E8D;
}
.eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link .eds-c-header-new-expander__notifications-text.focus, .eds-c-header-new-expander__action-dropdown-section--notifications .eds-c-header-new-expander__link .eds-c-header-new-expander__notifications-text:focus {
  outline: 4px solid #0088CC;
}
@media only screen and (min-width: 480px) {
  .eds-c-header-new-expander__action-dropdown-section {
    font-size: 0.875rem;
  }
  .eds-c-header-new-expander__action-dropdown-section > div {
    padding: 8px 24px;
  }
}

.eds-c-header-new-expander__action-dropdown-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.eds-c-header-new-expander__action-dropdown-links li > a {
  display: block;
  padding: 16px 0;
}

.eds-c-header-new-expander__account-name,
.eds-c-header-new-expander__account-email {
  display: block;
  color: #666;
}

.eds-c-header-new-expander__account-email {
  font-weight: 700;
}

.eds-c-header-new-expander__notifications-count {
  background-color: #b74616;
  padding: 4px 8px;
  margin-left: 8px;
  border-radius: 4px;
  color: #fff;
  display: inline;
}

.eds-c-navigation__desktop-menu,
.eds-c-navigation__dropdown {
  display: none;
}

.eds-c-navigation__mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eds-c-navigation__expander-enhanced-but-no-js .eds-c-navigation__menu,
.eds-c-navigation__expander-enhanced-but-no-js .eds-c-navigation__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.eds-c-navigation__expander-enhanced-but-no-js .eds-c-navigation__menu {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-column-gap: 16px;
  grid-row-gap: 32px;
}
.eds-c-navigation__expander-enhanced-but-no-js .eds-c-navigation__dropdown {
  display: block;
}
.eds-c-navigation__expander-enhanced-but-no-js .eds-c-navigation__link-icon {
  display: none;
}

.eds-c-navigation__no-dropdown a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #555;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1rem 1.5rem;
  border-top: 1px solid #C5E0F4;
  border-bottom: 1px solid #C5E0F4;
}

li + .eds-c-navigation__no-dropdown a {
  border-top: none;
}

@media only screen and (min-width: 768px) {
  .eds-c-navigation {
    border-bottom: 2px solid #C5E0F4;
  }
  .eds-c-navigation__dropdown {
    display: block;
  }
  .eds-c-navigation__mobile-menu {
    display: none;
  }
  .eds-c-navigation__desktop-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    gap: 0.5rem;
    justify-content: flex-start;
    line-height: 1.4;
    padding: 0.5rem 1rem;
  }
  .eds-c-navigation__menu-link {
    position: relative;
    display: flex;
    text-decoration: none;
    color: #222;
    align-items: center;
    padding: 0.8rem 0.5rem;
  }
  .eds-c-navigation__menu-link:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 6px;
    bottom: -8px;
    left: 0;
    background-color: transparent;
    border-radius: 8px;
  }
  .eds-c-navigation__menu-link:hover, .eds-c-navigation__menu-link.is-open {
    color: #025E8D;
  }
  .eds-c-navigation__menu-link:hover:before, .eds-c-navigation__menu-link.is-open:before {
    background-color: #0088CC;
  }
  .eds-c-navigation__menu-link:hover .eds-c-navigation__icon, .eds-c-navigation__menu-link.is-open .eds-c-navigation__icon {
    color: currentColor;
    fill: currentColor;
  }
  .eds-c-navigation__menu-link.is-open .eds-c-navigation__icon {
    transform: rotate(180deg);
  }
  .eds-c-navigation__menu-link--active {
    color: initial;
  }
  .eds-c-navigation__menu-link--active:before {
    background-color: #025E8D;
  }
  .eds-c-navigation__icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: all 0.2s;
    color: #666;
    fill: #666;
  }
  .eds-c-navigation--tray-dropdown .eds-c-navigation__heading {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 0.5rem;
  }
  .eds-c-navigation--tray-dropdown .eds-c-navigation__list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: #222;
    font-weight: 400;
    line-height: 1.8;
  }
  .eds-c-navigation--tray-dropdown .eds-c-navigation__list-item {
    padding: 0.5rem 0;
  }
  .eds-c-navigation--tray-dropdown .eds-c-navigation__list-link {
    color: currentColor;
  }
  .eds-c-navigation--tray-dropdown .eds-c-navigation__dropdown {
    display: flex;
    row-gap: 2rem;
    width: 100%;
    background-color: #fff;
    border-bottom: 2px solid #C5E0F4;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px 0 rgba(1, 50, 75, 0.1);
  }
  .eds-c-navigation--tray-dropdown .eds-c-navigation__dropdown.has-tethered {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    flex-direction: row;
    column-gap: 2rem;
    border-radius: 8px;
    border: 2px solid #C5E0F4;
  }
  .eds-c-navigation--tray-dropdown .eds-c-navigation__dropdown-group {
    padding: 16px;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__desktop-menu {
    border-bottom: none;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    color: #222;
    font-weight: 400;
    line-height: 1.8;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__dropdown {
    padding: 9px 0;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__menu-item {
    position: relative;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__dropdown.has-tethered {
    position: absolute;
    width: 264px;
    z-index: 10;
    top: calc(100% + 0.5rem);
    left: 0;
    flex-direction: row;
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #C5E0F4;
    box-shadow: 0 4px 12px 0 rgba(1, 50, 75, 0.1);
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list-link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    color: currentColor;
    text-decoration: none;
    padding: 0 1.5rem;
    transition: all 0.2s;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list-link--active {
    background-color: #f0f7fc;
    font-weight: 700;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list-link--active .eds-c-navigation__link-icon {
    color: #555;
    fill: #555;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list-link:focus {
    outline: none;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list-link:focus {
    background-color: #0070a8;
    color: #fff;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list-link:focus .eds-c-navigation__link-icon {
    color: currentColor;
    fill: currentColor;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list:hover .eds-c-navigation__list-link:focus {
    background-color: initial;
    color: currentColor;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list:hover .eds-c-navigation__list-link:focus .eds-c-navigation__link-icon {
    color: #666;
    fill: #666;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list:hover .eds-c-navigation__list-link:hover {
    background-color: #0070a8;
    color: #fff;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list:hover .eds-c-navigation__list-link:hover .eds-c-navigation__link-icon {
    color: currentColor;
    fill: currentColor;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__link-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: all 0.2s;
    color: #666;
    fill: #666;
  }
}
.eds-c-accordion {
  width: 100%;
}

.eds-c-accordion__button-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.eds-c-accordion__button {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 100%;
  flex-grow: 1;
  padding: 1rem 1.5rem 1rem 1rem;
  border-top: 1px solid #C5E0F4;
  border-bottom: 1px solid #C5E0F4;
}

@media only screen and (min-width: 480px) {
  .eds-c-accordion__button {
    border-left: 1px solid #C5E0F4;
    border-right: 1px solid #C5E0F4;
  }
}
.eds-c-accordion + .eds-c-accordion .eds-c-accordion__button,
li + li > .eds-c-accordion .eds-c-accordion__button {
  border-top: none;
}

.eds-c-accordion__button.is-open {
  border-left: none;
}

.eds-c-accordion__button.is-open + .eds-c-accordion__strip {
  flex-grow: 0;
  width: 8px;
  background-color: #025E8D;
}

.eds-c-accordion__icon {
  width: 1em;
  height: 1em;
  color: #222;
  fill: #222;
}

.eds-c-accordion__button.is-open .eds-c-accordion__icon {
  color: #025E8D;
  fill: #025E8D;
  transform: rotate(180deg);
}

.eds-c-accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.eds-c-accordion__title {
  display: inline-block;
  color: #555;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.eds-c-accordion__button.is-open .eds-c-accordion__title {
  color: #025E8D;
}

.eds-c-accordion__content {
  background-color: #f0f7fc;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #C5E0F4;
}

.eds-c-accordion__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}
.eds-c-accordion__content ul h1, .eds-c-accordion__content ul h2, .eds-c-accordion__content ul h3, .eds-c-accordion__content ul h4, .eds-c-accordion__content ul h5, .eds-c-accordion__content ul h6 {
  font-size: 1rem;
  margin: 0 0 1rem;
}
.eds-c-accordion__content ul li + li {
  margin-top: 1rem;
}
.eds-c-accordion__content ul a {
  color: #222;
  line-height: 1.5;
}

.eds-c-accordion__content.eds-c-accordion__content--grouped > ul > li + li {
  margin-top: 2rem;
}

.eds-c-button {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  position: relative;
  text-decoration: none;
  text-align: center;
  width: 100%;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s;
  border-radius: 32px;
  font-weight: 700;
}
.eds-c-button span {
  vertical-align: middle;
}
.eds-c-button svg {
  vertical-align: middle;
  width: 1.5rem;
  height: 1.5rem;
}
.eds-c-button svg:first-child {
  margin-right: 8px;
}
.eds-c-button svg:last-child {
  margin-left: 8px;
}

@media only screen and (min-width: 480px) {
  .eds-c-button {
    width: auto;
  }
}
.eds-c-button--primary {
  color: #fff;
  background-color: #025E8D;
  background-image: none;
  border: 2px solid transparent;
  box-shadow: none;
  text-decoration: none;
}
.eds-c-button--primary svg {
  fill: currentColor;
}
.eds-c-button--primary:visited {
  color: #fff;
}
.eds-c-button--primary:hover {
  border: 2px solid #025E8D;
  box-shadow: none;
  text-decoration: none;
}
.eds-c-button--primary:focus {
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 2px #025E8D;
  text-decoration: none;
  outline: 4px solid #0088CC;
}
.eds-c-button--primary:active {
  border: 2px solid #01324B;
  box-shadow: none;
  text-decoration: none;
  color: #01324B;
  background-color: #fff;
}
.eds-c-button--primary:hover, .eds-c-button--primary:focus {
  color: #025E8D;
  background-color: #fff;
  background-image: none;
}
.eds-c-button--primary:hover svg path, .eds-c-button--primary:focus svg path {
  fill: #025E8D;
}

.eds-c-button--secondary {
  color: #025E8D;
  background-color: #fff;
  background-image: none;
  border: 2px solid #025E8D;
  box-shadow: none;
  text-decoration: none;
}
.eds-c-button--secondary svg {
  fill: currentColor;
}
.eds-c-button--secondary:visited {
  color: #025E8D;
}
.eds-c-button--secondary:hover {
  border: 2px solid #025E8D;
  box-shadow: none;
  text-decoration: none;
}
.eds-c-button--secondary:focus {
  border: 2px solid #fff;
  box-shadow: none;
  text-decoration: none;
  outline: 4px solid #0088CC;
}
.eds-c-button--secondary:active {
  border: 2px solid #01324B;
  box-shadow: none;
  text-decoration: none;
  color: #fff;
  background-color: #01324B;
}
.eds-c-button--secondary:hover, .eds-c-button--secondary:focus {
  color: #fff;
  background-color: #025E8D;
  background-image: none;
}
.eds-c-button--secondary:hover svg path, .eds-c-button--secondary:focus svg path {
  fill: #fff;
}

.eds-c-button--tertiary {
  color: #025E8D;
  background-color: #f0f7fc;
  background-image: none;
  border: 2px solid #f0f7fc;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
}
.eds-c-button--tertiary span {
  vertical-align: baseline;
}
.eds-c-button--tertiary svg {
  fill: currentColor;
}
.eds-c-button--tertiary:visited {
  color: #025E8D;
}
.eds-c-button--tertiary:hover {
  border: 2px solid #f0f7fc;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
}
.eds-c-button--tertiary:focus {
  border: 2px solid #f0f7fc;
  box-shadow: none;
  text-decoration: underline;
  outline: 4px solid #0088CC;
}
.eds-c-button--tertiary:active {
  border: 2px solid #f0f7fc;
  box-shadow: none;
  text-decoration: underline;
  color: #01324B;
  background-color: #f0f7fc;
}
.eds-c-button--tertiary:hover, .eds-c-button--tertiary:focus {
  color: #025E8D;
  background-color: #f0f7fc;
  background-image: none;
}
.eds-c-button--tertiary:hover svg path, .eds-c-button--tertiary:focus svg path {
  fill: #025E8D;
}

.eds-c-button--small {
  font-size: 0.875rem;
  padding: 0.25rem 1rem;
}
.eds-c-button--small svg {
  width: 1rem;
  height: 1rem;
}

button.eds-c-button--small {
  position: relative;
}
button.eds-c-button--small::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

/**
 * Card
 * Default branding for component
 */
.eds-c-card-composable {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: #222;
  background-color: #fff;
  overflow: hidden;
  font-family: inherit;
  border-radius: 8px;
  border: 1px solid #C5E0F4;
}
.eds-c-card-composable.eds-c-card-composable--faux-link {
  position: relative;
}
.eds-c-card-composable.eds-c-card-composable--faux-link:hover {
  background-color: #C5E0F4;
}
.eds-c-card-composable.eds-c-card-composable--faux-link:hover .eds-c-card-composable__sidebar--with-separator::before {
  background-color: #fff;
}
.eds-c-card-composable.eds-c-card-composable--faux-link:hover .eds-c-card-composable__icon-container {
  background-color: #fff;
}
.eds-c-card-composable.eds-c-card-composable--faux-link:hover .eds-c-card-composable__metadata-list-horizontal div:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.eds-c-card-composable--highlight-default {
  border-top: 10px solid #dadada;
}

.eds-c-card-composable--highlight-action {
  border-top: 10px solid #0088CC;
}

.eds-c-card-composable__picture,
.eds-c-card-composable__image {
  flex: 0 0 auto;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  margin: 0;
}
.eds-c-card-composable__picture img,
.eds-c-card-composable__image img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}
@supports (aspect-ratio: 1/1) {
  .eds-c-card-composable__picture img,
  .eds-c-card-composable__image img {
    padding-bottom: 0;
    aspect-ratio: var(--eds-c-card-composable--image-aspect-ratio, 16/9);
  }
}

.eds-c-card-composable__summary {
  line-height: 1.5;
}
.eds-c-card-composable__summary.eds-c-card__summary--truncate-text {
  max-width: 650px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eds-c-card-composable__label,
p.eds-c-card-composable__label {
  margin-bottom: 0.25rem;
}

.eds-c-card-composable__container {
  display: flex;
  flex-direction: column;
}

.eds-c-card-composable__container--with-sidebar {
  flex-direction: row;
  flex-grow: 1;
}

.eds-c-card-composable__body {
  display: flex;
  flex: 1 1 auto;
  word-break: break-word;
  font-size: 0.875rem;
  padding: 16px;
}

.eds-c-card-composable__title {
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 8px;
  max-width: 650px;
}
.eds-c-card-composable__title > a {
  color: #222;
}
.eds-c-card-composable__title > a:visited {
  color: #222;
}

.eds-c-card-composable--faux-link .eds-c-card-composable__title > a {
  text-decoration: none;
}
.eds-c-card-composable--faux-link .eds-c-card-composable__title > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.eds-c-card-composable__sidebar {
  padding: 0 16px 16px 16px;
}

.eds-c-card-composable__sidebar--with-separator {
  display: flex;
  padding: 0 16px 16px 16px;
  flex-direction: column;
  gap: 8px;
}
.eds-c-card-composable__sidebar--with-separator::before {
  content: "";
  display: block;
  height: 1px;
  flex: 0 0 auto;
  background: #C5E0F4;
}

.eds-c-card-composable__icon-container {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #f0f7fc;
  padding: 16px;
  margin-right: 16px;
  color: #0088CC;
}

.eds-c-card-composable__metadata-list {
  margin: 0;
  line-height: 1.5;
}
.eds-c-card-composable__metadata-list div:not(:last-child) {
  margin-bottom: 16px;
}
.eds-c-card-composable__metadata-list dt {
  margin-bottom: 4px;
}
.eds-c-card-composable__metadata-list dd {
  font-weight: 700;
  white-space: nowrap;
}

.eds-c-card-composable__metadata-list-horizontal {
  margin: 0;
  flex-grow: 1;
}
.eds-c-card-composable__metadata-list-horizontal div {
  display: flex;
  justify-content: space-between;
}
.eds-c-card-composable__metadata-list-horizontal div:not(:last-child) {
  border-bottom: 1px solid #C5E0F4;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.eds-c-card-composable__metadata-list-horizontal dt {
  margin-bottom: 0;
}
.eds-c-card-composable__metadata-list-horizontal dd {
  font-weight: 700;
}
.eds-c-card-composable__metadata-list-horizontal dd:not(:last-child) {
  margin-bottom: 16px;
}

.eds-c-card-composable__journal-cover img {
  border-radius: 8px;
  max-width: 100%;
}

.eds-c-card-composable__body-journal {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: 1fr auto;
  gap: 16px 16px;
  grid-template-areas: "eds-c-card-composable__journal-cover eds-c-card-composable__journal-title" "eds-c-card-composable__journal-description eds-c-card-composable__journal-description";
}

.eds-c-card-composable__journal-cover {
  grid-area: eds-c-card-composable__journal-cover;
}

.eds-c-card-composable__journal-title {
  grid-area: eds-c-card-composable__journal-title;
}

.eds-c-card-composable__journal-description {
  grid-area: eds-c-card-composable__journal-description;
}

@media only screen and (min-width: 1220px) {
  .eds-c-card-composable--horizontal.eds-c-card-composable--highlight-default {
    border-top: 1px solid #C5E0F4;
    border-left: 10px solid #dadada;
  }
  .eds-c-card-composable--horizontal.eds-c-card-composable--highlight-action {
    border-top: 1px solid #C5E0F4;
    border-left: 10px solid #0088CC;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__container--to-sidebar {
    flex-direction: row;
    flex-grow: 1;
    flex-wrap: wrap;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__sidebar {
    width: 280px;
    padding: 16px 16px 16px 0;
    flex-grow: 1;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__sidebar--with-separator {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__sidebar--with-separator::before {
    width: 1px;
    height: auto;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__title {
    font-size: 1.5rem;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__body {
    flex-basis: 0;
    flex-grow: 999;
    min-width: 400px;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__body-journal {
    grid-template-columns: 115px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "eds-c-card-composable__journal-cover eds-c-card-composable__journal-title" "eds-c-card-composable__journal-cover eds-c-card-composable__journal-description";
    gap: 0 16px;
    flex-basis: 0;
    flex-grow: 999;
    min-width: 400px;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__journal-cover {
    grid-area: eds-c-card-composable__journal-cover;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__journal-title {
    grid-area: eds-c-card-composable__journal-title;
  }
  .eds-c-card-composable--horizontal .eds-c-card-composable__journal-description {
    grid-area: eds-c-card-composable__journal-description;
  }
}
.eds-c-footer {
  font-size: 1rem;
  background-color: #01324B;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-top: 32px;
  padding-bottom: 32px;
  color: #fff;
  line-height: 1.4;
}

.eds-c-footer__container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 16px;
}
@media print {
  .eds-c-footer__container {
    display: none;
  }
}

.eds-c-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 32px;
}
.eds-c-footer__links li {
  display: inline-block;
}
.eds-c-footer__links li:not(:last-child) {
  margin-right: 24px;
}

.eds-c-footer__user {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 24px;
}

.eds-c-footer__user-info {
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.4;
}

.eds-c-footer__legal {
  color: #fff;
  font-size: 1rem;
  margin-top: 4px;
  margin-bottom: 0;
}

.eds-c-footer__link {
  line-height: 1.4;
  color: inherit;
}
.eds-c-footer__link.visited, .eds-c-footer__link:visited {
  color: inherit;
}
.eds-c-footer__link.hover, .eds-c-footer__link:hover {
  color: inherit;
}

.eds-c-footer__link > img {
  vertical-align: middle;
}

button.eds-c-footer__link {
  border: none;
  background: none;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: inherit;
  padding: 0;
  text-align: left;
}

.eds-c-footer__button-text {
  color: #025E8D;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
}
.eds-c-footer__button-text.visited, .eds-c-footer__button-text:visited {
  color: #01324B;
}
.eds-c-footer__button-text.hover, .eds-c-footer__button-text:hover {
  color: #01324B;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
}
.eds-c-footer__button-text.active, .eds-c-footer__button-text:active {
  color: #025E8D;
}
.eds-c-footer__button-text.focus, .eds-c-footer__button-text:focus {
  outline: 4px solid #0088CC;
}
.eds-c-footer__button-text {
  color: inherit;
}
.eds-c-footer__button-text.visited, .eds-c-footer__button-text:visited {
  color: inherit;
}
.eds-c-footer__button-text.hover, .eds-c-footer__button-text:hover {
  color: inherit;
}

.eds-c-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eds-c-footer__grid {
  display: flex;
  flex-wrap: wrap;
}
@supports (display: grid) {
  .eds-c-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-column-gap: 16px;
    grid-row-gap: 32px;
  }
}

.eds-c-footer__group {
  flex: 1 1 50%;
  max-width: 50%;
  padding-right: 16px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 1024px) {
  .eds-c-footer__group {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@supports (display: grid) {
  .eds-c-footer__group {
    padding-right: 0;
    max-width: none;
    margin-bottom: 0;
  }
}

.eds-c-footer__group--separator {
  border-bottom: 2px solid #fff;
  margin-bottom: 32px;
  padding-bottom: 32px;
}

.eds-c-footer__heading {
  color: #fff;
  margin-bottom: 16px;
  font-weight: bold;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.eds-c-footer__heading--visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}

.eds-c-footer__item:not(:last-child) {
  margin-bottom: 16px;
}

.eds-c-form {
  font-size: 1rem;
  line-height: 1.2;
}
.eds-c-form small {
  font-size: inherit;
}

.eds-c-form__field {
  max-width: 70ch;
}

.eds-c-form__input {
  box-sizing: border-box;
  border: 1px solid #666;
  border-radius: 4px;
  color: #000;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #fff;
  font-weight: 400;
  line-height: 1.8;
}

.eds-c-form__input:focus {
  outline: 3px solid #0088CC;
}

.eds-c-form__input[invalid] {
  border-color: #BE1818;
  border-width: 2px;
}

.eds-c-form__input[disabled] {
  cursor: not-allowed;
  border-color: #dadada;
}

.eds-c-form__inline-fields * {
  margin: 0;
}

.eds-c-form__inline-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--form-inline-gap, 0.5rem);
}

.eds-c-form__inline-fields--nowrap {
  flex-wrap: nowrap;
}

.eds-c-form__icon-error svg {
  height: 1.5rem;
  width: 1.5rem;
  vertical-align: calc(0.5rem / 8 * -2);
  overflow: visible;
  pointer-events: none;
}

.eds-c-form__disclosure-box {
  margin-left: calc(1.5rem / 4);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  display: none;
}

.eds-c-form__disclosure-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(1.5rem / 2);
  background-color: #dadada;
  border-radius: 4px;
}

:checked ~ .eds-c-form__disclosure-box {
  display: block;
}

.eds-c-form__buttons-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.eds-c-form__buttons-stack--full-width {
  align-items: normal;
}

.eds-c-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  margin-bottom: 0.5rem;
}

.eds-c-label--visually-hidden {
  /* hide visually, not to assistive tech */
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/**
 * @springernature/elements/skip-link
 * Default skin settings
 *
 */
/**
 * @springernature/elements/skip-link
 * A full width link which is hidden for mouse users
 *
 */
.c-skip-link {
  background: #01324B;
  color: #fff;
  font-size: 1rem;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  padding: 8px;
  position: absolute;
  inset: 0;
  bottom: auto;
  z-index: 9999;
  transform: translateY(-100%);
}
@media (prefers-reduced-motion: reduce) {
  .c-skip-link {
    transition: top 0.3s ease-in-out;
  }
}
@media print {
  .c-skip-link {
    display: none;
  }
}
.c-skip-link:link, .c-skip-link:active, .c-skip-link:visited, .c-skip-link:hover {
  color: #fff;
}
.c-skip-link:focus {
  transform: translateY(0%);
}

.jh-c-masthead__colour-1 {
  --background-color: rgb(255, 21, 0);
}

.jh-c-masthead__colour-2 {
  --background-color: rgb(255, 64, 0);
}

.jh-c-masthead__colour-3 {
  --background-color: rgb(255, 106, 0);
}

.jh-c-masthead__colour-4 {
  --background-color: rgb(255, 149, 0);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-5 {
  --background-color: rgb(255, 191, 0);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-6 {
  --background-color: rgb(255, 234, 0);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-7 {
  --background-color: rgb(234, 255, 0);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-8 {
  --background-color: rgb(191, 255, 0);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-9 {
  --background-color: rgb(149, 255, 0);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-10 {
  --background-color: rgb(106, 255, 0);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-11 {
  --background-color: rgb(43, 255, 0);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-12 {
  --background-color: rgb(0, 255, 43);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-13 {
  --background-color: rgb(0, 255, 106);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-14 {
  --background-color: rgb(0, 255, 149);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-15 {
  --background-color: rgb(0, 255, 191);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-16 {
  --background-color: rgb(0, 255, 234);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-17 {
  --background-color: rgb(0, 234, 255);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-18 {
  --background-color: rgb(0, 191, 255);
  --gradient-light: rgba(0, 0, 0, 0.5);
  --gradient-dark: rgba(0, 0, 0, 0.8);
}

.jh-c-masthead__colour-19 {
  --background-color: rgb(0, 149, 255);
}

.jh-c-masthead__colour-20 {
  --background-color: rgb(0, 106, 255);
}

.jh-c-masthead__colour-21 {
  --background-color: rgb(0, 21, 255);
}

.jh-c-masthead__colour-22 {
  --background-color: rgb(121, 77, 255);
}

.jh-c-masthead__colour-23 {
  --background-color: rgb(151, 77, 255);
}

.jh-c-masthead__colour-24 {
  --background-color: rgb(170, 51, 255);
}

.jh-c-masthead__colour-25 {
  --background-color: rgb(198, 26, 255);
}

.jh-c-masthead__colour-26 {
  --background-color: rgb(255, 0, 234);
}

.jh-c-masthead__colour-27 {
  --background-color: rgb(255, 0, 191);
}

.jh-c-masthead__colour-28 {
  --background-color: rgb(255, 0, 149);
}

.jh-c-masthead__colour-29 {
  --background-color: rgb(255, 0, 106);
}

.jh-c-masthead__colour-30 {
  --background-color: rgb(255, 0, 64);
}

.jh-c-masthead__colour-31 {
  --background-color: rgb(255, 0, 21);
}

.jh-c-masthead {
  position: relative;
  background: #0070a8;
  background: var(--background-color, #0070a8);
}

.jh-c-masthead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, var(--gradient-light, rgba(0, 0, 0, 0.4)), var(--gradient-dark, rgba(0, 0, 0, 0.7)));
}

.jh-c-masthead.jh-c-masthead--disable-journal-colour::after {
  background: unset;
}

@media only screen and (max-width: 479px) {
  .jh-c-masthead::after {
    background: linear-gradient(225deg, var(--gradient-light, rgba(0, 0, 0, 0.4)), var(--gradient-dark, rgba(0, 0, 0, 0.7)));
  }
}
.jh-c-masthead__container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.jh-c-masthead--background {
  position: relative;
  min-height: 250px;
  padding: 48px 0;
  z-index: -1;
}
.jh-c-masthead--background::before {
  content: "";
  display: block;
  top: 0;
  position: absolute;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f3f3f3;
  background-image: url("/img/masthead.png");
  height: 100%;
}
.jh-c-masthead--background::after {
  background: unset;
}

@media only screen and (min-width: 480px) {
  .jh-c-masthead--background {
    min-height: 310px;
  }
}
.jh-c-tagline {
  margin-top: -74px;
  margin-bottom: 16px;
}
.jh-c-tagline > div {
  padding-top: 16px;
}

@media only screen and (min-width: 1024px) {
  .jh-c-tagline {
    margin-top: -148px;
    margin-bottom: 64px;
  }
  .jh-c-tagline > div {
    padding-top: 64px;
  }
}
.jh-c-tagline__rhombus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--tagline-border-color, #00A69D);
  border-radius: 32px;
  background-color: var(--tagline-background-color, #01324B);
  overflow: hidden;
  height: auto;
  min-height: 150px;
  max-width: 150px;
  clip-path: polygon(0 0, 80% 0%, 100% 20%, 100% 100%, 100% 100%, 20% 100%, 0% 80%, 0 0);
}
.jh-c-tagline__rhombus::before {
  position: absolute;
  content: "";
  border-top: 8px solid var(--tagline-border-color, #00A69D);
  transform: rotate(45deg);
  bottom: 0px;
  left: -64px;
  content: "";
  width: 160px;
}
.jh-c-tagline__rhombus::after {
  position: absolute;
  content: "";
  border-top: 8px solid var(--tagline-border-color, #00A69D);
  transform: rotate(45deg);
  top: 0px;
  right: -64px;
  content: "";
  width: 160px;
}
.jh-c-tagline__rhombus svg {
  width: 82px;
}

@media only screen and (min-width: 480px) {
  .jh-c-tagline__rhombus {
    min-height: 233px;
    max-width: 233px;
    border: 12px solid var(--tagline-border-color, #00A69D);
  }
  .jh-c-tagline__rhombus::before {
    left: -56px;
    border-top: 12px solid var(--tagline-border-color, #00A69D);
  }
  .jh-c-tagline__rhombus::after {
    right: -56px;
    border-top: 12px solid var(--tagline-border-color, #00A69D);
  }
  .jh-c-tagline__rhombus svg {
    width: 132px;
  }
}
.jh-c-heading-layout {
  display: flex;
  align-items: center;
}

.jh-c-heading-layout__heading {
  margin-top: 0;
  margin-bottom: 0;
}

.jh-c-heading-layout__icon {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #f0f7fc;
  border-radius: 50%;
  color: #222;
}
.jh-c-heading-layout__icon svg {
  fill: currentColor;
  transform: translate(0, 0);
  display: inline-block;
  vertical-align: text-top;
  width: 24px;
  height: 24px;
}
.jh-c-heading-layout__icon + * {
  padding-left: 8px;
}

@media only screen and (min-width: 480px) {
  .jh-c-heading-layout__icon {
    width: 64px;
    height: 64px;
  }
  .jh-c-heading-layout__icon svg {
    width: 32px;
    height: 32px;
  }
  .jh-c-heading-layout__icon + * {
    padding-left: 16px;
  }
}
.u-clearfix::before, .u-clearfix::after {
  content: "";
  display: table;
}
.u-clearfix::after {
  clear: both;
}

.u-clear-both {
  clear: both;
}

.u-clear-left {
  clear: left;
}

.u-clear-right {
  clear: right;
}

.u-clear-float {
  float: none;
}

.u-color-inherit {
  color: inherit;
}

.u-container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 16px;
}

.u-display-block {
  display: block;
}

.u-display-inline {
  display: inline;
}

.u-display-inline-block {
  display: inline-block;
}

.u-display-flex {
  display: flex;
  width: 100%;
}

.u-display-inline-flex {
  display: inline-flex;
}

.u-display-grid {
  display: grid;
}

.u-display-table {
  display: table;
}

.u-flex-direction-row {
  flex-direction: row;
}

.u-flex-direction-column {
  flex-direction: column;
}

.u-flex-wrap {
  flex-wrap: wrap;
}

.u-align-items-center {
  align-items: center;
}

.u-align-items-baseline {
  align-items: baseline;
}

.u-justify-content-space-between {
  justify-content: space-between;
}

.u-justify-content-center {
  justify-content: center;
}

.u-justify-content-left {
  justify-content: left;
}

.u-flex-grow {
  flex: 1 0 auto;
}

.u-flex-grow-shrink {
  flex: 1 1 auto;
}

.u-flex-shrink {
  flex: 0 1 auto;
}

.u-flex-static {
  flex: 0 0 auto;
}

.u-align-self-center {
  align-self: center;
}

.u-align-self-start {
  align-self: flex-start;
}

.u-align-self-end {
  align-self: flex-end;
}

.u-float-right {
  float: right;
}

.u-float-left {
  float: left;
}

.u-display-none {
  display: none;
}

/* hide from both screenreaders and browsers */
.u-hide,
.js .u-js-hide {
  display: none;
  visibility: hidden;
}
.u-hide:first-child + *,
.js .u-js-hide:first-child + * {
  margin-block-start: 0;
}

/* show to both screenreaders and browsers */
.u-show,
.js .u-js-show {
  display: block;
  visibility: visible;
}

.u-show-inline,
.js .u-js-show-inline {
  display: inline;
  visibility: visible;
}

/* hide only visually, but have it available for screenreaders */
.u-visually-hidden,
.js .u-js-visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}
.u-visually-hidden--off,
.js .u-js-visually-hidden--off {
  border: 0;
  clip: initial;
  height: auto;
  margin: 0;
  overflow: auto;
  padding: 0;
  position: relative;
  width: auto;
}

/* make invisible but retain dimensions */
.u-invisible {
  visibility: hidden;
}

/* hide only the text, keep element visible */
.u-hide-text,
.js .u-js-hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  direction: ltr;
  vertical-align: bottom;
}

/* hiding overflow */
.u-hide-overflow {
  overflow: hidden;
}

.u-hide-sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media print {
  .u-hide-print {
    display: none;
  }
}
/**
 * media-query hiding
 * intentionally avoids 'max' and 'range' to prevent bloat
 */
@media only screen and (min-width: 480px) {
  .u-hide-at-xs,
  .js .u-js-hide-at-xs {
    display: none;
    visibility: hidden;
  }
  .u-hide-at-xs:first-child + *,
  .js .u-js-hide-at-xs:first-child + * {
    margin-block-start: 0;
  }
  .u-show-at-xs,
  .js .u-js-show-at-xs {
    display: block;
    visibility: visible;
  }
}
@media only screen and (min-width: 768px) {
  .u-hide-at-sm,
  .js .u-js-hide-at-sm {
    display: none;
    visibility: hidden;
  }
  .u-hide-at-sm:first-child + *,
  .js .u-js-hide-at-sm:first-child + * {
    margin-block-start: 0;
  }
  .u-show-at-sm,
  .js .u-js-show-at-sm {
    display: block;
    visibility: visible;
  }
}
@media only screen and (min-width: 876px) {
  .u-hide-at-md,
  .js .u-js-hide-at-md {
    display: none;
    visibility: hidden;
  }
  .u-hide-at-md:first-child + *,
  .js .u-js-hide-at-md:first-child + * {
    margin-block-start: 0;
  }
  .u-show-at-md,
  .js .u-js-show-at-md {
    display: block;
    visibility: visible;
  }
}
@media only screen and (min-width: 1024px) {
  .u-hide-at-lg,
  .js .u-js-hide-at-lg {
    display: none;
    visibility: hidden;
  }
  .u-hide-at-lg:first-child + *,
  .js .u-js-hide-at-lg:first-child + * {
    margin-block-start: 0;
  }
  .u-show-at-lg,
  .js .u-js-show-at-lg {
    display: block;
    visibility: visible;
  }
}
@media only screen and (min-width: 1220px) {
  .u-hide-at-xl,
  .js .u-js-hide-at-xl {
    display: none;
    visibility: hidden;
  }
  .u-hide-at-xl:first-child + *,
  .js .u-js-hide-at-xl:first-child + * {
    margin-block-start: 0;
  }
  .u-show-at-xl,
  .js .u-js-show-at-xl {
    display: block;
    visibility: visible;
  }
}
.u-icon {
  fill: currentColor;
  transform: translate(0, 0);
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1em;
}

.u-full-height {
  height: 100%;
}

.u-vertical-align-baseline {
  vertical-align: baseline;
}

.u-vertical-align-top {
  vertical-align: top;
}

.u-vertical-align-bottom {
  vertical-align: bottom;
}

.u-vertical-align-middle {
  vertical-align: middle;
}

@media only screen and (min-width: 1024px) {
  .u-layout-focus {
    width: 66.6667%;
    padding-right: var(--with-padding-right, 4rem);
  }
}

.u-layout-focus--max-width {
  max-width: 854px;
}

.u-link {
  color: #025E8D;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
}
.u-link.visited, .u-link:visited {
  color: #01324B;
}
.u-link.hover, .u-link:hover {
  color: #01324B;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
}
.u-link.active, .u-link:active {
  color: #025E8D;
}
.u-link.focus, .u-link:focus {
  outline: 4px solid #0088CC;
}

.u-link-inherit {
  color: inherit;
}
.u-link-inherit.visited, .u-link-inherit:visited {
  color: inherit;
}
.u-link-inherit.hover, .u-link-inherit:hover {
  color: inherit;
}

.u-link-underline {
  text-decoration: underline;
}

.u-link-faux-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.u-link-wide-area {
  position: relative;
  display: inline-block;
}
.u-link-wide-area:after {
  content: "";
  position: absolute;
  top: -0.6rem;
  right: 0;
  bottom: -0.6rem;
  left: 0;
  min-height: 44px;
}

.u-link--contrast {
  color: #fff;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
}
.u-link--contrast.visited, .u-link--contrast:visited {
  color: #fff;
}
.u-link--contrast.hover, .u-link--contrast:hover {
  color: #fff;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
}
.u-link--contrast.active, .u-link--contrast:active {
  color: #fff;
}
.u-link--contrast.focus, .u-link--contrast:focus {
  outline: 4px solid #0088CC;
}

.u-list-style-number {
  list-style-type: decimal;
}

.u-list-style-bullet {
  list-style-type: disc;
}

.u-list-style-dash > ::marker {
  content: "– ";
  font-size: 1.2em;
  line-height: 1;
}

.u-list-style-none {
  list-style-type: none;
}

.u-list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-list-inline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.u-list-inline > li {
  display: inline;
}

.u-custom-list-number {
  float: left;
  width: 3em;
  padding-right: 0.5em;
  margin-left: -3.5em;
  text-align: right;
}

.u-list-comma-separated {
  list-style: none;
  margin: 0;
  padding: 0;
}
.u-list-comma-separated > li {
  display: inline;
}
.u-list-comma-separated > li:not(:first-child):not(:last-child)::before {
  content: ", ";
}
.u-list-comma-separated > li:not(:only-child):last-child::before {
  content: " & ";
}

.u-list-truncated > li:not(:only-child):last-child::before {
  content: " ... ";
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-overflow-visible {
  overflow: visible;
}

.u-position-absolute {
  position: absolute;
}

.u-position-relative {
  position: relative;
}

.u-position-top {
  top: 0;
}

.u-position-left {
  left: 0;
}

.u-position-bottom {
  bottom: 0;
}

.u-position-right {
  right: 0;
}

.u-position-negative-right {
  right: 100%;
}

.u-ma-0 {
  margin: 0;
}

.u-ma-4 {
  margin: 4px;
}

.u-ma-8 {
  margin: 8px;
}

.u-ma-16 {
  margin: 16px;
}

.u-ma-24 {
  margin: 24px;
}

.u-ma-32 {
  margin: 32px;
}

.u-ma-48 {
  margin: 48px;
}

.u-ma-64 {
  margin: 64px;
}

.u-ma-auto {
  margin: auto;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mt-4 {
  margin-top: 4px;
}

.u-mt-8 {
  margin-top: 8px;
}

.u-mt-16 {
  margin-top: 16px;
}

.u-mt-24 {
  margin-top: 24px;
}

.u-mt-32 {
  margin-top: 32px;
}

.u-mt-48 {
  margin-top: 48px;
}

.u-mt-64 {
  margin-top: 64px;
}

.u-mt-auto {
  margin-top: auto;
}

.u-mr-0 {
  margin-right: 0;
}

.u-mr-4 {
  margin-right: 4px;
}

.u-mr-8 {
  margin-right: 8px;
}

.u-mr-16 {
  margin-right: 16px;
}

.u-mr-24 {
  margin-right: 24px;
}

.u-mr-32 {
  margin-right: 32px;
}

.u-mr-48 {
  margin-right: 48px;
}

.u-mr-64 {
  margin-right: 64px;
}

.u-mr-auto {
  margin-right: auto;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-4 {
  margin-bottom: 4px;
}

.u-mb-8 {
  margin-bottom: 8px;
}

.u-mb-16 {
  margin-bottom: 16px;
}

.u-mb-24 {
  margin-bottom: 24px;
}

.u-mb-32 {
  margin-bottom: 32px;
}

.u-mb-48 {
  margin-bottom: 48px;
}

.u-mb-64 {
  margin-bottom: 64px;
}

.u-mb-auto {
  margin-bottom: auto;
}

.u-ml-0 {
  margin-left: 0;
}

.u-ml-4 {
  margin-left: 4px;
}

.u-ml-8 {
  margin-left: 8px;
}

.u-ml-16 {
  margin-left: 16px;
}

.u-ml-24 {
  margin-left: 24px;
}

.u-ml-32 {
  margin-left: 32px;
}

.u-ml-48 {
  margin-left: 48px;
}

.u-ml-64 {
  margin-left: 64px;
}

.u-ml-auto {
  margin-left: auto;
}

.u-pa-0 {
  padding: 0;
}

.u-pa-4 {
  padding: 4px;
}

.u-pa-8 {
  padding: 8px;
}

.u-pa-16 {
  padding: 16px;
}

.u-pa-24 {
  padding: 24px;
}

.u-pa-32 {
  padding: 32px;
}

.u-pa-48 {
  padding: 48px;
}

.u-pa-64 {
  padding: 64px;
}

.u-pt-0 {
  padding-top: 0;
}

.u-pt-4 {
  padding-top: 4px;
}

.u-pt-8 {
  padding-top: 8px;
}

.u-pt-16 {
  padding-top: 16px;
}

.u-pt-24 {
  padding-top: 24px;
}

.u-pt-32 {
  padding-top: 32px;
}

.u-pt-48 {
  padding-top: 48px;
}

.u-pt-64 {
  padding-top: 64px;
}

.u-pr-0 {
  padding-right: 0;
}

.u-pr-4 {
  padding-right: 4px;
}

.u-pr-8 {
  padding-right: 8px;
}

.u-pr-16 {
  padding-right: 16px;
}

.u-pr-24 {
  padding-right: 24px;
}

.u-pr-32 {
  padding-right: 32px;
}

.u-pr-48 {
  padding-right: 48px;
}

.u-pr-64 {
  padding-right: 64px;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-pb-4 {
  padding-bottom: 4px;
}

.u-pb-8 {
  padding-bottom: 8px;
}

.u-pb-16 {
  padding-bottom: 16px;
}

.u-pb-24 {
  padding-bottom: 24px;
}

.u-pb-32 {
  padding-bottom: 32px;
}

.u-pb-48 {
  padding-bottom: 48px;
}

.u-pb-64 {
  padding-bottom: 64px;
}

.u-pl-0 {
  padding-left: 0;
}

.u-pl-4 {
  padding-left: 4px;
}

.u-pl-8 {
  padding-left: 8px;
}

.u-pl-16 {
  padding-left: 16px;
}

.u-pl-24 {
  padding-left: 24px;
}

.u-pl-32 {
  padding-left: 32px;
}

.u-pl-48 {
  padding-left: 48px;
}

.u-pl-64 {
  padding-left: 64px;
}

.u-keyline {
  border-bottom: 1px solid #999;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.u-keyline--thick {
  border-bottom: 2px solid #999;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.u-shadow {
  border: 1px solid #000;
  box-shadow: 0px 4px 12px 0px rgba(1, 50, 75, 0.1);
}

.u-monospace {
  font-family: monospace;
}

.u-sans-serif {
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.u-serif {
  font-family: "Merriweather", serif;
}

.u-small-caps {
  font-size: 0.8em; /* scale based on containing text */
  text-transform: uppercase;
}

.u-text-right {
  text-align: right;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-normal {
  font-weight: 400;
}

.u-text-bold {
  font-weight: 700;
}

.u-text-xxs {
  font-size: 0.75rem;
}

.u-text-xs {
  font-size: 0.875rem;
}

.u-text-s {
  font-size: 1rem;
}

.u-text-default {
  font-size: 1.125rem;
}

.u-text-md {
  font-size: 1.25rem;
}

.u-text-l {
  font-size: 1.5rem;
}

.u-text-xl {
  font-size: 1.75rem;
}

.u-text-xxl {
  font-size: 2rem;
}

.u-text-hl {
  font-size: 2.1875rem;
}

.u-text-hxl {
  font-size: 2.25rem;
}

.u-meta-large {
  font-weight: 400;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
}

.u-meta-medium {
  font-weight: 400;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
}

.u-meta-small {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.u-double-underline {
  text-decoration: underline;
  -webkit-text-decoration-skip: skip;
  text-decoration-skip-ink: auto;
  border-bottom: 1px solid;
}

.u-text-font-smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.u-word-wrap {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.u-upper {
  text-transform: uppercase;
}

.u-lower {
  text-transform: lowercase;
}

.u-capitalize {
  text-transform: capitalize;
}

.u-underline {
  text-decoration: underline;
  -webkit-text-decoration-skip: skip;
  text-decoration-skip-ink: auto;
}

.u-unstyled {
  font-weight: normal;
  font-style: normal;
}

.u-h1 {
  font-size: 2.25rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.u-h2 {
  font-size: 1.75rem;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.u-h3 {
  font-size: 1.5rem;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.u-h4 {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
}

.u-h5 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.u-mbs-0 {
  margin-block-start: 0 !important;
}

.u-line-height-base {
  line-height: 1.8;
}

.u-line-height-md {
  line-height: 1.5;
}

.u-line-height-tight {
  line-height: 1.4;
}

.u-line-height-tighter {
  line-height: 1.2;
}

.u-shifted-section {
  margin-top: -80px;
}

@media only screen and (min-width: 480px) {
  .u-shifted-section {
    margin-top: -49px;
  }
  .u-shifted-section h1 {
    margin-top: 100px;
  }
}
.jh-c-heading-title {
  border-top: 1px solid #dadada;
  padding-top: 16px;
}

/*# sourceMappingURL=link-homepage-enhanced.css.map */
