@charset "UTF-8";
/**
 * - schemes should only contain info about colors and not padding or margins
 * - schemes are based on a scheme keyword which triggers associated background/foreground colors
 * - CSS variables should be used
 * - $schemes scss variable is looped though in global/_color.scss to generate styles
 *
 * example:
 *
 *  $schemes: (
 *    primary: map.deep-merge(
 *      $light-template,
 *      (
 *        background: var( --wdg-color-primary ),
 *        link: var( --wdg-color-text ),
 *      )
 *    )
 *  )
 *
 * creates the following compiled css:
 *
 *  .has-primary-background-color {
 *    color: var(--wdg-color-text);
 *    background: var(--wdg-color-primary);
 *    --wdg-color-link: var(--wdg-color-text);
 *    ...
 *  }
 *
 */
:root {
  --wdg-masthead-primary-height: clamp( 4rem, 4rem + 1.5vw, 6rem );
  --wdg-masthead-utility-height: 2.5rem;
  --wdg-masthead-height: calc( var( --wdg-masthead-primary-height, 0px ) + var( --wdg-masthead-utility-height, 0px ) + 1px );
}

.wp-block-template-part--header-program + main:has(.header--immersive) {
  margin-top: calc(var(--wdg-masthead-height) * -1);
}

.masthead-program {
  left: 0;
  margin: 0;
  max-width: none;
  min-height: 0;
  position: absolute;
  top: var(--wp-admin--admin-bar--height, 0px);
  width: 100%;
  z-index: 5;
}
.is-immersive .masthead-program.has-background {
  background-color: transparent !important;
  background-image: none !important;
}
.masthead-program__utility {
  background-color: var(--wdg-color-primary);
  color: var(--wdg-color-white);
  display: flex;
  gap: var(--wdg-gap-xsmall);
  height: var(--wdg-masthead-utility-height);
  justify-content: flex-end;
  padding-inline: var(--wdg-gap-small);
}
.masthead-program__primary {
  align-items: center;
  display: flex;
  gap: var(--wdg-gap-small);
  height: var(--wdg-masthead-primary-height);
  justify-content: space-between;
  padding: var(--wdg-gap-xsmall) var(--wdg-gap-small);
  position: relative;
}
.masthead-program__primary a {
  color: inherit;
}
.masthead-program__home {
  align-self: center;
  display: block;
}
.masthead-program__home svg {
  display: block;
}
.masthead-program__logo {
  flex: none;
  font-size: var(--wdg-font-size-default);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
}
.masthead-program__logo a {
  text-decoration: none;
}
.masthead-program__logo a:hover {
  text-decoration: underline;
}
.masthead-program__line {
  align-items: center;
  border: none;
  color: inherit;
  display: flex;
  flex: 1;
  position: relative;
}
.masthead-program__line::before, .masthead-program__line::after {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  display: block;
  height: 4px;
  width: 4px;
}
.masthead-program__line::before {
  left: -2px;
}
.masthead-program__line::after {
  right: -2px;
}
.masthead-program__line-separator {
  background-color: currentColor;
  color: inherit;
  flex: 1;
  height: 1px;
}
.masthead-program__nav {
  display: flex;
  font-size: var(--wdg-font-size-xsmall);
  gap: var(--wdg-gap-small);
  justify-content: flex-end;
}
.masthead-program__nav-items {
  align-items: center;
  display: flex;
  flex: 1;
  gap: var(--wdg-gap-small);
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.masthead-program__nav-items--depth-1 {
  display: none;
}
.masthead-program__nav-items .masthead-program__nav-items {
  background-color: var(--wdg-color-white);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  color: var(--wdg-color-tonal-black);
  font-size: var(--wdg-font-size-small);
  left: 50%;
  min-width: 200px;
  position: absolute;
  transform: translate(-50%, 10px);
}
.masthead-program__nav-items .masthead-program__nav-items::before {
  border-color: transparent transparent var(--wdg-color-white) transparent;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  content: "";
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -100%);
}
.masthead-program__nav-items .masthead-program__nav-items::after {
  background-color: transparent;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: -10px;
  width: 100%;
}
.masthead-program__nav-items .masthead-program__nav-items .masthead-program__nav-link {
  display: block;
  padding: var(--wdg-gap-2xsmall) var(--wdg-gap-xsmall);
}
.masthead-program__nav-items .masthead-program__nav-items .masthead-program__nav-link:hover, .masthead-program__nav-items .masthead-program__nav-items .masthead-program__nav-link:focus {
  color: var(--wdg-color-tonal-black);
}
.masthead-program__nav-item {
  position: relative;
}
.masthead-program__nav-item:hover > .masthead-program__nav-items, .masthead-program__nav-item:focus-within > .masthead-program__nav-items {
  display: block;
  position: absolute;
}
.masthead-program__action {
  color: inherit;
  padding: var(--wdg-gap-2xsmall);
}
.masthead-program__utility .masthead-program__actions {
  display: flex;
  flex: 1;
  gap: var(--wdg-gap-xsmall);
  justify-content: flex-end;
}
.masthead-program__utility .masthead-program__action:last-child {
  margin-right: calc(var(--wdg-gap-2xsmall) * -1);
}
.masthead-program__account {
  align-items: stretch;
  display: flex;
  position: relative;
}
.masthead-program__account > a {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: var(--wdg-font-size-xsmall);
  gap: var(--wdg-gap-2xsmall);
  text-decoration: none;
}
.masthead-program__account--in > a::after {
  content: "▾";
  font-size: 0.75em;
  text-decoration: none;
}
.masthead-program__account-items {
  --wdg-color-link: var( --wdg-color-tonal-black );
  background-color: var(--wdg-color-white);
  box-shadow: 0 0 2px var(--wdg-color-tonal-black-20);
  color: var(--wdg-color-tonal-black);
  display: flex;
  flex-direction: column;
  font-size: var(--wdg-font-size-xsmall);
  gap: var(--wdg-gap-xsmall);
  list-style: none;
  margin: 0;
  padding: var(--wdg-gap-xsmall);
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 10;
}
.masthead-program__account-items:not(.masthead-program__account:hover .masthead-program__account-items) {
  display: none;
}
.masthead-program--immersive .masthead-program__primary {
  background-color: transparent !important;
}
.masthead-program--immersive .masthead-program__action {
  background-color: transparent;
  border: none;
  color: inherit;
}
@media (max-width: 47.9375em) {
  .masthead-program__utility {
    display: none;
  }
  .masthead-program__nav, .masthead-program__action--search {
    display: none;
  }
  .masthead-program__action-search {
    display: block;
  }
}
@media (min-width: 48em) {
  .masthead-program__action--search {
    display: block;
  }
  .masthead-program__primary .masthead-program__action--menu {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */