/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */ /**
 *
 * Theme loader.
 */
@layer theme {
  .link-goto {
    --color-arrow: var(--color-primary);
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    margin-top: 2rem;
    column-gap: 0.5rem;
    transition: color 0.2s ease-out;
    letter-spacing: -0.32px;
    font-weight: 400;
    line-height: 1.125rem;
  }
  .link-goto--start {
    justify-content: flex-start;
  }
  .link-goto--end {
    justify-content: flex-end;
  }
  .link-goto:link,
  .link-goto:visited {
    -webkit-text-decoration: none;
    text-decoration: none;
    color: var(--color-link-goto, var(--color-black-main));
  }
  .link-goto:active,
  .link-goto:focus,
  .link-goto:hover {
    color: var(--color-arrow);
  }
  .link-goto svg {
    transform: rotate(-90deg) scale(0.8);
  }
  .h1 {
    max-width: 49.375rem;
    margin: 0;
    font-size: clamp(2rem, 0.3057rem + 3.8554vw, 3.125rem);
    font-weight: 700;
    line-height: 1;
  }
  .h2 {
    letter-spacing: -0.72px;
    color: var(--color-black-main);
    font-family: var(--font-secondary);
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.1;
    font-feature-settings: "dlig" on;
  }
  .h2--component {
    font-size: clamp(1.5rem, 0.964rem + 1.429vw, 2.25rem);
  }
}
