@charset "UTF-8";
/**
 * 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: #222222;
  background: #ffffff;
}

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/dropdown
 * Default skin settings
 * Replace these in your application
 *
 */
.c-dropdown {
  background-color: lightgrey;
  color: black;
  padding: 16px;
  line-height: 1.5;
}
.js .c-dropdown {
  background: none;
  padding: 0;
  position: relative;
}

.c-dropdown__label {
  display: block;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 8px;
  font-size: 0.875rem;
}
.js .c-dropdown__label {
  display: none;
  visibility: hidden;
}

.c-dropdown__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.js .c-dropdown__menu {
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 #ccc;
  box-sizing: border-box;
  padding: 8px 0;
  position: absolute;
  transform: translateY(8px);
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .js .c-dropdown__menu {
    transform: translateY(16px);
    min-width: 290px;
  }
}

.c-dropdown__link {
  text-decoration: underline;
  font-size: 0.875rem;
}
.js .c-dropdown__link {
  color: black;
  padding: 4px 16px;
  font-size: 1rem;
  display: block;
  text-decoration: none;
}
.js .c-dropdown__link:hover {
  outline: 0;
  background-color: #29303c;
  color: white;
}
.js .c-dropdown__link:focus {
  outline: 3px solid #fece3e;
}

.c-dropdown__button {
  display: none;
  visibility: hidden;
}
.js .c-dropdown__button {
  align-items: center;
  background: white;
  border: 1px solid black;
  border-radius: 3px;
  color: black;
  display: flex;
  font-size: 1rem;
  height: 34px;
  justify-content: space-between;
  padding: 0 8px;
  visibility: visible;
  width: 100%;
}
.js .c-dropdown__button > svg {
  transition-duration: 0.2s;
}
.js .c-dropdown__button.is-open {
  outline: 3px solid #fece3e;
}
.js .c-dropdown__button.is-open svg {
  transform: rotate(180deg);
}
.js .c-dropdown__button span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.js .c-dropdown__icon {
  fill: currentColor;
  transform: translate(0, 0);
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-left: 24px;
  transform: translateY(6%);
  font-size: 0.75rem;
  flex: 0 0 auto;
}

.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: #222222;
  fill: #222222;
}

.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: #555555;
  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: #222222;
  line-height: 1.5;
}

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

.eds-c-breadcrumbs {
  font-size: 1rem;
  font-size: min(max(0.875rem, 2vw), 1rem);
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222222;
  list-style: none;
  margin: 0;
  padding: 0;
}
.eds-c-breadcrumbs > li {
  display: inline;
}

.eds-c-breadcrumbs__link,
.eds-c-breadcrumbs__link.visited,
.eds-c-breadcrumbs__link:visited,
.eds-c-breadcrumbs__link.hover,
.eds-c-breadcrumbs__link:hover {
  color: #222222;
}

.eds-c-breadcrumbs__icon {
  width: 1em;
  height: 1em;
  margin: 0.25rem;
  fill: #222222;
  display: inline-block;
  vertical-align: middle;
}

.eds-c-breadcrumbs--contrast {
  color: #ffffff;
}

.eds-c-breadcrumbs--contrast .eds-c-breadcrumbs__link,
.eds-c-breadcrumbs--contrast .eds-c-breadcrumbs__link.visited,
.eds-c-breadcrumbs--contrast .eds-c-breadcrumbs__link:visited,
.eds-c-breadcrumbs--contrast .eds-c-breadcrumbs__link.hover,
.eds-c-breadcrumbs--contrast .eds-c-breadcrumbs__link:hover {
  color: #ffffff;
}

.eds-c-breadcrumbs--contrast .eds-c-breadcrumbs__icon {
  fill: #ffffff;
}

@media only screen and (max-width: 479px) {
  .eds-c-breadcrumbs .eds-c-breadcrumbs__item {
    display: none;
  }
  .eds-c-breadcrumbs .eds-c-breadcrumbs__item:nth-last-child(1),
  .eds-c-breadcrumbs .eds-c-breadcrumbs__item:nth-last-child(2) {
    display: inline;
  }
}
.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: #ffffff;
  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: #ffffff;
}
.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;
}
.eds-c-button--primary:active {
  border: 2px solid #01324b;
  box-shadow: none;
  text-decoration: none;
  color: #01324b;
  background-color: #ffffff;
}
.eds-c-button--primary:hover, .eds-c-button--primary:focus {
  color: #025e8d;
  background-color: #ffffff;
  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: #ffffff;
  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 #ffffff;
  box-shadow: none;
  text-decoration: none;
}
.eds-c-button--secondary:active {
  border: 2px solid #01324b;
  box-shadow: none;
  text-decoration: none;
  color: #ffffff;
  background-color: #01324b;
}
.eds-c-button--secondary:hover, .eds-c-button--secondary:focus {
  color: #ffffff;
  background-color: #025e8d;
  background-image: none;
}
.eds-c-button--secondary:hover svg path, .eds-c-button--secondary:focus svg path {
  fill: #ffffff;
}

