body {
  min-height: 100%;
  height: fit-content;
  background: var(--background-Page-Background);
}

* {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
}

/* Apply box-sizing: border-box to all elements because that's in root css from Access CA*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

.app-shell {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

/* When embedded inside the dev shell, the MFE fills available space.
   The dev-shell-active class is set on body by the DevShell component. */
.dev-shell-active .app-shell {
  height: 100%;
  min-height: calc(100vh - var(--dev-shell-header-height) - var(--dev-shell-footer-height));
}

.pw-client-analytics-app {
  /* Pin font-size tokens to px so rem-based CA lib tokens are not affected
     by the host app's html font-size (e.g. 62.5% trick). */
  --font-size-xxs: 10px;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 30px;
  --font-size-3xl: 36px;
  --font-size-4xl: 48px;

  /* Fluent UI color overrides */
  --colorNeutralForeground1: var(--text-primary);
  --colorNeutralForeground1Hover: var(--text-primary);
  --colorNeutralForeground1Pressed: var(--text-primary);
  --colorNeutralForeground1Selected: var(--text-primary);
  --colorNeutralForeground2: var(--text-primary);
  --colorNeutralForeground2Hover: var(--text-primary);
  --colorNeutralForeground2Pressed: var(--text-primary);
  --colorNeutralForeground2Selected: var(--text-primary);
  --ag-cell-text-color: var(--text-primary);
  --ag-header-text-color: var(--text-primary);

  .atlas-ms-common-page {
    flex: 1;
    background-color: var(--background-Page-Background);
    background-image: url('/assets/defaultBackground--vvBQyOQ.png');
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .fui-Listbox.fui-Dropdown__listbox {
    padding: 0;
    box-shadow: 0px 1px 3px 0px rgba(221, 221, 221, 1);
    border: 1px solid var(--border-primary);
    border-radius: 0;
  }

  .fui-Radio__indicator {
    margin: 3px 8px 3px 0px !important;
  }

  .fui-Radio__label {
    padding: 0px !important;
  }

  .fui-Radio:hover .fui-Radio__indicator {
    background-color: var(--background-hover) !important;
  }

  .fui-CardHeader {
    margin-bottom: 12px;
  }

  /*disable drag handle in column header*/
  .ag-column-select-column-drag-handle,
  .ag-column-select-column-group-drag-handle {
    display: none;
  }

  /*
   * CA lib workaround: SegmentedButtonGroup does not expose tooltip style props.
   * Targeting internal CSS Module class names to match the CA Tooltip appearance.
   * Track: request a tooltipClassName or tooltipStyle prop from the CA lib team.
   */
  [class*='SegmentedButtonGroup-module_tooltipContent'] {
    background: var(--text-primary) !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--background-primary) !important;
  }

  [class*='SegmentedButtonGroup-module_tooltipArrow'] {
    border-top-color: var(--text-primary) !important;
  }

  /*
   * CA lib workaround: SegmentedButtonGroup buttonRow uses inline-flex with no
   * flex-wrap, forcing all buttons onto one line (~326px intrinsic width). At
   * narrow viewports this exceeds available space and the last button ("Since
   * Inception") is clipped. Allow wrapping so buttons reflow to a second line.
   * Width constraint is propagated via outerRow (width: 100%) and .row-group
   * (max-width: 100%) in the component/CSS above.
   * Track: request a responsive/wrap prop from the CA lib team.
   */
  @media (max-width: 1000px) {
    [class*='SegmentedButtonGroup-module_buttonRow'] {
      flex-wrap: wrap;
      gap: 4px;
    }
  }
}

/*
 * CA lib workaround: DatePicker calendar popup renders via MUI Popper into document.body,
 * outside .pw-client-analytics-app, so it inherits --font-size-sm: 0.875rem from :root
 * (injected by StylesProvider/tokens.css) which resolves incorrectly when the host app
 * sets html { font-size: 62.5% }.
 *
 * [class*='DatePicker-module_datePickerWrapper__calendarPopup'] — substring match on the
 *   stable CSS Module prefix (the hash suffix may change across builds but the prefix is
 *   part of the component's authored class name and is stable within the CA lib).
 *
 * Portal-rendered so must be top-level (outside .pw-client-analytics-app).
 * Track: request a public BEM/data- attribute on the popup from the CA lib team.
 */
