:root {
  --sws-motion-distance: 18px;
  --sws-motion-duration: 560ms;
  --sws-motion-ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.sws-cookie-banner,
.sws-cookie-banner *,
.sws-cookie-settings {
  box-sizing: border-box;
}

.sws-cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 20000;
  color: #24324a;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sws-cookie-banner__content {
  width: min(920px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px;
  border: 1px solid rgba(15, 26, 46, .14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(15, 26, 46, .22);
}

.sws-cookie-banner h2 {
  margin: 0 0 7px;
  color: #0f1a2e;
  font: 800 18px/1.25 Inter, system-ui, sans-serif;
}

.sws-cookie-banner p {
  max-width: 650px;
  margin: 0 0 6px;
  color: #475467;
  font: 400 14px/1.55 Inter, system-ui, sans-serif;
}

.sws-cookie-banner a {
  color: #1e5fb3;
  font-size: 13px;
  font-weight: 700;
}

.sws-cookie-banner__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}

.sws-cookie-banner button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #1e5fb3;
  border-radius: 7px;
  background: #fff;
  color: #1e5fb3;
  font: 800 13px/1.2 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.sws-cookie-banner .sws-cookie-banner__accept {
  background: #1e5fb3;
  color: #fff;
}

.sws-cookie-banner button:hover,
.sws-cookie-banner button:focus-visible {
  box-shadow: 0 0 0 3px rgba(30, 95, 179, .18);
}

.sws-cookie-settings {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 720px) {
  .sws-cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .sws-cookie-banner__content {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .sws-cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.sws-global-header,
.sws-global-footer,
.sws-global-header *,
.sws-global-footer * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.sws-global-skip {
  position: absolute !important;
  top: -120px !important;
  left: 0 !important;
  z-index: 10001 !important;
  padding: 12px 18px !important;
  border-radius: 0 0 8px 0 !important;
  background: #0f1a2e !important;
  color: #fff !important;
  font: 700 14px/1.2 Inter, system-ui, -apple-system, Segoe UI, sans-serif !important;
  text-decoration: none !important;
}

.sws-global-skip:focus {
  top: 0 !important;
}

.sws-global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(15, 26, 46, .1);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset, 0 14px 32px rgba(15, 26, 46, .06);
  backdrop-filter: blur(14px);
}

.sws-global-header__inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.sws-global-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: #0f1a2e;
  text-decoration: none;
}

.sws-global-logo img {
  display: block;
  width: 176px;
  max-width: 38vw;
  height: auto;
}

.sws-global-nav {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  width: auto;
  height: auto;
  margin-left: auto;
  padding: 0;
  background: transparent;
}

.sws-global-nav__item {
  position: relative;
}

.sws-global-nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.sws-global-nav__link,
.sws-global-dropdown__button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #24324a;
  font: 800 13px/1.1 var(--font-body);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.sws-global-nav__link:hover,
.sws-global-nav__link:focus-visible,
.sws-global-nav__link[aria-current="page"],
.sws-global-dropdown__button:hover,
.sws-global-dropdown__button:focus-visible,
.sws-global-dropdown__button[aria-current="page"] {
  background: #eef4fd;
  color: #1e5fb3;
  text-decoration: none;
}

.sws-global-dropdown__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.sws-global-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 2;
  min-width: 230px;
  padding: 8px;
  border: 1px solid rgba(15, 26, 46, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(15, 26, 46, .16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.sws-global-dropdown--wide {
  min-width: 260px;
}

.sws-global-nav__item:hover .sws-global-dropdown,
.sws-global-nav__item:focus-within .sws-global-dropdown,
.sws-global-nav__item.is-open .sws-global-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.sws-global-dropdown a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #24324a;
  font: 800 13px/1.2 var(--font-body);
  text-decoration: none;
  white-space: normal;
}

.sws-global-dropdown a:hover,
.sws-global-dropdown a:focus-visible,
.sws-global-dropdown a[aria-current="page"] {
  background: #eef4fd;
  color: #1e5fb3;
  text-decoration: none;
}

.sws-global-nav__cta {
  margin-left: 6px;
  background: #d4a017 !important;
  color: #111827 !important;
  box-shadow: 0 10px 24px rgba(212, 160, 23, .22);
}

.sws-global-menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sws-global-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 26, 46, .12);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.sws-global-menu-button span,
.sws-global-menu-button span::before,
.sws-global-menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #0f1a2e;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.sws-global-menu-button span::before {
  transform: translateY(-7px);
}