.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;
}
.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: #222222;
  background-color: #ffffff;
  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: #ffffff;
}
.eds-c-card-composable.eds-c-card-composable--faux-link:hover .eds-c-card-composable__icon-container {
  background-color: #ffffff;
}
.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 #ffffff;
}

.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: #222222;
}
.eds-c-card-composable__title > a:visited {
  color: #222222;
}

.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;
  }
}
/**
 * Card
 * Default branding for component
 */
.eds-c-card {
  position: relative;
  text-decoration: none;
  display: flex;
  color: #222222;
}
.eds-c-card.eds-c-card--stretch-height {
  height: 100%;
}
.eds-c-card:focus {
  border-radius: 8px;
}

.eds-c-card__container {
  font-size: 0.875rem;
  min-width: 0;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  flex: 1;
}
.eds-c-card__container img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}
@supports (aspect-ratio: 1/1) {
  .eds-c-card__container img {
    padding-bottom: 0;
    aspect-ratio: var(--eds-c-card--image-aspect-ratio, 16/9);
  }
}
.eds-c-card__container.eds-c-card__container--image, .eds-c-card__container.eds-c-card__container--no-image {
  background-color: #f0f7fc;
  border-radius: 8px;
}
.eds-c-card__container.eds-c-card__container--image:hover, .eds-c-card__container.eds-c-card__container--no-image:hover {
  background-color: #c5e0f4;
}
.eds-c-card__container.eds-c-card__container--icon {
  border-radius: 8px;
}
.eds-c-card__container.eds-c-card__container--icon .eds-c-card__inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex: 1 0 100%;
  gap: 16px;
  border: 1px solid #c5e0f4;
  border-radius: 8px;
}
.eds-c-card__container.eds-c-card__container--icon .eds-c-card__icon-container {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #f0f7fc;
  padding: 16px;
  margin-right: 16px;
  color: #0088cc;
}
.eds-c-card__container.eds-c-card__container--icon:hover {
  background-color: #c5e0f4;
}
.eds-c-card__container.eds-c-card__container--icon:hover .eds-c-card__icon-container {
  background-color: #ffffff;
}
.eds-c-card__container.eds-c-card__container--metadata {
  flex-direction: column;
  border-radius: 8px;
}
.eds-c-card__container.eds-c-card__container--metadata .eds-c-card__inner {
  background-color: #f0f7fc;
}
.eds-c-card__container.eds-c-card__container--metadata .eds-c-card__inner--white-bg {
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #c5e0f4;
}
.eds-c-card__container.eds-c-card__container--metadata:hover .eds-c-card__inner {
  background-color: #c5e0f4;
}
.eds-c-card__container.eds-c-card__container--metadata:hover .eds-c-card__metadata::before {
  border-top: 1px solid #ffffff;
}
.eds-c-card__container.eds-c-card__container--highlight {
  border-top: 10px solid #0088cc;
}
.eds-c-card__container.eds-c-card__container--highlight .eds-c-card__inner--white-bg {
  border-radius: unset;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-left: 1px solid #c5e0f4;
  border-right: 1px solid #c5e0f4;
  border-bottom: 1px solid #c5e0f4;
}

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

.eds-c-card__content {
  font-weight: 400;
}

