:root {
  --sls-ink: #081528;
  --sls-ink-soft: #122844;
  --sls-blue: #1268f3;
  --sls-blue-dark: #0849b6;
  --sls-lime: #9ce234;
  --sls-lime-dark: #5f9f12;
  --sls-paper: #ffffff;
  --sls-cloud: #f3f7fb;
  --sls-line: #d9e3ed;
  --sls-muted: #5e6d7f;
  --sls-container: min(1240px, calc(100vw - 48px));
  --sls-radius-sm: 12px;
  --sls-radius-md: 20px;
  --sls-radius-lg: 30px;
  --sls-shadow: 0 22px 70px rgba(8, 21, 40, .14);
  --sls-header-height: 105px;
  --sls-font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.sv3-body,
body.sv4-body,
body.schmidt-public-frame {
  margin: 0;
  min-height: 100vh;
  color: var(--sls-ink);
  font-family: var(--sls-font);
  text-rendering: optimizeLegibility;
}

body.sls-menu-open {
  overflow: hidden;
}

.sv3-bottom-actions-v2 {
  display: none;
}

.sls-skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 10000;
  border-radius: 10px;
  padding: 11px 15px;
  color: #fff;
  background: var(--sls-ink);
  box-shadow: 0 12px 30px rgba(8, 21, 40, .22);
  font-family: var(--sls-font);
  font-size: .85rem;
  font-weight: 850;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 150ms ease-out;
}

.sls-skip-link:focus {
  transform: translateY(0);
}

.sls-container {
  width: var(--sls-container);
  margin-inline: auto;
}

.sls-header *,
.sls-footer * {
  box-sizing: border-box;
}

.sls-header a,
.sls-footer a {
  text-decoration: none;
}

.sls-header button {
  font: inherit;
}

.sls-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 5000;
  color: var(--sls-ink);
}

.sls-utility {
  height: 31px;
  background: var(--sls-ink);
  color: #dce8f5;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .025em;
}

.sls-utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sls-utility p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  line-height: 1;
}

.sls-utility p span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--sls-lime);
  box-shadow: 0 0 0 4px rgba(156, 226, 52, .12);
}

.sls-utility-inner > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sls-utility a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.sls-utility a:hover {
  color: #fff;
}

.sls-nav-shell {
  height: 74px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(217, 227, 237, .92);
  box-shadow: 0 6px 20px rgba(8, 21, 40, .04);
  backdrop-filter: blur(18px);
}

.sls-header.is-scrolled .sls-nav-shell {
  box-shadow: 0 12px 34px rgba(8, 21, 40, .1);
}

.sls-nav-row {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sls-brand {
  width: 176px;
  min-width: 176px;
  display: flex;
  align-items: center;
}

.sls-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.sls-desktop-nav {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.sls-nav-direct,
.sls-nav-group-entry {
  min-height: 42px;
  border-radius: 11px;
}

.sls-nav-direct {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #26364a;
  font-size: .8rem;
  font-weight: 820;
  line-height: 1.2;
  white-space: nowrap;
  transition-property: color, background-color;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.sls-nav-group {
  position: relative;
}

.sls-nav-group-entry {
  display: flex;
  align-items: center;
  color: #26364a;
  transition-property: color, background-color;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.sls-nav-group-entry > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 3px 0 10px;
  color: inherit;
  font-size: .8rem;
  font-weight: 820;
  line-height: 1.2;
  white-space: nowrap;
}

.sls-nav-group-entry > button {
  width: 30px;
  height: 42px;
  border: 0;
  padding: 0;
  display: grid;
  place-items: center;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.sls-nav-group-entry svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease-out;
}

.sls-nav-direct:hover,
.sls-nav-direct.is-active,
.sls-nav-group:hover .sls-nav-group-entry,
.sls-nav-group.is-active .sls-nav-group-entry,
.sls-nav-group.is-open .sls-nav-group-entry {
  color: var(--sls-ink);
  background: #edf4fb;
}

.sls-nav-group.is-open .sls-nav-group-entry svg {
  transform: rotate(180deg);
}

.sls-nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}

.sls-action-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sls-line);
  border-radius: 11px;
  padding: 0 12px;
  background: #fff;
  color: #24364c;
  font-size: .76rem;
  font-weight: 850;
  white-space: nowrap;
  transition-property: transform, background-color, border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.sls-action-link:hover {
  transform: translateY(-1px);
  border-color: #b9c9da;
  background: var(--sls-cloud);
}

.sls-action-price {
  color: #285e0a;
  border-color: #caeaa0;
  background: #f4fbe9;
}

.sls-action-primary {
  color: #fff;
  border-color: var(--sls-blue);
  background: var(--sls-blue);
  box-shadow: 0 9px 20px rgba(18, 104, 243, .2);
}

.sls-action-primary:hover {
  border-color: var(--sls-blue-dark);
  background: var(--sls-blue-dark);
  box-shadow: 0 12px 25px rgba(18, 104, 243, .25);
}

.sls-action-link:active,
.sls-footer-button:active,
.sls-menu-button:active {
  transform: scale(.97);
}

.sls-menu-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--sls-ink);
  cursor: pointer;
}