.sws-global-menu-button span::after {
  transform: translateY(5px);
}

.sws-global-menu-toggle:checked + .sws-global-menu-button span {
  background: transparent;
}

.sws-global-menu-toggle:checked + .sws-global-menu-button span::before {
  transform: translateY(2px) rotate(45deg);
}

.sws-global-menu-toggle:checked + .sws-global-menu-button span::after {
  transform: translateY(0) rotate(-45deg);
}

.sws-global-footer {
  background: #0f1a2e;
  color: rgba(255, 255, 255, .74);
  padding: 58px 0 28px;
  overflow-x: clip;
}

.sws-global-footer__inner,
.sws-global-footer__bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.sws-global-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.sws-global-footer__brand img {
  width: 178px;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.sws-global-footer__brand,
.sws-global-footer__links {
  min-width: 0;
}

.sws-global-footer p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .66);
  font: 400 14px/1.6 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
}

.sws-global-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font: 900 13px/1.2 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  text-transform: uppercase;
}

.sws-global-footer a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, .72);
  font: 600 14px/1.35 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

.sws-global-footer a:hover,
.sws-global-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sws-global-footer .sws-cookie-settings {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, .72);
  font: 600 14px/1.35 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  text-align: left;
  text-decoration: none;
}

.sws-global-footer .sws-cookie-settings:hover,
.sws-global-footer .sws-cookie-settings:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sws-global-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .54);
  font: 400 12px/1.6 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
}

.sws-global-footer__bottom span:last-child {
  max-width: 740px;
}

a,
button,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(91, 157, 255, .72);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.prod-type-bar,
.placeholder-note {
  display: none !important;
}

.sws-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.sws-reading-progress__bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #d6a645, #5b9dff);
  transform-origin: left center;
  transition: width 120ms linear;
}