.eds-c-card__label {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.eds-c-card__title {
  font-size: 1.5rem;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 8px;
  max-width: 650px;
}

.eds-c-card__title > a {
  text-decoration: none;
  color: #222222;
}
.eds-c-card__title > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.eds-c-card__title > a:visited {
  color: #222222;
}

.eds-c-card__title--small {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
}

[lang=de] .eds-c-card__title {
  -webkit-hyphens: auto;
  hyphens: auto;
}

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

.eds-c-card__image {
  flex: 0 0 auto;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  margin: 0;
}

.eds-c-card__icon {
  fill: #ffffff;
  width: 32px;
  height: 32px;
}

.eds-c-card__metadata {
  padding: 0 16px 16px 16px;
}
.eds-c-card__metadata::before {
  content: "";
  display: block;
  border-top: 1px solid #c5e0f4;
}
.eds-c-card__metadata .eds-c-card__metadata-list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 16px;
}
.eds-c-card__metadata .eds-c-card__metadata-list-description {
  font-weight: 700;
}
.eds-c-card__metadata .eds-c-card__metadata-list-description:not(:last-child) {
  margin-bottom: 16px;
}

.eds-c-details {
  padding: 8px 0;
  border-style: solid;
  border-color: #0070a8;
  border-width: 1px 0;
  font-size: 1rem;
}

.eds-c-details + .eds-c-details {
  /* for successive details instances, don't double the border */
  border-top: 0;
  margin-top: 0;
}

.eds-c-details__details {
  /* For IE11 (unknown element) */
  display: block;
}

.eds-c-details__summary {
  cursor: pointer;
  /* For IE11 (unknown element) */
  display: block;
  /* remove marker in Firefox */
  list-style-type: none;
}

/* remove marker in other browsers */
.eds-c-details__summary::marker,
.eds-c-details__summary::-webkit-details-marker {
  display: none;
}

/* enhance focus styles */
@supports (text-decoration-color: #000) {
  .eds-c-details__summary:focus {
    outline: none;
  }
  .eds-c-details__summary:focus .eds-c-details__header {
    outline: 4px solid #0088cc;
  }
}
.eds-c-details__header {
  display: inline;
  padding: 4px;
  border-radius: 4px;
}

.eds-c-details__header .u-icon {
  flex-shrink: 0;
  width: 1.4em;
  height: 1.4em;
  color: #0070a8;
}

/* ↓ Complex selector necessary to ensure
nested icons are not rotated */
.eds-c-details > [open] > summary > div > .u-icon {
  transform: rotate(180deg);
}

.eds-c-details__title {
  margin-left: 4px;
  font-family: inherit;
  color: #0070a8;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.eds-c-details__content {
  padding: 0 16px;
  border-left: 8px solid #dadada;
  margin: 16px 0 16px 8px;
}

/* Remove excess margin from (for example) paragraphs */
.eds-c-details__content > :last-child {
  margin-bottom: 0;
}

.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: #ffffff;
  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: #ffffff;
  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: #ffffff;
  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 #ffffff;
  margin-bottom: 32px;
  padding-bottom: 32px;
}

.eds-c-footer__heading {
  color: #ffffff;
  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 #666666;
  border-radius: 4px;
  color: #000000;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  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-header-new {
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  background-color: #ffffff;
  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 #ffffff;
  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: #ffffff;
  border-radius: 8px;
  border: 2px solid #ffffff;
  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: #ffffff;
  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: #666666;
}

.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: #ffffff;
  display: inline;
}

.eds-c-header {
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  background-color: #ffffff;
  padding: 8px 0 0;
  border-bottom: 2px solid #01324b;
  font-size: 1rem;
  line-height: 1.5;
}

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

.eds-c-header__nav {
  border-top: 2px solid #c5e0f4;
  padding-top: 4px;
  position: relative;
}

.eds-c-header__nav-container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 16px;
  padding: 0 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.eds-c-header__nav-container > *:not(:last-child) {
  margin-right: 32px;
}

.eds-c-header__link-container {
  display: flex;
  align-items: center;
  flex: 1 0 auto;
  gap: 8px 16px;
  justify-content: space-between;
}

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

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

.eds-c-header__item {
  color: inherit;
}

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

.eds-c-header__item--inline-links {
  display: none;
  visibility: hidden;
}
.eds-c-header__item--inline-links:first-child + * {
  margin-block-start: 0;
}
@media only screen and (min-width: 768px) {
  .eds-c-header__item--inline-links {
    display: flex;
    gap: 16px;
    visibility: visible;
  }
}

.eds-c-header__item--divider:before {
  content: "";
  position: absolute;
  border-left: 2px solid #c5e0f4;
  height: calc(100% - 16px);
  top: 8px;
  margin-left: -15px;
}

.eds-c-header__brand {
  padding: 16px 8px;
}
.eds-c-header__brand a {
  display: block;
  line-height: 1;
  text-decoration: none;
}
.eds-c-header__brand img {
  height: 1.5rem;
  width: auto;
}