[class*='DatePicker-module_datePickerWrapper__calendarPopup'] {
  --font-size-sm: 14px;
  --font-size-xs: 12px;
  --font-size-base: 16px;
  --base-space-28: 28px;  /* navButton height/width */
  --base-space-36: 36px;  /* gridButton min-height (month/year view) */
  --border-width-1: 1px;  /* calendarHeader border-bottom */
}

/*
 * CA lib workaround: MUI Tooltip (used by ca-component-library's Tooltip) has a
 * hard-coded maxWidth: 300px on the styled bubble div. The help box content needs
 * more space at wide viewports so each definition stays on a single line.
 *
 * Why top-level (outside .pw-client-analytics-app):
 *   MUI portals the bubble to <body>, outside any React root. A nested rule
 *   would compile to ".pw-client-analytics-app [aria-label=...]" (descendant
 *   selector) and never match the portal node.
 *
 * Why aria-label only (no [role='tooltip']):
 *   MUI places role="tooltip" on the outer Popper div; aria-label lands on the
 *   inner styled bubble div (via slotProps.tooltip). They are different elements,
 *   so combining them in one selector matches nothing.
 *
 * Selector is instance-specific: only the portfolio-risk help tooltip is affected.
 */
@media (min-width: 1200px) {
  [aria-label='portfolio-risk-help-tooltip'] {
    max-width: none !important;
  }
}

/*
 * At small screen widths (≤640px) the MUI Tooltip bubble for the
 * portfolio-risk help tooltip must stay within the viewport. Cap its width and
 * ensure it cannot overflow off-screen. Portal-rendered so must be top-level.
 */
@media (max-width: 640px) {
  [aria-label='portfolio-risk-help-tooltip'] {
    max-width: calc(100vw - 24px) !important;
    box-sizing: border-box !important;
  }
}

/*
 * CA lib workaround: MUI Tooltip (used by ca-component-library's Tooltip) has a
 * hard-coded maxWidth: 300px on the styled bubble div. The attribution help box
 * content needs more space at wide viewports so each definition stays on a single line.
 *
 * Same portal-rendering constraints apply here as for portfolio-risk-help-tooltip above.
 */