body.sws-js [data-reveal] {
  opacity: 0;
  transform: translateY(var(--sws-motion-distance));
  transition:
    opacity var(--sws-motion-duration) var(--sws-motion-ease),
    transform var(--sws-motion-duration) var(--sws-motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

body.sws-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.sws-js .article-card[hidden],
body.sws-js .faq-item.hidden,
body.sws-js .faq-section.hidden {
  display: none !important;
}

body.sws-js a,
body.sws-js button,
body.sws-js summary,
body.sws-js .card,
body.sws-js .article-card,
body.sws-js .silo-card,
body.sws-js .path-card,
body.sws-js .product-card,
body.sws-js .feature-card,
body.sws-js .stat-card {
  transition-property: background-color, border-color, box-shadow, color, opacity, transform;
  transition-duration: 180ms;
  transition-timing-function: ease;
}

body.sws-js a[aria-current="page"] {
  text-decoration-thickness: 2px;
  text-underline-offset: .28em;
}

body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-header {
  border-bottom-color: rgba(232, 239, 229, .12);
  background: rgba(7, 21, 16, .9);
  box-shadow: none;
}

body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-logo img {
  filter: brightness(0) invert(1);
}

body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-nav__link,
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown__button {
  color: rgba(248, 251, 245, .82);
}

body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-nav__link:hover,
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-nav__link:focus-visible,
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-nav__link[aria-current="page"],
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown__button:hover,
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown__button:focus-visible,
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown__button[aria-current="page"] {
  background: rgba(201, 216, 198, .1);
  color: #fff;
}

body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown {
  border-color: rgba(232, 239, 229, .12);
  background: #e8efe5;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .22);
}

body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown a {
  color: #071510;
}

body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown a:hover,
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown a:focus-visible,
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown a[aria-current="page"] {
  background: rgba(23, 61, 44, .1);
  color: #173d2c;
}

body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-menu-button {
  border-color: rgba(232, 239, 229, .18);
  background: rgba(232, 239, 229, .08);
}

body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-menu-button span,
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-menu-button span::before,
body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-menu-button span::after {
  background: #f8fbf5;
}

.sws-filter-status,
.sws-form-status {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.45;
}

.sws-form-status {
  padding: 12px 14px;
  border: 1px solid rgba(91, 157, 255, .26);
  border-radius: 8px;
  background: rgba(91, 157, 255, .08);
}

.sws-anchor-active {
  border-color: currentColor !important;
}

img[src$="/gary-stone-portrait.jpg"],
img[src*="/gary-stone-portrait.jpg"] {
  display: block;
  max-width: 100%;
  height: auto;
  object-position: center bottom;
}

.hero-photo img[src*="/gary-stone-portrait.jpg"],
.gary-photo img[src*="/gary-stone-portrait.jpg"],
.about-portrait-frame img[src*="/gary-stone-portrait.jpg"],
.author-box > img[src*="/gary-stone-portrait.jpg"],
.gary-note > img[src*="/gary-stone-portrait.jpg"],
.gary-mini img[src*="/gary-stone-portrait.jpg"],
.gary-card > img[src*="/gary-stone-portrait.jpg"],
.gary-strip > img[src*="/gary-stone-portrait.jpg"] {
  object-fit: contain;
  background: #fff;
}

.sws-result-stack {
  display: grid;
  gap: 32px;
  margin-top: 34px;
}

.sws-result-block {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(15, 26, 46, .12);
  border-radius: 8px;
  background: #fff;
  color: #24324a;
  box-shadow: 0 16px 40px rgba(15, 26, 46, .08);
}

.section-dark .sws-result-block {
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .18);
}

.sws-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.sws-result-head h3 {
  margin: 6px 0 8px;
  color: #0f1a2e;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.sws-result-head p {
  margin: 0;
  color: #4d5b73;
  font-size: 15px;
  line-height: 1.55;
}

.sws-result-head strong {
  flex: 0 0 auto;
  max-width: 260px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #eef4fd;
  color: #1e5fb3;
  font: 900 17px/1.2 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  text-align: right;
}

.sws-result-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f6edcf;
  color: #7b5b05;
  font: 900 12px/1 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sws-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 8px;
}

.sws-table-wrap .compare-table {
  min-width: 760px;
  margin-top: 0;
}

.sws-proof-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sws-proof-list li {
  position: relative;
  padding-left: 22px;
  color: #35435a;
  font-size: 15px;
  line-height: 1.55;
}

.sws-proof-list li::before {
  position: absolute;
  top: .68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1f8b4c;
  content: "";
}

.sws-honest-frame,
.sws-result-note {
  margin: 0;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.sws-honest-frame {
  padding: 16px 18px;
  border: 1px solid rgba(46, 120, 214, .2);
  background: rgba(46, 120, 214, .08);
  color: #24324a;
}

.sws-result-note {
  padding: 14px 16px;
  border: 1px solid rgba(15, 26, 46, .12);
  background: #f7f9fc;
  color: #4d5b73;
}

.sws-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sws-shot-grid--wide .sws-shot:first-child {
  grid-column: 1 / -1;
}

.sws-shot {
  margin: 0;
}

.sws-shot__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 26, 46, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 26, 46, .08);
  cursor: zoom-in;
}

.sws-shot__trigger img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
}

.sws-shot__trigger:focus-visible {
  outline: 3px solid #5b9dff;
  outline-offset: 3px;
}

.sws-shot__hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 26, 46, .88);
  color: #fff;
  font: 900 12px/1 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.sws-shot__trigger:hover .sws-shot__hint,
.sws-shot__trigger:focus-visible .sws-shot__hint {
  opacity: 1;
  transform: translateY(0);
}

.sws-shot figcaption {
  margin-top: 9px;
  color: #526078;
  font-size: 13px;
  line-height: 1.45;
}

body.sws-lightbox-open {
  overflow: hidden;
}

.sws-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .8);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity 180ms ease;
}

.sws-lightbox.is-open {
  opacity: 1;
}

.sws-lightbox__panel {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(95vw, 1400px);
  max-height: 92vh;
  transform: scale(.96);
  transition: transform 180ms cubic-bezier(.2, .7, .2, 1);
}