.sls-menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition-property: transform, opacity;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.sls-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sls-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.sls-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sls-mega {
  position: fixed;
  top: calc(var(--sls-header-height) - 1px);
  left: 50%;
  width: min(980px, calc(100vw - 48px));
  max-height: calc(100vh - var(--sls-header-height) - 24px);
  overflow: auto;
  border: 1px solid #cfdbe7;
  border-radius: 0 0 24px 24px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--sls-shadow);
  transform: translateX(-50%);
}

.sls-mega[hidden] {
  display: none;
}

.sls-mega-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--sls-line);
}

.sls-mega-head > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 13px;
  align-items: baseline;
}

.sls-mega-head span {
  color: var(--sls-blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  font-variant-numeric: tabular-nums;
}

.sls-mega-head h2 {
  margin: 0;
  color: var(--sls-ink);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.sls-mega-head p {
  grid-column: 2;
  max-width: 630px;
  margin: 6px 0 0;
  color: var(--sls-muted);
  font-size: .88rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.sls-mega-head > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 0 14px;
  color: #fff;
  background: var(--sls-ink);
  font-size: .8rem;
  font-weight: 850;
}

.sls-mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 20px;
}

.sls-mega-columns:has(> section:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sls-mega-columns section {
  min-width: 0;
}

.sls-mega-columns h3 {
  margin: 0 0 9px;
  color: #718096;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sls-mega-columns ul,
.sls-footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sls-mega-columns li + li {
  border-top: 1px solid #edf1f5;
}

.sls-mega-columns a {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  padding: 7px 8px;
  color: #26384d;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.25;
  transition-property: color, background-color, padding-left;
  transition-duration: 140ms;
  transition-timing-function: ease-out;
}

.sls-mega-columns a span {
  color: #99a7b5;
  font-size: .72rem;
}

.sls-mega-columns a:hover,
.sls-mega-columns a.is-active {
  padding-left: 12px;
  color: var(--sls-blue-dark);
  background: #f1f6fc;
}

.sls-mobile-layer {
  position: fixed;
  inset: 0;
  z-index: 7000;
}

.sls-mobile-layer[hidden] {
  display: none;
}

.sls-mobile-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3, 12, 26, .7);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.sls-mobile-drawer {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(440px, 94vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px;
  background: #fff;
  box-shadow: -24px 0 70px rgba(0, 0, 0, .28);
}

.sls-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sls-line);
}

.sls-mobile-head > a {
  width: 190px;
  display: block;
}

.sls-mobile-head img {
  width: 100%;
  height: auto;
  display: block;
}

.sls-mobile-head > button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--sls-line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--sls-ink);
  background: var(--sls-cloud);
  cursor: pointer;
}

.sls-mobile-head svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.sls-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sls-mobile-actions a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sls-line);
  border-radius: 11px;
  background: var(--sls-cloud);
  color: #23364c;
  font-size: .82rem;
  font-weight: 850;
  text-align: center;
}

