/*
 * Theme mode system.
 * Layout metrics stay stable across light and contrast modes.
 */

:root {
  color-scheme: light;
  --segup-theme-transition-duration: 180ms;
  --segup-theme-transition-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --segup-theme-overlay-color: rgba(7, 18, 31, 0.045);
  --segup-logo-default-opacity: 1;
  --segup-logo-contrast-opacity: 0;
  --segup-logo-gap: 0.95rem;
  --segup-logo-wordmark-spacing: 0.05em;
  --segup-logo-box-height: 72px;
  --segup-desktop-surface-1: #f4f7fb;
  --segup-desktop-surface-2: #edf2f8;
  --segup-desktop-card-bg: #f6f8fb;
  --segup-desktop-card-hover: #eef3f8;
  --segup-desktop-submenu-bg: #f3f6fa;
  --segup-desktop-submenu-hover: #e8eef6;
  --segup-desktop-search-bg: #eef3f8;
  --segup-desktop-nav-hover: rgba(255, 255, 255, 0.12);
  --segup-desktop-shadow: 0 14px 24px rgba(8, 26, 45, 0.09);
  --segup-mobile-sheet-bg: #ffffff;
  --segup-mobile-sheet-surface-1: #f4f7fb;
  --segup-mobile-sheet-surface-2: #edf2f8;
  --segup-mobile-sheet-surface-3: #e2eaf3;
  --segup-mobile-sheet-text: #14385f;
  --segup-mobile-sheet-muted: #617387;
  --segup-mobile-sheet-divider: rgba(20, 56, 95, 0.08);
  --segup-mobile-sheet-shadow: 0 -26px 52px rgba(7, 28, 50, 0.2);
  --segup-mobile-sheet-backdrop: rgba(6, 20, 35, 0.42);
  --segup-mobile-topbar-border: rgba(19, 52, 90, 0.08);
  --segup-mobile-contrast-button-color: #0c4f8b;
  --segup-mobile-dock-bg: #0a3f6f;
  --segup-mobile-dock-image: linear-gradient(135deg, #0c4f8b 0%, #0a3f6f 100%);
  --segup-mobile-dock-shadow: 0 -18px 28px rgba(8, 25, 45, 0.16);
  --segup-mobile-dock-idle-text: rgba(255, 255, 255, 0.74);
  --segup-mobile-dock-hover-bg: rgba(255, 255, 255, 0.08);
  --segup-mobile-dock-hover-text: #ffffff;
  --segup-mobile-dock-active-bg: rgba(255, 255, 255, 0.14);
  --segup-mobile-dock-active-text: #ffffff;
  --segup-mobile-dock-active-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  --segup-mobile-dock-overlay-idle-bg: transparent;
  --segup-mobile-dock-overlay-idle-text: rgba(255, 255, 255, 0.74);
  --segup-mobile-dock-overlay-active-bg: rgba(255, 255, 255, 0.18);
  --segup-mobile-dock-overlay-active-text: #ffffff;
  --segup-header-badge-bg: #ffffff;
  --segup-header-badge-border: rgba(19, 52, 90, 0.12);
  --segup-mobile-placeholder-gradient: linear-gradient(135deg, rgba(18, 58, 102, 0.12) 0%, rgba(18, 58, 102, 0.04) 100%);
}

html.segup-high-contrast,
body.segup-high-contrast {
  color-scheme: dark;
  --segup-logo-default-opacity: 0;
  --segup-logo-contrast-opacity: 1;
  --segup-theme-overlay-color: rgba(7, 18, 31, 0.03);
  --segup-desktop-surface-1: #0f1824;
  --segup-desktop-surface-2: #142130;
  --segup-desktop-card-bg: #101a27;
  --segup-desktop-card-hover: #162334;
  --segup-desktop-submenu-bg: #132131;
  --segup-desktop-submenu-hover: #1a2b3f;
  --segup-desktop-search-bg: #172536;
  --segup-desktop-nav-hover: rgba(143, 208, 255, 0.12);
  --segup-desktop-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
  --segup-mobile-sheet-bg: #101820;
  --segup-mobile-sheet-surface-1: #152231;
  --segup-mobile-sheet-surface-2: #1a2a3b;
  --segup-mobile-sheet-surface-3: #23364b;
  --segup-mobile-sheet-text: #f4f7fb;
  --segup-mobile-sheet-muted: #bdd0e2;
  --segup-mobile-sheet-divider: rgba(255, 255, 255, 0.12);
  --segup-mobile-sheet-shadow: 0 -26px 52px rgba(0, 0, 0, 0.42);
  --segup-mobile-sheet-backdrop: rgba(0, 0, 0, 0.54);
  --segup-mobile-topbar-border: rgba(255, 255, 255, 0.12);
  --segup-mobile-contrast-button-color: #ffffff;
  --segup-mobile-dock-bg: #0b1219;
  --segup-mobile-dock-image: linear-gradient(180deg, #0b1219 0%, #0b1219 100%);
  --segup-mobile-dock-shadow: none;
  --segup-mobile-dock-idle-text: #ffffff;
  --segup-mobile-dock-hover-bg: rgba(255, 255, 255, 0.08);
  --segup-mobile-dock-hover-text: #ffffff;
  --segup-mobile-dock-active-bg: rgba(255, 255, 255, 0.12);
  --segup-mobile-dock-active-text: #ffffff;
  --segup-mobile-dock-active-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  --segup-mobile-dock-overlay-idle-bg: transparent;
  --segup-mobile-dock-overlay-idle-text: #ffffff;
  --segup-mobile-dock-overlay-active-bg: rgba(255, 255, 255, 0.12);
  --segup-mobile-dock-overlay-active-text: #ffffff;
  --segup-header-badge-bg: rgba(255, 255, 255, 0.96);
  --segup-header-badge-border: rgba(255, 255, 255, 0.18);
  --segup-mobile-placeholder-gradient: linear-gradient(135deg, rgba(143, 208, 255, 0.12) 0%, rgba(143, 208, 255, 0.04) 100%);
}

@supports (view-transition-name: root) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: var(--segup-theme-transition-duration) !important;
    animation-timing-function: var(--segup-theme-transition-ease) !important;
  }

  ::view-transition-old(root) {
    animation-name: segup-theme-mode-old !important;
  }

  ::view-transition-new(root) {
    animation-name: segup-theme-mode-new !important;
  }
}