.sws-lightbox.is-open .sws-lightbox__panel {
  transform: scale(1);
}

.sws-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(15, 26, 46, .92);
  color: #fff;
  font: 400 28px/1 Arial, sans-serif;
  cursor: pointer;
}

.sws-lightbox__close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.sws-lightbox__frame {
  display: grid;
  place-items: center;
  max-height: calc(92vh - 72px);
}

.sws-lightbox__image {
  display: block;
  max-width: min(95vw, 1400px);
  max-height: calc(92vh - 72px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
  filter: none;
}

.sws-lightbox__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font: 700 14px/1.35 Inter, system-ui, -apple-system, Segoe UI, sans-serif;
}

.sws-lightbox__caption {
  margin: 0;
}

.sws-lightbox__counter {
  flex: 0 0 auto;
  opacity: .82;
}

@media (hover: hover) {
  body.sws-js .btn:hover,
  body.sws-js .button:hover,
  body.sws-js button:hover,
  body.sws-js .card:hover,
  body.sws-js .article-card:hover,
  body.sws-js .silo-card:hover,
  body.sws-js .path-card:hover,
  body.sws-js .product-card:hover,
  body.sws-js .feature-card:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1080px) {
  .sws-global-header__inner {
    min-height: 70px;
  }

  .sws-global-menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .sws-global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 70px);
    overflow: auto;
    padding: 12px 20px 18px;
    border-bottom: 1px solid rgba(15, 26, 46, .1);
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 26, 46, .12);
  }

  .sws-global-menu-toggle:checked ~ .sws-global-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sws-global-nav__item {
    display: grid;
    gap: 8px;
  }

  .sws-global-nav__link,
  .sws-global-dropdown__button {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    background: #f7f9fc;
  }

  .sws-global-dropdown {
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .sws-global-dropdown a {
    min-height: 44px;
    margin-top: 6px;
    padding: 10px 14px 10px 24px;
    background: #fff;
    border: 1px solid rgba(15, 26, 46, .08);
  }

  .sws-global-nav__cta {
    grid-column: 1 / -1;
    justify-content: center !important;
  }

  .sws-global-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sws-global-footer__brand {
    grid-column: 1 / -1;
  }

  .sws-result-head {
    display: grid;
  }

  .sws-result-head strong {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  main .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  main :is(.hero-grid, .proof-grid, .pbyp-grid, .cards-grid, .feature-row, .split, .sim-grid, .gary-grid, .faq-grid) > * {
    min-width: 0;
  }

  main :is(h1, h2, h3, p, li, label, a, button) {
    overflow-wrap: anywhere;
  }

  .sws-global-header__inner,
  .sws-global-footer__inner,
  .sws-global-footer__bottom {
    width: min(100% - 28px, 1160px);
  }

  .sws-global-logo img {
    width: 150px;
  }

  .sws-global-menu-toggle:checked ~ .sws-global-nav,
  .sws-global-footer__inner {
    grid-template-columns: 1fr;
  }

  .sws-global-footer__bottom {
    display: grid;
  }

  .sws-shot-grid {
    grid-template-columns: 1fr;
  }

  .sws-lightbox {
    padding: 14px;
  }

  .sws-lightbox__meta {
    display: grid;
  }
}

@media (max-width: 1080px) {
  body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-nav {
    border-bottom-color: rgba(232, 239, 229, .12);
    background: #071510;
    box-shadow: 0 24px 56px rgba(0, 0, 0, .24);
  }

  body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-nav__link,
  body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown__button {
    background: rgba(232, 239, 229, .08);
    color: rgba(248, 251, 245, .86);
  }

  body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown {
    background: transparent;
    box-shadow: none;
  }

  body[data-page-route="/homepage-private-credit-theme-test/"] .sws-global-dropdown a {
    border-color: rgba(232, 239, 229, .12);
    background: rgba(232, 239, 229, .94);
    color: #071510;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  body.sws-js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .sws-shot__hint,
  .sws-lightbox,
  .sws-lightbox__panel {
    transition: none !important;
    transform: none !important;
  }
}