.sls-mobile-actions .is-primary {
  grid-column: 1 / -1;
  color: #fff;
  border-color: var(--sls-blue);
  background: var(--sls-blue);
}

.sls-mobile-nav {
  display: grid;
  gap: 8px;
}

.sls-mobile-home,
.sls-mobile-group {
  border: 1px solid var(--sls-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.sls-mobile-home {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  color: #24364b;
  font-size: .92rem;
  font-weight: 850;
}

.sls-mobile-home.is-active {
  color: var(--sls-blue-dark);
  border-color: #b9d3f5;
  background: #edf5ff;
}

.sls-mobile-group > button {
  width: 100%;
  min-height: 52px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 15px;
  color: #24364b;
  background: #fff;
  font-size: .92rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.sls-mobile-group > button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease-out;
}

.sls-mobile-group.is-open > button {
  color: var(--sls-blue-dark);
  background: #edf5ff;
}

.sls-mobile-group.is-open > button svg {
  transform: rotate(180deg);
}

.sls-mobile-group-panel {
  display: grid;
  gap: 14px;
  padding: 12px;
  border-top: 1px solid var(--sls-line);
  background: #f8fafc;
}

.sls-mobile-group-panel[hidden] {
  display: none;
}

.sls-mobile-overview {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 12px;
  color: #fff !important;
  background: var(--sls-ink);
  font-size: .82rem;
  font-weight: 850;
}

.sls-mobile-subgroup {
  display: grid;
  gap: 3px;
}

.sls-mobile-subgroup h3 {
  margin: 0 0 4px;
  padding: 0 8px;
  color: #718096;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sls-mobile-subgroup a {
  min-height: 40px;
  display: flex;
  align-items: center;
  border-radius: 9px;
  padding: 7px 9px;
  color: #34465a;
  background: #fff;
  font-size: .82rem;
  font-weight: 740;
  line-height: 1.25;
}

.sls-mobile-subgroup a.is-active {
  color: var(--sls-blue-dark);
  background: #eaf3ff;
}

.sls-mobile-contact {
  display: grid;
  gap: 4px;
  margin-top: auto;
  border-radius: 14px;
  padding: 14px;
  color: #fff;
  background: var(--sls-ink);
}

.sls-mobile-contact span {
  color: #aebed0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sls-mobile-contact a {
  min-height: 32px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 850;
}

.sls-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 28px;
  color: #eef5fc;
  background:
    radial-gradient(circle at 84% 12%, rgba(18, 104, 243, .18), transparent 30%),
    linear-gradient(180deg, #0a1a30 0%, #06101f 100%);
}

.sls-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.sls-footer > .sls-container {
  position: relative;
}

.sls-footer-next {
  min-height: 154px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.sls-footer-kicker {
  margin: 0 0 8px;
  color: var(--sls-lime);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sls-footer-next h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.sls-footer-next-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sls-footer-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 0 17px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  font-size: .82rem;
  font-weight: 850;
  white-space: nowrap;
  transition-property: transform, background-color, border-color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.sls-footer-button:hover {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .11);
}

.sls-footer-button.is-primary {
  color: #071526;
  border-color: var(--sls-lime);
  background: var(--sls-lime);
}

.sls-footer-main {
  display: grid;
  grid-template-columns: minmax(250px, .85fr) minmax(0, 2fr);
  gap: clamp(44px, 7vw, 92px);
  padding: 58px 0 50px;
}

.sls-footer-brand > a {
  width: 210px;
  display: block;
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
}

.sls-footer-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.sls-footer-brand > p {
  max-width: 420px;
  margin: 20px 0 25px;
  color: #b9c8d8;
  font-size: .9rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.sls-footer-brand dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.sls-footer-brand dl div {
  display: grid;
  gap: 3px;
}

.sls-footer-brand dt {
  color: #7f93aa;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.sls-footer-brand dd {
  margin: 0;
  color: #f3f7fb;
  font-size: .82rem;
  font-weight: 720;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.sls-footer-brand dd a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.sls-footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.sls-footer-links section {
  min-width: 0;
}

.sls-footer-links h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .04em;
}

.sls-footer-links li + li {
  margin-top: 2px;
}

.sls-footer-links a {
  min-height: 35px;
  display: flex;
  align-items: center;
  color: #aebfd0;
  font-size: .78rem;
  font-weight: 680;
  line-height: 1.3;
  transition: color 140ms ease-out;
}

.sls-footer-links a:hover,
.sls-footer-brand a:hover {
  color: #fff;
}

.sls-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding-top: 24px;
}

.sls-footer-bottom p {
  margin: 0;
  color: #8296ab;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.5;
}

.sls-header :focus-visible,
.sls-footer :focus-visible {
  outline: 3px solid #ffca4b;
  outline-offset: 3px;
}

@media (max-width: 1320px) {
  .sls-brand {
    width: 156px;
    min-width: 156px;
  }

  .sls-nav-row {
    gap: 12px;
  }

  .sls-nav-direct,
  .sls-nav-group-entry > a {
    font-size: .75rem;
  }

  .sls-action-link {
    padding-inline: 10px;
    font-size: .72rem;
  }
}

@media (max-width: 1180px) {
  :root {
    --sls-header-height: 105px;
  }

  .sls-desktop-nav,
  .sls-action-portal {
    display: none;
  }

  .sls-menu-button {
    display: flex;
  }

  .sls-nav-row {
    gap: 16px;
  }

  .sls-brand {
    width: 180px;
    min-width: 180px;
  }

  .sls-footer-main {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .sls-footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }
}

@media (max-width: 760px) {
  :root {
    --sls-container: calc(100vw - 28px);
    --sls-header-height: 68px;
  }

  .sls-utility {
    display: none;
  }

  .sls-nav-shell {
    height: 68px;
  }

  .sls-brand {
    width: min(174px, 48vw);
    min-width: 0;
  }

  .sls-nav-actions {
    gap: 6px;
  }

  .sls-action-price,
  .sls-action-primary {
    display: none;
  }

  .sls-menu-button {
    width: 44px;
    height: 44px;
  }

  .sls-mobile-drawer {
    width: min(430px, 100vw);
    padding: 14px;
  }

  .sls-mobile-head > a {
    width: min(190px, 62vw);
  }

  .sls-footer-next {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 40px 0;
  }

  .sls-footer-next-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sls-footer-button {
    width: 100%;
    white-space: normal;
  }

  .sls-footer-main {
    gap: 38px;
    padding: 46px 0 40px;
  }

  .sls-footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .sls-footer-bottom {
    display: grid;
    gap: 8px;
  }

  body.sv3-body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }

  .sv3-bottom-actions-v2 {
    position: fixed;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    left: 10px;
    z-index: 4800;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 6px;
    background: rgba(7, 17, 31, .94);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
  }

  .sv3-bottom-actions-v2 a {
    min-width: 0;
    min-height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1px;
    padding: 5px 3px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    text-align: center;
    text-decoration: none;
  }

  .sv3-bottom-actions-v2 a.is-primary {
    color: #112208;
    background: var(--sls-lime);
  }

  .sv3-bottom-actions-v2 span,
  .sv3-bottom-actions-v2 small {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sv3-bottom-actions-v2 span {
    font-size: .78rem;
    font-weight: 900;
  }

  .sv3-bottom-actions-v2 small {
    color: rgba(255, 255, 255, .7);
    font-size: .63rem;
    font-weight: 760;
  }

  .sv3-bottom-actions-v2 .is-primary small {
    color: rgba(17, 34, 8, .72);
  }

  .sv3-bottom-actions-v2 a:focus-visible {
    outline: 3px solid #ffca4b;
    outline-offset: 2px;
  }
}

@media (max-width: 420px) {
  .sls-footer-links {
    grid-template-columns: 1fr;
  }

  .sls-footer-links section {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sls-header *,
  .sls-header *::before,
  .sls-header *::after,
  .sls-footer *,
  .sls-footer *::before,
  .sls-footer *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
