/*
Breakpoint viewport sizes and media queries.

Breakpoints are defined as a map of (name: minimum width), order from small to large:

    (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)

The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.
*/
/*
Name of the next breakpoint, or null for the last breakpoint.

    >> breakpoint-next(sm)
    md
    >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    md
    >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))
    md
*/
/*
Minimum breakpoint width. Null for the smallest (first) breakpoint.

    >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    576px
*/
/*
Maximum breakpoint width.
The maximum value is reduced by 0.02px to work around the limitations of
`min-` and `max-` prefixes and viewports with fractional widths.
See https://www.w3.org/TR/mediaqueries-4/#mq-min-max
Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.
See https://bugs.webkit.org/show_bug.cgi?id=178261

    >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    767.98px
*/
/*
Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.
Useful for making responsive utilities.

    >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    ""  (Returns a blank string)
    >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
    "-sm"
*/
/*
Media of at most the maximum breakpoint width. No query for the largest breakpoint.
Makes the @content apply to the given breakpoint and narrower.
*/
/*
Media that spans multiple breakpoint widths.
Makes the @content apply between the min and max breakpoints
*/
/*
Media between the breakpoint's minimum and maximum widths.
No minimum for the smallest breakpoint, and no maximum for the largest one.
Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
*/
/**
 * Breakpoint set v2.
 *
 * We can feed this to any of the breakpoint mixins here using the
 * $breakpoints parameter.
 *
 * Intended to replace the $grid-breakpoints variable.
 * Keep it simple, keep the 4 basic breakpoints,
 * add a minimum of intermediate points.
 *
 * Note that we might need a superset of this to make it work with
 * @mixin media-breakpoint-only.
 */
:export {
  size-xs: 0.25rem;
  size-s: 0.5rem;
  size-sm: 0.75rem;
  size-sm-extra: 0.875rem;
  size-m: 1rem;
  size-md: 1.125rem;
  size-l: 1.25rem;
  size-lg: 1.5rem;
  size-xl: 1.75rem;
  size-xxl: 2rem;
  size-2xl: 2.25rem;
  size-2lg: 2.5rem;
  size-3xl: 3rem;
  size-4xl: 3.5rem;
  size-5xl: 4rem;
  size-6xl: 4.5rem;
  size-7xl: 5rem;
  size-7xlg: 6rem;
  size-8xl: 8rem;
  container-width: 1320px;
  body-color: #282b2b;
  z-index-checkbox-radio: -10;
  z-index-background: -1;
  z-index-sticky: 1;
  z-index-infopanel: 1;
  z-index-details-wrapper: 2;
  z-index-banner-controls: 2;
  z-index-modal-controls: 2;
  z-index-sidebar: 3;
  z-index-sidebar-header: 4;
  z-index-globalheader-dropdown: 5;
  z-index-accordion-focused: 10;
  z-index-mainmenu-inactive: 10;
  z-index-mainmenu-inner: 10;
  z-index-likert-table-header: 50;
  z-index-social-action-popover: 51;
  z-index-mainmenu-overlay: 60;
  z-index-mainmenu-container: 70;
  z-index-mainmenu-toggle: 70;
  z-index-mainmenu-container-mobile: 505;
  z-index-mainmenu-toggle-mobile: 520;
  z-index-throbber-overlay: 1261;
  z-index-max-absolute: 2147483647;
  font-weight-light: 100;
  font-weight-normal: 400;
  font-weight-semibold: 500;
  font-weight-nearlybold: 600;
  font-weight-bold: 700;
  font-weight-black: 900;
}

/* TYPOGRAPHY */
/** 20px **/
/** 14px **/
/** 12px **/
:export {
  font-family-main: "Inter", Helvetica, Arial, sans-serif;
  font-family-headers: "Chronicle Display A", "Chronicle Display B", "Times New Roman", Times, serif;
  font-family-icons: "ph";
  fontstack-body: "Inter", Helvetica, Arial, sans-serif;
  font-size-base: 1rem;
  font-size-lg: 1.25rem;
  font-size-sm: 0.875rem;
  font-size-xs: 0.75rem;
  font-weight-normal: normal;
  font-weight-bold: bold;
  font-weight-base: normal;
  line-height-base: 1.5;
  h1-font-size: 2.5rem;
  h2-font-size: 2rem;
  h3-font-size: 1.75rem;
  h4-font-size: 1.5rem;
  h5-font-size: 1.25rem;
  h6-font-size: 1rem;
}

.site-home-link {
  display: inline-flex;
  gap: var(--size-lg);
  line-height: 10px;
  text-decoration: none;
}
.site-home-link--with-subsite-logo {
  flex-direction: row;
  align-items: center;
}
@media (min-width: 768px) {
  .site-home-link--with-subsite-logo {
    gap: var(--size-m);
  }
}
.site-home-link--with-subsite-text {
  flex-direction: row;
  align-items: center;
  gap: var(--size-xxl);
}
@media (min-width: 768px) {
  .site-home-link--with-subsite-text {
    flex-direction: row;
    align-items: center;
    gap: var(--size-xxl);
  }
}

.site-logo--default {
  width: auto;
  height: var(--size-4xl);
}
.site-logo--type-text {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  letter-spacing: -0.5px;
  color: var(--colour-secondary-default);
}
@media (max-width: 767.98px) {
  .site-logo--type-text {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 767.98px) {
  .site-logo--type-text {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    letter-spacing: -0.5px;
    overflow-wrap: break-word;
    line-height: 1.2rem;
    inline-size: var(--size-5xl);
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .site-logo--type-text {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    letter-spacing: -0.5px;
  }
}

.subsite-name--type-text {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  letter-spacing: -0.5px;
  color: var(--colour-neutral-white);
}
@media (max-width: 767.98px) {
  .subsite-name--type-text {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 767.98px) {
  .subsite-name--type-text {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    letter-spacing: -0.5px;
    overflow-wrap: break-word;
    line-height: 1 !important;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .subsite-name--type-text {
    font-family: "Inter", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    letter-spacing: -0.5px;
  }
}

/*# sourceMappingURL=site-logo.css.map */