.eds-c-header__link {
  display: inline-block;
  padding: 16px 8px;
  color: inherit;
  font-weight: bold;
  text-decoration-color: transparent;
  position: relative;
  word-break: normal;
  white-space: nowrap;
}
.eds-c-header__link:visited {
  color: inherit;
}
.eds-c-header__link:hover {
  color: inherit;
  text-decoration-color: inherit;
}
.eds-c-header__link:not(.eds-c-header__expander .eds-c-header__link):hover {
  text-decoration-color: transparent;
}
.eds-c-header__link:not(.eds-c-header__expander .eds-c-header__link):hover::after {
  content: "";
  background-color: #025e8d;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.eds-c-header__link--static {
  flex: 0 0 auto;
}

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

.eds-c-header__icon {
  fill: currentColor;
  transform: translate(0, 0);
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1em;
  vertical-align: bottom;
  font-size: 1.5rem;
}
.eds-c-header__icon + * {
  margin-left: 8px;
}

.eds-c-header__expander {
  background-color: #f0f7fc;
}

.eds-c-header__search {
  display: block;
  padding: 24px 0;
}
@media only screen and (min-width: 768px) {
  .eds-c-header__search {
    max-width: 70%;
  }
}

.eds-c-header__search-container {
  position: relative;
}

.eds-c-header__search-label {
  display: inline-block;
  color: inherit;
  font-weight: bold;
  margin-bottom: 8px;
}

.eds-c-header__search-input {
  border: 1px solid black;
  width: 100%;
  padding: 8px 48px 8px 8px;
  background-color: white;
}

.eds-c-header__search-button {
  background-color: transparent;
  border: none;
  color: inherit;
  position: absolute;
  height: 100%;
  padding: 0 8px;
  right: 0;
}

.has-tethered.eds-c-header__expander {
  margin-top: -2px;
  width: 100%;
  top: 100%;
  z-index: 10;
  left: 0;
  border-bottom: 2px solid #01324b;
}

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

.has-tethered.eds-c-header__expander--account {
  transform: translateY(8px);
  width: auto;
  left: auto;
  position: absolute;
  right: 0;
  bottom: auto;
  margin-top: 0;
}

.has-tethered .eds-c-header__heading {
  display: none;
  visibility: hidden;
}
.has-tethered .eds-c-header__heading:first-child + * {
  margin-block-start: 0;
}
.has-tethered .eds-c-header__search {
  margin: auto;
}

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

.eds-c-hint {
  display: block;
  font-weight: 400;
  color: #666666;
  margin-bottom: 0.5rem;
}

.eds-c-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #222222;
  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;
}

.eds-c-modal__trigger, .eds-c-modal__close {
  display: none;
}

.eds-c-modal__content {
  position: relative;
  background-color: #ffffff;
  padding: 24px;
  border: 1px solid #999999;
  border-radius: 8px;
  box-shadow: 0px 308px 86px 0px rgba(1, 50, 75, 0), 0px 197px 79px 0px rgba(1, 50, 75, 0.01), 0px 111px 67px 0px rgba(1, 50, 75, 0.05), 0px 49px 49px 0px rgba(1, 50, 75, 0.09), 0px 12px 27px 0px rgba(1, 50, 75, 0.1);
  z-index: 2;
  width: 80%;
  max-width: 700px;
}
.eds-c-modal__content .eds-c-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Ensure relative positioning for absolute positioning of close button */
}
.eds-c-modal__content .eds-c-modal__header .eds-c-modal__dismiss {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #222222;
  padding: 0;
}
.eds-c-modal__content .eds-c-modal__header .eds-c-modal__title {
  margin-top: 24px;
  font-weight: 700;
}
.eds-c-modal__content .eds-c-modal__body {
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 1rem;
}
.eds-c-modal__content .eds-c-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 768px) {
  .eds-c-modal__footer {
    flex-direction: column;
    align-items: stretch;
  }
}
.js .eds-c-modal {
  display: none;
}
.js .eds-c-modal--open {
  align-items: center;
  background-color: rgba(1, 50, 75, 0.5019607843);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
.js .eds-c-modal__trigger {
  display: inherit;
  display: unset;
}

html.has-eds-c-modal {
  overflow: hidden;
}

.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: #555555;
  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: #ffffff;
    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: #222222;
    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: #666666;
    fill: #666666;
  }
  .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: #222222;
    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: #ffffff;
    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: #222222;
    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: #ffffff;
    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: #555555;
    fill: #555555;
  }
  .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: #ffffff;
  }
  .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: #666666;
    fill: #666666;
  }
  .eds-c-navigation--fixed-width-dropdown .eds-c-navigation__list:hover .eds-c-navigation__list-link:hover {
    background-color: #0070a8;
    color: #ffffff;
  }
  .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: #666666;
    fill: #666666;
  }
}
.eds-c-pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  padding: 32px 0;
  line-height: 1.4;
  gap: 16px 0;
}

@media only screen and (min-width: 480px) {
  .eds-c-pagination {
    padding: 32px 16px;
  }
}
.eds-c-pagination__item {
  margin-right: 8px;
}

.eds-c-pagination__item--prev {
  margin-right: 16px;
}
.eds-c-pagination__item--prev .eds-c-pagination__link {
  padding: 16px 8px;
}

.eds-c-pagination__item--next {
  margin-left: 8px;
}
.eds-c-pagination__item--next .eds-c-pagination__link {
  padding: 16px 8px;
}

.eds-c-pagination__item:last-child {
  margin-right: 0;
}

.eds-c-pagination__link {
  align-items: center;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  margin: 0;
  position: relative;
  padding: 16px 24px;
  text-align: center;
  transition: all 0.2s;
  color: #222222;
}

.eds-c-pagination__link:visited {
  color: #222222;
}

.eds-c-pagination__link--disabled {
  color: #555555;
  border-color: #555555;
  cursor: default;
}

.eds-c-pagination__link--active {
  color: #ffffff;
  background-color: #01324b;
  background-image: none;
  border-radius: 8px;
}

.eds-c-pagination__link--active:hover,
.eds-c-pagination__link--active:focus,
.eds-c-pagination__link--active:visited {
  color: #ffffff;
}

.eds-c-pagination__link-container {
  display: flex;
  align-items: center;
}

.eds-c-pagination__icon {
  fill: #222222;
  width: 1.5rem;
  height: 1.5rem;
}

.eds-c-pagination__icon--disabled {
  fill: #555555;
}

.eds-c-pagination__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;
}

/**
 * Status Message
 * Default branding for component
 */
.eds-c-status-message {
  display: flex;
  gap: 0.5rem;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  position: relative;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #999999;
  line-height: 1.4;
  padding: 16px;
  padding-bottom: 12px;
}
.eds-c-status-message *:last-child {
  margin-bottom: 0;
}

.eds-c-status-message__message a {
  color: inherit;
}

.eds-c-status-message__text {
  padding-right: 12px;
  margin-top: 2px;
}

.eds-c-status-message__text h5 {
  margin-top: 0;
}

.eds-c-status-message__icon {
  fill: currentColor;
  transform: translate(0, 0);
  display: inline-block;
  vertical-align: text-top;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-right: 8px;
}

.eds-c-status-message__icon--top {
  align-self: flex-start;
}

.eds-c-status-message__dismiss-button {
  position: absolute;
  border: none;
  background: none;
  right: 8px;
  cursor: pointer;
}

.eds-c-status-message__dismiss-icon {
  fill: currentColor;
  transform: translate(0, 0);
  display: inline-block;
  vertical-align: text-top;
  width: 24px;
  height: 24px;
  color: #555555;
}

.eds-c-status-message__title {
  font-weight: 700;
  margin-bottom: 8px;
}

.eds-c-status-message--info .eds-c-status-message__icon {
  color: #0070a8;
}

.eds-c-status-message--info {
  border-bottom: 4px solid #0070a8;
}

.eds-c-status-message--error .eds-c-status-message__icon {
  color: #be1818;
}

.eds-c-status-message--error {
  border-bottom: 4px solid #be1818;
}

.eds-c-status-message--success .eds-c-status-message__icon {
  color: #00a69d;
}

.eds-c-status-message--success {
  border-bottom: 4px solid #00a69d;
}

.eds-c-status-message--warning .eds-c-status-message__icon {
  color: #f58220;
}

.eds-c-status-message--warning {
  border-bottom: 4px solid #f58220;
}