@media (min-width: 1000px) {
  [aria-label='attribution-help-tooltip'] {
    max-width: none !important;
  }
}
._tableRoot_t56ao_1 {
  background: linear-gradient(90deg, #fff 88%, var(--navy) 12%);
  width: 100%;
  height: 100%;
  display: flex;
  min-width: 0;
}

._asset-name-cell_t56ao_9 {
  position: sticky;
  left: 0;
  z-index: 2;
  color: var(--text-primary);
}

._totalAssetsRow_t56ao_16 {
  background: var(--tableGradient);
  color: var(--text-primary);
  font-weight: 600;
}

.pw-client-analytics-app .leafWithGroupSiblings .ag-row-group-leaf-indent {
  margin-left: 22px !important;
}

.pw-client-analytics-app .ag-row-level-0:not(.ag-row-group) .ag-cell-wrapper {
  margin-left: 0 !important;
  padding-left: 28px !important;
}

._tableText_t56ao_31 {
  color: var(--text-primary);
}

._headerCell_t56ao_35 {
  text-transform: uppercase;
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
  text-align: right;
}

.pw-client-analytics-app .ag-header-cell,
.pw-client-analytics-app .ag-header-group-cell {
  padding: 0 !important;
}

.pw-client-analytics-app .ag-header-cell-label {
  white-space: pre-line !important; /* Allow line breaks in header labels */
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.6px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  max-height: 36px; /* Limit header height to 2 lines */
  line-height: '1.2em';
  font-size: var(--medium-text-helper-label);
}

.pw-client-analytics-app .benchmark-header .ag-header-cell-label {
  justify-content: flex-start;
}

.pw-client-analytics-app .ag-header-group-text,
.pw-client-analytics-app .ag-header-cell-text {
  max-height: 2.4em; /* Limit header text to 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.2;
}

.pw-client-analytics-app .ag-header-cell-label,
.pw-client-analytics-app .ag-header-group-cell-label {
  padding: 9px 6px 3px 6px !important;
}

/* Indentation for ag-Grid group rows by level */
.pw-client-analytics-app .ag-row-group-indent-0 {
  padding-left: 6px;
}
.pw-client-analytics-app .ag-row-group-indent-1 {
  padding-left: 12px;
}

.pw-client-analytics-app .ag-row-group-indent-2 {
  padding-left: 18px;
}

.pw-client-analytics-app .ag-row-group-indent-3 {
  padding-left: 24px;
}
.pw-client-analytics-app .ag-row-group-indent-4 {
  padding-left: 30px;
}
.pw-client-analytics-app .ag-row-group-indent-5 {
  padding-left: 36px;
}

.pw-client-analytics-app .ag-cell-last-left-pinned {
  padding-left: 0px;
}

.pw-client-analytics-app .ag-theme-quartz .ag-group-expanded,
.pw-client-analytics-app .ag-theme-quartz .ag-group-contracted {
  margin: 0 6px 0 0 !important;
}

.pw-client-analytics-app .ag-theme-quartz .ag-cell {
  padding: 0 6px !important;
}

.pw-client-analytics-app .ag-horizontal-left-spacer {
  opacity: 0 !important;
}

.pw-client-analytics-app .ag-floating-bottom {
  overflow-y: hidden !important;
}

.pw-client-analytics-app .ag-column-select-column-label {
  text-align: left !important;
}

.pw-client-analytics-app .ag-theme-quartz {
  --ag-font-family: var(--font-primary);
  --ag-header-background-color: var(--background-primary);
  --ag-wrapper-border: none;
  --ag-header-column-resize-handle-color: transparent;
  --ag-border-color: var(--greyscale-active-grey-eeeeee);
  --ag-pinned-column-border: none;
  --ag-header-height: 40px;
  flex: 1;
  min-width: 0;
}

.pw-client-analytics-app .footer-blue-dark {
  background: var(--shades-sky-100) !important;
  color: var(--text-on-color-bg) !important;
}

.pw-client-analytics-app .footer-blue-medium {
  background: var(--shades-sky-60) !important;
  color: var(--text-primary) !important;
}

.pw-client-analytics-app .footer-blue-light {
  background: var(--shades-sky-20) !important;
  color: var(--text-primary) !important;
}

.pw-client-analytics-app .footer-blue-lightest {
  background: var(--background-positive-4) !important;
  color: var(--text-primary) !important;
}

.pw-client-analytics-app .footer-neutral {
  background: var(--background-primary) !important;
  color: var(--text-primary) !important;
}

.pw-client-analytics-app .footer-red-lightest {
  background: var(--background-negative-4) !important;
  color: var(--text-primary) !important;
}

.pw-client-analytics-app .footer-red-light {
  background: var(--background-negative-3) !important;
  color: var(--text-primary) !important;
}

.pw-client-analytics-app .footer-red-medium {
  background: var(--background-negative-2) !important;
  color: var(--text-primary) !important;
}

.pw-client-analytics-app .footer-red-dark {
  background: var(--background-negative-1) !important;
  color: var(--text-on-color-bg) !important;
}

.pw-client-analytics-app .ag-pinned-left-header .ag-header-cell {
  padding-left: 16px !important;
}

.pw-client-analytics-app .ag-header-cell.ag-column-first {
  padding-left: 6px !important;
  padding-bottom: 4px !important;
}

.pw-client-analytics-app .ag-header-row .ag-header-cell[col-id='te'] {
  border-top: none !important;
}

/* Align sidebar with the first data row by offsetting it past the header.
   Single header row: one --ag-header-height unit.
   Column groups add a second header row, so double the offset. */
.pw-client-analytics-app .ag-side-bar {
  margin-top: var(--ag-header-height, 40px);
}

.pw-client-analytics-app .ag-root-wrapper:has(.ag-header-row-column-group) .ag-side-bar {
  margin-top: calc(var(--ag-header-height, 40px) * 2);
}
.pw-client-analytics-app {
  .container-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--background-primary);
    height: auto;
  }

  .container-main-right {
    display: flex;
    justify-content: flex-end;
    background-color: var(--background-primary);
    height: auto;
    align-items: flex-end;
    flex: 0 0 auto;
    flex-wrap: wrap;
  }

  .container-left {
    display: flex;
    align-items: baseline;
    align-self: stretch;
    flex: 1 1 auto;
    min-width: 0;
  }

  .main-title {
    color: var(--text-primary);
    font-size: var(--medium-text-key-stats);
    font-weight: 600;
    line-height: 28px;
    white-space: nowrap;
  }

  .subtitle {
    color: var(--text-secondary);
    font-size: var(--medium-text-body);
    font-weight: 500;
    line-height: var(--large-text-lineheight-label);
    letter-spacing: 0.6px;
    padding-left: 10px;
  }

  .container-right,
  .container-middle {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
    align-self: stretch;

    .column-group {
      align-self: stretch;
      justify-content: flex-end;
    }
  }

  .container-middle {
    padding-right: 12px;
  }

  .divider {
    align-self: stretch;
    width: 1px;
    background-color: var(--border-primary);
  }

  .column-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 60px !important;
  }

  .row-group {
    display: flex;
  }

  .group-label {
    font-size: var(--medium-text-body);
    color: var(--text-primary);
    font-weight: 500;
  }

  .custom-input {
    width: 93px;
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius-5);
    padding: 8px 14px;
  }

  .custom-input::placeholder {
    color: var(--text-secondary);
    font-size: var(--medium-text-body);
    opacity: 1;
  }

  .custom-input:focus {
    border-color: var(--border-active);
    outline: none;
  }

  .custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 173px;
  }

  .custom-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius-5);
    padding: 8px 36px 8px 16px;
    font-size: var(--medium-text-navigation-subtitle-badge);
    color: var(--text-primary);
    background: var(--background-primary);
    cursor: pointer;
    transition: border-color 0.2s;
    min-height: 44px;
  }

  .custom-select:focus {
    border-color: var(--border-active);
    outline: 2px solid var(--border-active);
    outline-offset: 2px;
  }

  .custom-select:focus-visible {
    outline: 2px solid var(--border-active);
    outline-offset: 2px;
  }

  .chevron-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-secondary);
    font-size: var(--medium-text-body);
  }

  @media (max-width: 1485px) {
    /* Hide the vertical divider whenever the JS-compact layout is active,
     regardless of the CSS media-query boundary. */
    .container-main--js-compact .divider {
      width: 0 !important;
    }

    /* Ensure compact action buttons have breathing room from the card edge,
     and clear the negative margin that the CSS stack layout applies. */
    .container-main--js-compact .container-right {
      align-self: center;
      margin-left: 0;
    }
  }

  @media (max-width: 1290px) {
    /* Default: stack layout for all screens that have many inline filters */
    .container-main-right {
      height: auto;
      align-items: stretch;
      justify-content: flex-start;
    }

    .container-middle {
      padding-left: 0;
      justify-content: flex-start;
    }

    .container-right {
      justify-content: flex-start;
    }

    .container-left {
      margin-bottom: 8px;
    }

    .divider {
      width: 0 !important;
    }

    .dropdown-aqua-border {
      border: 2px solid #00ffff !important;
      background: #fff;
      border-radius: var(--border-radius-default);
    }

    @media (max-width: 1120px) {
      .container-main-right {
        flex-direction: column;
      }
    }
  }

  /*
   * Opt-out modifier for screens that manage their own JS-driven compact layout.
   * Applied by TableHeader when isCompact is true — these screens hide their
   * inline filters at JS breakpoints and therefore do not need the CSS column stack.
   */
  @media (max-width: 1290px) {
    .container-main--js-compact {
      flex-direction: row;
      align-items: baseline;
    }

    .container-main--js-compact .container-main-right {
      justify-content: flex-end;
    }

    .container-main--js-compact .container-left {
      width: auto;
      margin-bottom: 0;
    }
  }

  @media (max-width: 1000px) {
    .container-left {
      flex-direction: column;
      height: auto;
      align-items: stretch;
    }

    .subtitle {
      padding-left: 0;
    }

    .divider {
      margin-right: -12px !important;
    }
  }

  @media (max-width: 640px) {
    .container-right {
      padding-top: 0;
      flex-wrap: wrap;
      gap: 12px;
    }

    .row-group {
      max-width: 100%;
    }

    .main-title {
      font-size: var(--medium-text-lineheight-body);
      font-weight: 600;
      line-height: 28px;
      white-space: normal;
    }

    .container-main--js-compact .container-left {
      justify-content: center;
      text-align: center;
    }

    /* At mobile, drop the compact right section to a full-width row below the title */
    .container-main--js-compact {
      row-gap: 12px;
    }

    .container-main--js-compact .container-main-right {
      flex: 1 0 100%;
      justify-content: flex-start;
    }

    /* Action buttons on their own row, left-aligned, with 12px gap between them */
    .container-main--js-compact .container-right {
      padding-top: 0;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-start;
    }
  }
}
/* source-sans-3-cyrillic-ext-wght-normal */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-cyrillic-ext-wght-normal-DzyfIafT.woff2) format('woff2-variations');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* source-sans-3-cyrillic-wght-normal */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-cyrillic-wght-normal-BMDVbyM7.woff2) format('woff2-variations');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* source-sans-3-greek-ext-wght-normal */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-greek-ext-wght-normal-BWSLJLk6.woff2) format('woff2-variations');
  unicode-range: U+1F00-1FFF;
}