@keyframes segup-theme-mode-old {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes segup-theme-mode-new {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body::after {
  background: var(--segup-theme-overlay-color) !important;
  transition: opacity var(--segup-theme-transition-duration) var(--segup-theme-transition-ease) !important;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0ms !important;
  }

  body::after {
    transition: none !important;
  }
}
body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill {
  gap: var(--segup-logo-gap) !important;
}

body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill__logo {
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: min(100%, calc(var(--segup-logo-box-height) * var(--segup-logo-max-ratio, 7.0330)));
  height: var(--segup-logo-box-height);
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
}

body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill__image--header {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  transform: none !important;
  pointer-events: none;
  transition: opacity var(--segup-theme-transition-duration) var(--segup-theme-transition-ease) !important;
}

body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill--has-contrast-image .ssp-logo-pill__image--default {
  position: relative !important;
  z-index: 1;
  opacity: var(--segup-logo-default-opacity) !important;
}

body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill--has-contrast-image .ssp-logo-pill__image--contrast {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 2;
  opacity: var(--segup-logo-contrast-opacity) !important;
}

body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill__wordmark {
  color: var(--ssp-page-heading) !important;
  letter-spacing: var(--segup-logo-wordmark-spacing) !important;
}

@media (min-width: 921px) {
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-gov-strip,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-access-strip,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-topline,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-topline__inner {
    background: var(--ssp-page-surface-strong) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-topline__inner {
    border-top-color: var(--ssp-page-border) !important;
    border-bottom-color: var(--ssp-page-border) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header {
    background: var(--ssp-page-surface) !important;
    border-bottom: 1px solid var(--ssp-page-border) !important;
    box-shadow: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header__inner {
    gap: 1rem 1.6rem !important;
    padding: 0.72rem 0 0.7rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header__content {
    gap: 0.5rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header__meta-bottom {
    gap: 0.45rem 0.85rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-social-links a,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-accessibility__btn {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    padding: 0 0.65rem !important;
    border: 1px solid var(--ssp-page-border) !important;
    border-radius: 6px !important;
    background: var(--segup-desktop-surface-1) !important;
    color: var(--ssp-page-heading) !important;
    box-shadow: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-social-links a:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-social-links a:focus,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-accessibility__btn:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-accessibility__btn:focus {
    background: var(--ssp-page-surface-soft) !important;
    color: var(--ssp-page-link) !important;
    border-color: var(--ssp-page-link) !important;
    transform: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-accessibility__btn.js-font-down,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-accessibility__btn.js-font-up {
    width: 40px !important;
    min-width: 40px !important;
    height: 34px !important;
    padding: 0 !important;
    font-family: var(--font-title);
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap;
    flex: 0 0 auto;
    overflow: hidden;
    text-align: center;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-shortcuts {
    gap: 0.95rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-shortcuts__link {
    padding: 0.18rem 0 !important;
    border: 0 !important;
    border-bottom: 1px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--ssp-page-heading) !important;
    font-size: 0.84rem !important;
    box-shadow: none !important;
    opacity: 0.82;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-shortcuts__link:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-shortcuts__link:focus {
    background: transparent !important;
    border-bottom-color: transparent !important;
    color: var(--ssp-page-heading) !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-badges {
    gap: 0.35rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-badge {
    min-height: 40px !important;
    padding: 0.25rem 0.58rem !important;
    border: 0 !important;
    outline: 0 !important;
    background: var(--segup-header-badge-bg) !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-badge img {
    display: block !important;
    transform: none !important;
    transition: none !important;
    filter: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-badge:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header-badge:focus {
    border: 0 !important;
    outline: 0 !important;
    background: var(--segup-header-badge-bg) !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-nav__shell {
    min-height: 52px !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-nav .menu {
    gap: 0.18rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-nav .menu > li > a {
    padding: 0.92rem 0.78rem 0.8rem !important;
  }

  body.segup-high-contrast .ssp-nav .menu > li.menu-item-has-children:hover > a,
  body.segup-high-contrast .ssp-nav .menu > li.menu-item-has-children:focus-within > a,
  body.segup-high-contrast .ssp-nav li.is-submenu-open.menu-item-has-children > a {
    position: relative !important;
    z-index: 31 !important;
    background: var(--segup-desktop-submenu-bg) !important;
    color: var(--ssp-contrast-text) !important;
    box-shadow: none !important;
    border-radius: 10px 10px 0 0 !important;
  }

  body.segup-high-contrast .ssp-nav .menu > li.menu-item-has-children:hover > a::after,
  body.segup-high-contrast .ssp-nav .menu > li.menu-item-has-children:focus-within > a::after,
  body.segup-high-contrast .ssp-nav li.is-submenu-open.menu-item-has-children > a::after {
    transform: rotate(180deg);
    opacity: 1 !important;
  }

  body.segup-high-contrast .ssp-nav .menu > li.menu-item-has-children:hover > .ssp-submenu-toggle,
  body.segup-high-contrast .ssp-nav .menu > li.menu-item-has-children:focus-within > .ssp-submenu-toggle,
  body.segup-high-contrast .ssp-nav li.is-submenu-open.menu-item-has-children > .ssp-submenu-toggle {
    z-index: 31 !important;
    background: var(--segup-desktop-submenu-bg) !important;
    color: var(--ssp-contrast-text) !important;
    border-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 10px 0 0 !important;
  }

  body.segup-high-contrast .ssp-nav .menu > li > .sub-menu {
    top: calc(100% - 1px) !important;
    padding: 0.36rem 0 0.5rem !important;
    border: 0 !important;
    border-top: 0 !important;
    border-radius: 0 10px 10px 10px !important;
    background: var(--segup-desktop-submenu-bg) !important;
    box-shadow: var(--segup-desktop-shadow) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.segup-high-contrast .ssp-nav .menu > li > .sub-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--segup-desktop-submenu-bg);
  }

  body.segup-high-contrast .ssp-nav .sub-menu a,
  body.segup-high-contrast .ssp-nav--primary .sub-menu a {
    background: transparent !important;
    color: var(--ssp-contrast-text-soft) !important;
    border-radius: 0 !important;
  }

  body.segup-high-contrast .ssp-nav .sub-menu > li + li {
    margin-top: 0 !important;
  }

  body.segup-high-contrast .ssp-nav .sub-menu > li + li > a {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  body.segup-high-contrast .ssp-nav--primary .sub-menu a:hover,
  body.segup-high-contrast .ssp-nav--primary .sub-menu a:focus {
    background: rgba(143, 208, 255, 0.12) !important;
    color: var(--ssp-contrast-text) !important;
  }
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-nav-search--desktop {
    flex: 0 0 282px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-self: center !important;
    margin: 0 !important;
    padding: 0.22rem 0.24rem 0.22rem 0.82rem !important;
    border: 0 !important;
    border-top: 0 !important;
    border-radius: 999px !important;
    background: var(--segup-desktop-search-bg) !important;
    box-shadow: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-nav-search--desktop input {
    min-width: 0 !important;
    min-height: 34px !important;
    padding: 0.45rem 0.12rem !important;
    font-size: 0.88rem !important;
    line-height: 1.2 !important;
    color: var(--ssp-page-heading) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-nav-search--desktop input::placeholder {
    color: var(--ssp-page-text-muted) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-nav-search--desktop button {
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    transform: none !important;
  }
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-story-card,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-feature-story,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-compact-card,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-service-card,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed--page .ssp-news-feed__item,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed__item--search {
    border: 0 !important;
    border-radius: var(--ssp-card-radius-sm) !important;
    background: var(--segup-desktop-card-bg) !important;
    box-shadow: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-story-card--lead,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-lead .segup-carousel {
    border-radius: var(--ssp-card-radius) !important;
    overflow: hidden !important;
    isolation: isolate;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-lead .segup-carousel__slides,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-lead .segup-slide,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-lead .segup-slide__media,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-lead .segup-slide img,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-lead .segup-slide__veil {
    border-radius: inherit !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-story-card:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-story-card:focus-within,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-feature-story:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-feature-story:focus-within,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-service-card:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-service-card:focus,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed--page .ssp-news-feed__item:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed--page .ssp-news-feed__item:focus-within,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed__item--search:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed__item--search:focus-within {
    background: var(--segup-desktop-card-hover) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-story-card__body {
    gap: 0.42rem !important;
    padding: 0.9rem 0.95rem 0.98rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-story-card__label,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed__label {
    font-size: 0.68rem !important;
    letter-spacing: 0.1em !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-story-card__title {
    font-size: 1.08rem !important;
    line-height: 1.28 !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-story-card--lead .ssp-home-story-card__title {
    font-size: clamp(1.5rem, 1.2rem + 0.64vw, 2rem) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-story-card__meta {
    justify-content: flex-start !important;
    gap: 0.7rem 1rem !important;
    padding-top: 0.3rem !important;
    border-top: 1px solid var(--ssp-page-divider) !important;
    font-size: 0.75rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-lead .segup-slide__caption {
    left: 2rem !important;
    bottom: 1.7rem !important;
    gap: 0.7rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-lead .segup-slide__caption p {
    max-width: 36rem !important;
    font-size: 0.96rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .segup-slide__button {
    padding: 0.7rem 1rem !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .segup-carousel__prev,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .segup-carousel__next {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .segup-carousel__indicators {
    bottom: 0.8rem !important;
    gap: 0.45rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .segup-carousel__indicators button {
    width: 0.95rem !important;
    height: 0.18rem !important;
    border-radius: 999px !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .segup-carousel__indicators button.is-active {
    width: 2.3rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top {
    gap: 1.25rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside {
    gap: 1.2rem !important;
    padding-top: 0 !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__main .ssp-section-head,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-section-head {
    margin-bottom: 0.95rem !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__main .ssp-home-panel__more {
    font-size: 0.85rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-home-panel {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-home-panel + .ssp-home-panel {
    padding-top: 0.9rem !important;
    border-top: 0 !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-section-head {
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-section-head h2 {
    font-size: 1.08rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-ranked,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-info-stack,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-quick-stack {
    gap: 0.5rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-ranked__item {
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-ranked__item a,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-info-card,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-quick-stack a {
    padding: 0.85rem 0.95rem !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: var(--segup-desktop-card-bg) !important;
    box-shadow: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-ranked__item a:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-ranked__item a:focus,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-info-card:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-info-card:focus,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-quick-stack a:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-quick-stack a:focus {
    background: var(--segup-desktop-card-hover) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-ranked__item a {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 0.78rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-ranked__number {
    align-items: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    background: var(--segup-desktop-surface-2) !important;
    color: var(--ssp-page-heading) !important;
    font-size: 1rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-ranked__content strong {
    font-size: 0.95rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-quick-stack a i,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-service-card__icon {
    background: var(--segup-desktop-surface-2) !important;
    color: var(--ssp-page-heading) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-home-desktop-top__aside .ssp-quick-stack a i {
    width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: 0.74rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-service-grid {
    gap: 0.9rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-service-card {
    padding: 0.84rem 0.84rem 0.92rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-service-card__title {
    font-size: 0.96rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-service-card__desc {
    font-size: 0.87rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .portal-widget {
    padding: 0.95rem 1rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .portal-widget h3 {
    margin-bottom: 0.45rem !important;
    font-size: 1rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .portal-widget--critical {
    border-top-width: 2px !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed--page .ssp-news-feed__item,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed__item--search {
    padding: 0.98rem 1rem !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed--page .ssp-news-feed__ratio,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed__item--search .ssp-news-feed__ratio {
    border-radius: 10px !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-news-feed__meta {
    font-size: 0.71rem !important;
  }
}


@media (max-width: 760px) {
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill {
    width: auto;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    justify-self: center;
    padding: 0 !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill__logo {
    width: min(100%, calc(32px * var(--segup-logo-max-ratio, 7.0330))) !important;
    height: 32px !important;
    max-width: 100%;
    min-width: 0;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill__image--header {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 32px !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-logo-pill--has-contrast-image .ssp-logo-pill__image--contrast {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 32px !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header__mobile-topbar {
    border-bottom-color: var(--segup-mobile-topbar-border) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-header__mobile-action--contrast {
    background: transparent !important;
    color: var(--segup-mobile-contrast-button-color) !important;
    box-shadow: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__inner {
    background-color: var(--segup-mobile-dock-bg) !important;
    background-image: var(--segup-mobile-dock-image) !important;
    border: 0 !important;
    box-shadow: var(--segup-mobile-dock-shadow) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action {
    color: var(--segup-mobile-dock-idle-text) !important;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action:hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action:focus-visible {
    background: var(--segup-mobile-dock-hover-bg) !important;
    color: var(--segup-mobile-dock-hover-text) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--menu:not(.is-active):not(.is-current):hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--menu:not(.is-active):not(.is-current):focus-visible,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--menu:not(.is-active):not(.is-current):active,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--search:not(.is-active):not(.is-current):hover,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--search:not(.is-active):not(.is-current):focus-visible,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--search:not(.is-active):not(.is-current):active {
    background: transparent !important;
    color: var(--segup-mobile-dock-idle-text) !important;
    box-shadow: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action.is-active,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action.is-current {
    background: var(--segup-mobile-dock-active-bg) !important;
    color: var(--segup-mobile-dock-active-text) !important;
    box-shadow: var(--segup-mobile-dock-active-shadow) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--menu.is-active,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--menu.is-current,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--search.is-active,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock__action--search.is-current {
    background: var(--segup-mobile-dock-overlay-active-bg) !important;
    color: var(--segup-mobile-dock-overlay-active-text) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock.is-overlay-open .ssp-mobile-dock__action[data-panel-target] {
    background: var(--segup-mobile-dock-overlay-idle-bg) !important;
    box-shadow: none !important;
    color: var(--segup-mobile-dock-overlay-idle-text) !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock.is-overlay-open .ssp-mobile-dock__action[data-dock-section="menu"].is-active,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock.is-overlay-open .ssp-mobile-dock__action[data-dock-section="menu"].is-current,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock.is-overlay-open .ssp-mobile-dock__action[data-dock-section="search"].is-active,
  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-mobile-dock.is-overlay-open .ssp-mobile-dock__action[data-dock-section="search"].is-current {
    background: var(--segup-mobile-dock-overlay-active-bg) !important;
    color: var(--segup-mobile-dock-overlay-active-text) !important;
    box-shadow: none !important;
  }

  body:is(.segup-high-contrast, :not(.segup-high-contrast)) .ssp-search-drawer-card__placeholder {
    background: var(--segup-mobile-placeholder-gradient) !important;
  }
}