/**
* @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-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-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);
  }
}
.c-list-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  border-bottom: 2px solid #999999;
  padding-bottom: 4px;
  font-size: 0.875rem;
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.c-list-description {
  font-family: "Merriweather Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
  width: 100%;
}

.c-list-description__item {
  margin-bottom: 16px;
}
.c-list-description__item:last-child {
  margin-bottom: 0;
}

.c-list-description__term {
  font-weight: 700;
  margin-bottom: 0;
}

.c-list-description__details {
  display: block;
}

.c-list-description__details p {
  display: block;
  margin-bottom: 0;
}
.c-list-description__details p:last-child {
  margin-bottom: 0;
}

.c-list-columned {
  column-gap: 24px;
}
@media only screen and (min-width: 768px) {
  .c-list-columned {
    column-count: 2;
  }
}
@media only screen and (min-width: 876px) {
  .c-list-columned {
    column-count: 3;
  }
}

.c-list-group {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.c-list-group--xs .c-list-group__item {
  padding: 4px 0;
}

.c-list-group--sm .c-list-group__item {
  padding: 8px 0;
}

.c-list-group--md .c-list-group__item {
  padding: 16px 0;
}

.c-list-group--lg .c-list-group__item {
  padding: 24px 0;
}

.c-list-group--bordered .c-list-group__item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.c-list-group--flush .c-list-group__item:first-child {
  padding-top: 0;
}

.c-list-group--flush .c-list-group__item:last-child {
  padding-bottom: 0;
}

/**
 * @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: #ffffff;
  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: #ffffff;
}
.c-skip-link:focus {
  transform: translateY(0%);
}

.eds-c-checkbox__title {
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.5rem;
}

.eds-c-checkbox__link {
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
  color: #000000;
}

.eds-c-checkbox__label {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: -0.5rem;
  z-index: 1;
  position: relative;
}

.eds-c-checkbox__label::before {
  border-radius: 0.125em;
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
  border: 2px solid #666666;
  margin-right: 0.5rem;
}

[invalid] + .eds-c-checkbox__label::before {
  border-color: #be1818;
}

:checked + .eds-c-checkbox__label::before {
  background-color: #01324b;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" stroke-width="3" stroke="white" stroke-linejoin="round" fill="none" stroke-linecap="round" viewBox="0 0 20 20"><path d="M4.5,11 10,15 16,5"></path></svg>');
  border-color: #01324b;
  background-size: 100%;
  background-position: center;
}

:focus + .eds-c-checkbox__label::before {
  box-shadow: 0 0 0 3px #0088cc;
}

.eds-c-error-message {
  color: #be1818;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.eds-c-error-summary {
  font-size: 1rem;
  line-height: 1.4;
  box-sizing: border-box;
  display: flex;
  gap: 0.5rem;
  max-width: 70ch;
  padding: 1rem;
  background-color: #ffffff;
  color: #be1818;
  border: 1px solid #dadada;
  border-radius: 8px;
  border-bottom: 4px solid #be1818;
}

.eds-c-error-summary .eds-form__icon-error svg {
  width: 2rem;
  height: 2rem;
}

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

.eds-c-error-summary__errors a {
  color: inherit;
  text-decoration: underline;
}

.eds-c-error-summary__title {
  color: initial;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.8;
}

.eds-c-error-summary__errors li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.eds-c-fieldset {
  padding: 0;
  border: 0;
}

.eds-c-fieldset__legend {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.eds-c-radio .eds-c-form__disclosure-box {
  margin-bottom: 16px;
}

.eds-c-radio__label {
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-bottom: 4px;
  padding: 0.5rem 0;
  margin: 0;
}

.eds-c-radio__label::before {
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
  border: 2px solid #666666;
  margin-right: 0.5rem;
  display: block;
}

:checked + .eds-c-radio__label::before {
  background: radial-gradient(#01324b 0%, #01324b 40%, #ffffff 40%);
  border-color: #01324b;
}

:focus + .eds-c-radio__label::before {
  box-shadow: 0 0 0 3px #0088cc;
}

.eds-c-select__wrapper {
  position: relative;
}

.eds-c-select__wrapper .eds-c-select__icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.eds-c-select__wrapper .eds-c-select__icon svg {
  height: 1.5rem;
  width: 1.5rem;
}

.eds-c-select {
  cursor: pointer;
  appearance: none;
  padding-right: 1.5rem;
}
.eds-c-select[multiple] optgroup option {
  padding: 0.5rem 1.5rem;
}
.eds-c-select[multiple] optgroup option:checked {
  background-color: #c5e0f4;
}

.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-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 #999999;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

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

.u-shadow {
  border: 1px solid #000000;
  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;
}