/* source-sans-3-greek-wght-normal */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-greek-wght-normal-C9H9m1vD.woff2) format('woff2-variations');
  unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
}

/* source-sans-3-vietnamese-wght-normal */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-vietnamese-wght-normal-C1uRvKPU.woff2) format('woff2-variations');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* source-sans-3-latin-ext-wght-normal */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-latin-ext-wght-normal-C8iNium2.woff2) format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* source-sans-3-latin-wght-normal */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-latin-wght-normal-BqRLTx4X.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}/* source-sans-3-cyrillic-ext-wght-italic */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: italic;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-cyrillic-ext-wght-italic-Bmy0yRBR.woff2) format('woff2-variations');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* source-sans-3-cyrillic-wght-italic */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: italic;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-cyrillic-wght-italic-BqzjwPnH.woff2) format('woff2-variations');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* source-sans-3-greek-ext-wght-italic */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: italic;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-greek-ext-wght-italic-CsGuNfVR.woff2) format('woff2-variations');
  unicode-range: U+1F00-1FFF;
}

/* source-sans-3-greek-wght-italic */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: italic;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-greek-wght-italic-BfAgiArQ.woff2) format('woff2-variations');
  unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
}

/* source-sans-3-vietnamese-wght-italic */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: italic;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-vietnamese-wght-italic-DnchwVcj.woff2) format('woff2-variations');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* source-sans-3-latin-ext-wght-italic */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: italic;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-latin-ext-wght-italic-B1mMy0tD.woff2) format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* source-sans-3-latin-wght-italic */
@font-face {
  font-family: 'Source Sans 3 Variable';
  font-style: italic;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/source-sans-3-latin-wght-italic-Bg-PIjcQ.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}