:root {
  --keenfinity-blue: #26279d;
  --keenfinity-text: #171717;
  --keenfinity-border: #dddddd;
  --keenfinity-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  --keenfinity-shadow-hover: 0 8px 18px rgba(0, 0, 0, 0.24);
}

/* Header */
.top-bar,
header.hc-header-background-color,
.header.hc-header-background-color,
.vp-title-bar.flex-row.justify-between.items-center.gap-4.vp-title-bar--color-header.hide-for-large {
  background: #ffffff !important;
  border: 0 !important;
}

.top-bar {
  min-height: 100px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.header__navigation--logo img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-height: 100px !important;
  object-fit: contain;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 0;
  box-shadow: none !important;
}

.keenfinity-brand-link a,
.render-links--link a {
  display: flex;
  align-items: center;
}

.keenfinity-brand-link img,
.render-links--link a img {
  width: 100px;
  height: 30px;
  object-fit: contain;
}

/* Dropdown menu */
.dropdown-container {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #FFF;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.dropdown-btn:hover,
.dropdown-btn:focus-visible {
  background: rgba(38, 39, 157, 0.08);
  outline: none;
}

.dropdown-btn__icon,
.dropdown-btn__icon::before,
.dropdown-btn__icon::after {
  display: block;
  width: 24px;
  height: 3px;
  background: currentColor;
  border-radius: 3px;
  content: "";
}

.dropdown-btn__icon {
  position: relative;
}

.dropdown-btn__icon::before,
.dropdown-btn__icon::after {
  position: absolute;
  left: 0;
}

.dropdown-btn__icon::before {
  top: -7px;
}

.dropdown-btn__icon::after {
  top: 7px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 26px);
  right: 0;
  width: 220px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.dropdown-menu[hidden] {
  display: none !important;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--keenfinity-text);
  text-decoration: none;
  border-radius: 4px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(38, 39, 157, 0.08);
  outline: none;
}

.footer__language-picker-container {
  color: var(--keenfinity-text);
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.vp-dropdown--outline .vp-dropdown__button {
  color: var(--keenfinity-text);
  border: 0;
}

.footer__language-picker {
  margin-top: 0.2rem;
}

/* Content */
[data-vp-component="toc"] {
  --foreground-color: var(--keenfinity-blue);
}

.tile,
.vp-article.vp-container.article {
  border-radius: 12px;
  box-shadow: var(--keenfinity-shadow);
  transition: box-shadow 0.2s ease-in-out;
}

.tile:hover {
  box-shadow: var(--keenfinity-shadow-hover);
}

.tile img {
  border: 0;
  outline: 0;
  box-shadow: none;
  filter: drop-shadow(0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.45));
}

img[src="./__assets-3cf5b6a3-f564-40df-b9e6-06e7a763cbe6/image/Screenshot%202025-03-26%20164348.png"] {
  width: min(100%, 1000px);
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

.vp-banner-text.space-overview__hero__header__content__intro--intro.hc-spaceHome-hero-font-color,
.vp-search-result__labels,
.vp-search-page__filter-horizontal,
[data-id="rest-of-the-pages"] {
  display: none !important;
}

.vp-accordion-link-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.vp-accordion-link-group__item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid var(--keenfinity-border) !important;
  border-radius: 10px;
  box-shadow: none !important;
}

.vp-accordion-link-group__item:not(:last-child) {
  margin-bottom: 12px;
}

.vp-accordion-link-group__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  user-select: none;
  background: transparent;
  border: 0;
  outline: 0;
}

.vp-accordion-link-group__item summary::-webkit-details-marker {
  display: none;
}

.vp-accordion-link-group__item summary::after {
  content: ">";
  color: var(--keenfinity-blue);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.vp-accordion-link-group__item[open] summary::after {
  transform: rotate(90deg);
}

vp-scroll-shadow::part(breadcrumbs) a {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Footer */
li:has([i18nkey="footer.poweredBy.label"]) {
  display: none !important;
}

.footer {
  min-height: 50px;
  padding-top: 0.75rem;
  padding-bottom: 0.15rem;
}

.grid.lg\:flex.footer--alignment.hc-footer-font-color.vp-container {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.grid.lg\:flex.footer--alignment.hc-footer-font-color.vp-container > .grid {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.footer__links {
  order: 2;
}

.footer__links a {
  font-size: 12px;
}

.footer__links--separator {
  display: none !important;
}

.footer__attribution-line--copyright.hc-footer-font-color {
  order: 1;
  width: 380px;
  margin-top: 2.5px;
}

.flex.hc-footer-font-color,
.keenfinity-social {
  order: 3;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  width: fit-content;
  gap: 4px;
  padding-right: 30px;
}

.keenfinity-social img {
  display: block;
  width: 30px;
  height: 30px;
}

.hc-footer-font-color {
  padding-right: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar,
  header.hc-header-background-color,
  .header.hc-header-background-color,
  .vp-title-bar--color-header {
    min-height: 64px !important;
    height: auto !important;
    background: #ffffff !important;
  }

  .header__navigation--logo {
    margin-left: -20px !important;
  }

  .header__navigation--logo a {
    max-height: none !important;
    max-width: 90vw;
  }

  .header__navigation--logo img {
    max-height: 100px !important;
    width: auto !important;
  }

  .leading-none.align-self-center.header__navigation--logo,
  .hc-header-font-color {
    display: flex !important;
    align-items: center !important;
  }

  .hc-header-font-color svg,
  .hc-header-font-color button,
  .hc-header-font-color i {
    color: var(--keenfinity-blue) !important;
    fill: var(--keenfinity-blue) !important;
    stroke: var(--keenfinity-blue) !important;
  }

  .dropdown-container {
    top: 15px;
    right: 10px;
    flex-direction: column;
    align-items: flex-end;
  }

  .dropdown-btn {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .dropdown-menu {
    width: min(220px, calc(100vw - 24px));
  }

  .vp-tree-item__header__icon {
    display: none !important;
  }

  div.flex.hc-footer-font-color {
    display: none !important;
  }

  footer[data-vp-component="footer"] {
    display: block;
  }

  footer[data-vp-component="footer"] .grid.lg\:flex.footer--alignment {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  footer[data-vp-component="footer"] .grid.lg\:flex.footer--alignment > .grid {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  footer[data-vp-component="footer"] .footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  footer[data-vp-component="footer"] .footer__logo {
    max-width: 140px;
    margin-bottom: 10px;
  }

  footer[data-vp-component="footer"] ul.footer__attribution-line--copyright {
    padding-left: 0;
    list-style: none;
  }

  .footer__attribution-line--copyright.hc-footer-font-color {
    width: 220px;
  }
}
.header-site-branding {
  transform: scale(1.2);
  transform-origin: left center;
}
.header-site-branding {
  display: flex !important;

  align-items: center;

  gap: 20px;

  width: 100%;

  flex: 1 1 auto;
}

.keenfinity-brand-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  margin-right: 280px; /* leave room for JS menu */
}

.keenfinity-brand-link {
  display: flex;
  align-items: center;
}

.keenfinity-brand-link img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}
.dropdown-container.vp-dropdown.vp-dropdown--outline.variant-outline {

  margin-top: 80px;

}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links,
.footer-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-logo {
  display: none; /* hide if you don't want the logo */
}

.footer-content li,
.footer-links li {
  margin: 0;
}

.footer-content {
  order: 1;
}

.footer-links {
  order: 2;
}