body.team-popup-open {
  overflow: hidden;
}

.team-page-layout {
  --team-surface-bg: var(--icon-box-background-color);
  --team-card-bg: var(--box-background-color);
  --team-border-color: var(--box-border-color);
  --team-text-color: var(--body-text-color);
  --team-accent-border: var(--clickable-social-icon-border-color);
  --team-page-bg: var(--body-background-color);
  --team-focus-color: var(--title-color-primary);
}

.team-page-description p {
  margin: 0 0 8px;
}

.team-page-description p:last-child {
  margin-bottom: 0;
}

.team-members-popup-section {
  --team-member-photo-width: clamp(160px, 32%, 160px);
  max-width: 1028px;
  margin-bottom: 64px;
}

.team-members-popup-section .team-members-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (max-width: 1300px) {
  .team-members-popup-section .team-members-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.team-members-popup-section .team-member-card {
  display: grid;
  grid-template-columns: 40% 1fr;
}
.team-members-popup-section .team-member-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.team-members-popup-section .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 166px;
  gap: 16px;
  padding: 16px;
}

.team-members-popup-section .team-member-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-members-popup-section .team-member-name {
  margin: 0;
  color: var(--title-color-primary);
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
}

.team-members-popup-section .open-popup-btn span:first-child,
.team-document-action span:first-child {
  text-transform: uppercase;
}

.team-members-popup-section .team-popup {
  max-width: 1028px;
  width: 100%;
  padding: 48px;
  border-radius: 20px;
  background: var(--team-card-bg);
  color: var(--team-text-color);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.team-members-popup-section .team-popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  overflow-y: auto;
}

.team-members-popup-section .team-popup-overlay.active {
  display: flex;
}

.team-members-popup-section .team-popup-overlay[hidden] {
  display: none !important;
}

.team-members-popup-section .popup-close svg path {
  stroke: var(--title-color-primary);
}

.team-members-popup-section .popup-close {
  position: absolute;
  top: 28px;
  right: 48px;
  left: unset !important;
  z-index: 10;
  margin-left: auto;
  padding: 10px;
  border: none;
  background: none;
  box-shadow: none;
  font-size: 32px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.team-members-popup-section .popup-close:focus,
.team-members-popup-section .popup-close:active {
  outline: none;
  box-shadow: none;
}

.team-members-popup-section .popup-top {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
}

.team-members-popup-section .popup-info,
.team-members-popup-section .popup-description {
  min-width: 0;
}

.team-members-popup-section .popup-image img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.team-members-popup-section .popup-description {
  margin-top: 30px;
}

.team-page-layout .menu-sidebar a:focus-visible,
.team-page-sidebar a:focus-visible,
.team-members-popup-section .open-popup-btn:focus-visible,
.team-members-popup-section .popup-close:focus-visible,
.team-document-preview:focus-visible,
.team-document-action:focus-visible {
  outline: 2px solid var(--team-focus-color);
  outline-offset: 3px;
}

@media (hover: none), (pointer: coarse) {
  .team-members-popup-section .popup-close:focus-visible {
    outline: none;
    outline-offset: 0;
    box-shadow: none;
  }
}
.team-tree-wrap {
  max-width: 1028px;
  margin-top: 0;
  --tree-line-color: #858380;
  --tree-gradient-start: #2f6fb7;
  --tree-gradient-end: #71cecf;
  --tree-gradient: linear-gradient(270deg, var(--tree-gradient-end) 0%, var(--tree-gradient-start) 100%);
  --tree-blue: #1b68b1;
  --tree-leaf-bg: #ffffff;
  --tree-leaf-border: #e8edf1;
  --tree-leaf-text: #1669b2;
  --tree-contrast-light-text: #ffffff;
  --tree-contrast-dark-text: var(--tree-leaf-text);
  --team-tree-mask-color: var(--team-page-bg);
  --team-tree-entry-indent: 27px;
  --team-tree-root-indent: 44px;
  --team-tree-root-line-x: 0px;
  --team-tree-child-indent: 64px;
  --team-tree-child-line-x: 24px;
  --team-tree-nested-offset: 15px;
}

body.theme-default .team-tree-wrap {
  --tree-gradient-start: #2f6fb7;
  --tree-gradient-end: #71cecf;
  --tree-gradient: linear-gradient(270deg, var(--tree-gradient-end) 0%, var(--tree-gradient-start) 100%);
  --tree-blue: #1b68b1;
  --tree-leaf-bg: #ffffff;
  --tree-leaf-border: #e8edf1;
  --tree-leaf-text: #1669b2;
  --tree-contrast-light-text: #ffffff;
  --tree-contrast-dark-text: #1669b2;
}

body.theme-dark .team-tree-wrap {
  --tree-line-color: var(--body-text-color);
  --tree-gradient: var(--btn-primary-bg);
  --tree-blue: var(--accent-box-background);
  --tree-leaf-bg: var(--box-background-color);
  --tree-leaf-border: var(--box-border-color);
  --tree-leaf-text: var(--box-text-color);
  --tree-contrast-light-text: var(--btn-primary-text);
  --tree-contrast-dark-text: var(--box-text-color);
}

body.theme-cream .team-tree-wrap,
body.theme-blue .team-tree-wrap {
  --tree-line-color: var(--body-text-color);
  --tree-gradient: var(--btn-primary-bg);
  --tree-blue: var(--title-primary-color);
  --tree-leaf-bg: var(--box-background-color);
  --tree-leaf-border: var(--box-border-color);
  --tree-leaf-text: var(--box-text-color);
  --tree-contrast-light-text: var(--btn-primary-text);
  --tree-contrast-dark-text: var(--box-text-color);
}

.team-tree-wrap .org-tree-section {
  max-width: 1028px;
}

.team-tree-wrap .org-tree-title {
  margin: 0 0 64px;
  color: #0064aa;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.team-tree-wrap .wtree,
.team-tree-wrap .accordion-children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-tree-wrap .wtree > li {
  margin-left: var(--team-tree-entry-indent);
}

.team-tree-wrap .wtree > li:first-child.open > .accordion-header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(var(--team-tree-entry-indent) * -1);
  width: var(--team-tree-entry-indent);
  height: 1px;
  background: var(--tree-line-color);
  transform: translateY(-50%);
}

.team-tree-wrap .accordion-item {
  position: relative;
  --team-tree-header-height: 56px;
}

.team-tree-wrap .accordion-item + .accordion-item {
  margin-top: 20px;
}

.team-tree-wrap .accordion-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--tree-blue);
  color: #ffffff;
  box-shadow: none;
  text-align: left;
}

.team-tree-wrap button.accordion-header {
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.team-tree-wrap .accordion-header:focus-visible {
  outline: 2px solid rgba(0, 100, 170, 0.22);
  outline-offset: 3px;
}

.team-tree-wrap .accordion-title {
  flex: 1 1 auto;
  min-width: 0;
  color: inherit;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: normal;
  text-transform: uppercase;
}

.team-tree-wrap .accordion-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: inherit;
  will-change: transform;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-tree-wrap .accordion-arrow svg {
  display: block;
  width: 16px;
  height: 10px;
}

.team-tree-wrap .accordion-arrow svg path {
  fill: currentColor;
}

.team-tree-wrap .accordion-header[aria-expanded=true] .accordion-arrow {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .team-tree-wrap .accordion-arrow {
    transition: none;
  }
}
.team-tree-wrap .accordion-item.has-children > .accordion-header {
  background: var(--tree-blue);
  color: var(--tree-contrast-light-text);
}

.team-tree-wrap .accordion-header.tree-contrast-light {
  color: var(--tree-contrast-light-text);
}

.team-tree-wrap .accordion-header.tree-contrast-dark {
  color: var(--tree-contrast-dark-text);
}

.team-tree-wrap .wtree > li > .accordion-header,
.team-tree-wrap .wtree > li > .accordion-children > li > .accordion-header,
.team-tree-wrap .gradient-style > .accordion-header,
.team-tree-wrap .secondary-style > .accordion-header {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding-block: 15px;
  background: var(--tree-gradient);
}

.team-tree-wrap .wtree > li.has-children > .accordion-header {
  background: var(--tree-gradient);
  color: var(--tree-contrast-light-text);
}

.team-tree-wrap .wtree > li,
.team-tree-wrap .wtree > li > .accordion-children > li,
.team-tree-wrap .gradient-style,
.team-tree-wrap .secondary-style {
  --team-tree-header-height: 64px;
}

.team-tree-wrap .wtree > li > .accordion-header::before,
.team-tree-wrap .wtree > li > .accordion-children > li > .accordion-header::before,
.team-tree-wrap .gradient-style > .accordion-header::before,
.team-tree-wrap .secondary-style > .accordion-header::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
}

.team-tree-wrap .wtree > li > .accordion-header .accordion-title,
.team-tree-wrap .wtree > li > .accordion-children > li > .accordion-header .accordion-title {
  grid-column: 2;
  font-size: 21px;
  line-height: 1.2;
  text-align: center;
}

.team-tree-wrap .gradient-style > .accordion-header .accordion-title,
.team-tree-wrap .secondary-style > .accordion-header .accordion-title {
  grid-column: 2;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

.team-tree-wrap .wtree > li > .accordion-header .accordion-arrow,
.team-tree-wrap .wtree > li > .accordion-children > li > .accordion-header .accordion-arrow,
.team-tree-wrap .gradient-style > .accordion-header .accordion-arrow,
.team-tree-wrap .secondary-style > .accordion-header .accordion-arrow {
  grid-column: 3;
  justify-self: center;
}

.team-tree-wrap .accent-style > .accordion-header {
  background: var(--tree-blue);
}

.team-tree-wrap .accordion-item:not(.has-children) > .accordion-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 44px;
  padding: 12px 24px;
  border-color: var(--tree-leaf-border);
  background: var(--tree-leaf-bg);
  color: var(--tree-contrast-dark-text);
}

.team-tree-wrap .accordion-item:not(.has-children) > .accordion-header::before {
  content: none;
  display: none;
}

.team-tree-wrap .accordion-item:not(.has-children) {
  --team-tree-header-height: 44px;
}

.team-tree-wrap .accordion-item:not(.has-children) > .accordion-header .accordion-title {
  text-align: left;
}

.team-tree-wrap .accordion-children {
  --team-tree-group-indent: var(--team-tree-child-indent);
  --team-tree-group-line-x: var(--team-tree-child-line-x);
  --team-tree-group-gap: 20px;
  --team-tree-line-progress: 0;
  position: relative;
  margin-top: calc(var(--team-tree-header-height) / -2);
  padding-top: calc(var(--team-tree-group-gap) + var(--team-tree-header-height) / 2);
  padding-left: var(--team-tree-group-indent);
  box-sizing: border-box;
  overflow: hidden;
  height: 0;
  visibility: hidden;
  pointer-events: none;
  transition: height 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-tree-wrap .accordion-children.is-animating {
  overflow: hidden;
  visibility: visible;
  pointer-events: auto;
}

.team-tree-wrap .accordion-item.open > .accordion-children {
  visibility: visible;
}

.team-tree-wrap .accordion-item.open:not(.is-collapsing) > .accordion-children:not(.is-animating) {
  overflow: hidden;
  pointer-events: auto;
}

.team-tree-wrap .accordion-children .accordion-children {
  margin-left: calc((var(--team-tree-child-line-x) + var(--team-tree-nested-offset)) * -1);
}

.team-tree-wrap .wtree > li > .accordion-children {
  --team-tree-group-indent: var(--team-tree-root-indent);
  --team-tree-group-line-x: var(--team-tree-root-line-x);
  --team-tree-group-gap: 32px;
}

.team-tree-wrap .wtree > li:first-child > .accordion-children {
  margin-left: calc(var(--team-tree-entry-indent) * -1);
}

.team-tree-wrap .accordion-item.has-children > .accordion-children::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--team-tree-group-line-x);
  width: 1px;
  background: var(--tree-line-color);
  opacity: var(--team-tree-line-progress);
  transform: scaleY(var(--team-tree-line-progress));
  transform-origin: top center;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.16s linear;
}

.team-tree-wrap .accordion-item.has-children > .accordion-children > li > .accordion-header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc((var(--team-tree-group-indent) - var(--team-tree-group-line-x)) * -1);
  width: calc(var(--team-tree-group-indent) - var(--team-tree-group-line-x));
  height: 1px;
  background: var(--tree-line-color);
  opacity: var(--team-tree-line-progress);
  transform: translateY(-50%);
  transition: opacity 0.22s linear;
}

.team-tree-wrap .accordion-item.has-children > .accordion-children > li:last-child::after {
  content: "";
  position: absolute;
  top: calc(var(--team-tree-header-height) / 2 - 1px);
  bottom: 0;
  left: calc(var(--team-tree-group-line-x) - var(--team-tree-group-indent) - 1px);
  width: 3px;
  background: var(--team-tree-mask-color);
  z-index: 1;
  opacity: var(--team-tree-line-progress);
  transition: opacity 0.16s linear;
}

.team-tree-wrap .accordion-item.has-children > .accordion-children > li > .accordion-header,
.team-tree-wrap .accordion-item.has-children > .accordion-children > li > .accordion-children {
  position: relative;
  z-index: 2;
}

.team-tree-wrap .wtree > li > .accordion-children > li > .accordion-children,
.team-tree-wrap .gradient-style > .accordion-children,
.team-tree-wrap .secondary-style > .accordion-children {
  --team-tree-group-gap: 32px;
}

.team-tree-wrap .accent-style > .accordion-children {
  --team-tree-group-gap: 20px;
}

.team-document-section {
  display: flex;
  justify-content: flex-start;
  max-width: 1028px;
}

.team-document-card {
  display: grid;
  grid-template-columns: 117px minmax(0, 1fr);
  gap: 11px;
  align-items: end;
  width: min(100%, 498px);
  padding: 16px;
  border: 2px solid var(--team-border-color);
  border-radius: 20px;
  background: var(--team-card-bg);
}

.team-document-preview {
  display: flex;
  width: 117px;
  height: 166px;
  padding: 0;
  align-items: stretch;
  justify-content: center;
  border: 1px solid #097a9f;
  border-radius: 4px;
  background: var(--team-card-bg);
  overflow: hidden;
  text-decoration: none;
}

.team-document-preview__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  background: #ffffff;
}

.team-document-sheet {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  height: 100%;
  padding: 8px;
  border: 1px solid var(--team-border-color);
  border-radius: 2px;
  background: var(--team-card-bg);
}

.team-document-sheet__hero {
  height: 36px;
  border-radius: 3px;
  background: var(--btn-primary-bg);
}

.team-document-sheet__title {
  width: 72%;
  height: 8px;
  border-radius: 999px;
  background: var(--title-color-primary);
}

.team-document-sheet__row {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: var(--team-border-color);
}

.team-document-sheet__row--short {
  width: 58%;
}

.team-document-sheet__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: auto;
}

.team-document-sheet__grid span {
  display: block;
  height: 26px;
  border: 1px solid var(--team-border-color);
  border-radius: 3px;
  background: var(--team-surface-bg);
}

.team-document-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 161px;
  gap: 16px;
}

.team-document-title {
  margin: 0;
  color: var(--title-color-primary);
  font-weight: 700;
  line-height: 22px;
  text-transform: none !important;
}

.team-document-actions {
  display: grid;
  gap: 16px;
}

.team-document-action {
  display: flex;
  align-items: center;
  gap: 10.667px;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 10.667px 16px 10.667px 26.667px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.team-document-action.btn-primary.with-icon,
.team-document-action.btn-secondary.with-icon {
  gap: 10.667px;
  padding: 10.667px 16px 10.667px 26.667px;
}

.team-document-action__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.team-document-action--primary .team-document-action__icon {
  width: 16px;
  height: 16px;
}

.team-document-action--secondary .team-document-action__icon {
  width: 17.455px;
  height: 16px;
}

.team-document-action__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.team-document-action--secondary {
  border-color: var(--team-border-color);
  font-weight: 600;
}

.team-document-action--secondary.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .team-members-popup-section {
    --team-member-photo-width: 250px;
  }
  .team-members-popup-section .team-member-card {
    gap: 14px;
  }
  .team-members-popup-section .card-content {
    gap: 12px;
    padding: 16px 16px 16px 0;
  }
  .team-members-popup-section .open-popup-btn {
    width: fit-content;
    gap: 8px;
    margin-bottom: 16px;
    padding: 10px 14px 10px 18px;
  }
  .team-members-popup-section .open-popup-btn span:first-child {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .team-page-title {
    font-size: 34px;
  }
  .team-members-popup-section .team-members-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .team-tree-wrap {
    --team-tree-entry-indent: 23px;
    --team-tree-root-indent: 36px;
    --team-tree-child-indent: 52px;
    --team-tree-child-line-x: 20px;
    --team-tree-nested-offset: 12px;
  }
  .team-tree-wrap .org-tree-title {
    margin-bottom: 56px;
    font-size: 19px;
  }
  .team-tree-wrap .accordion-item + .accordion-item {
    margin-top: 18px;
  }
  .team-tree-wrap .accordion-header {
    gap: 14px;
    padding: 12px 20px;
  }
  .team-tree-wrap .wtree > li > .accordion-header,
  .team-tree-wrap .wtree > li > .accordion-children > li > .accordion-header,
  .team-tree-wrap .gradient-style > .accordion-header,
  .team-tree-wrap .secondary-style > .accordion-header {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 14px;
    min-height: 60px;
    padding-block: 14px;
  }
  .team-tree-wrap .wtree > li,
  .team-tree-wrap .wtree > li > .accordion-children > li,
  .team-tree-wrap .gradient-style,
  .team-tree-wrap .secondary-style {
    --team-tree-header-height: 60px;
  }
  .team-tree-wrap .wtree > li > .accordion-header::before,
  .team-tree-wrap .wtree > li > .accordion-children > li > .accordion-header::before,
  .team-tree-wrap .gradient-style > .accordion-header::before,
  .team-tree-wrap .secondary-style > .accordion-header::before {
    width: 28px;
    height: 28px;
  }
  .team-tree-wrap .wtree > li > .accordion-header .accordion-title,
  .team-tree-wrap .wtree > li > .accordion-children > li > .accordion-header .accordion-title {
    line-height: 1.25;
    text-align: left;
  }
  .team-tree-wrap .gradient-style > .accordion-header .accordion-title,
  .team-tree-wrap .secondary-style > .accordion-header .accordion-title {
    font-size: 14px;
    line-height: 1.25;
    text-align: left;
  }
  .team-tree-wrap .accordion-item:not(.has-children) > .accordion-header {
    min-height: 42px;
    padding-inline: 20px;
  }
  .team-tree-wrap .accordion-item:not(.has-children) {
    --team-tree-header-height: 42px;
  }
  .team-tree-wrap .accordion-item:not(.has-children) > .accordion-header .accordion-title,
  .team-tree-wrap .accent-style > .accordion-header .accordion-title {
    font-size: 13px;
  }
}
@media (max-width: 1023px) {
  .team-members-popup-section .team-member-card {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    max-width: 300px;
    margin: auto;
  }
  .team-members-popup-section .card-content {
    min-height: 0;
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .team-page-title {
    font-size: 28px;
  }
  .team-members-popup-section {
    margin-bottom: 48px;
  }
  .team-members-popup-section .card-image {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
  }
  .team-members-popup-section .card-image img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
  .team-members-popup-section .team-popup-overlay {
    padding: 16px;
  }
  .team-members-popup-section .team-popup {
    padding: 25px;
    border-radius: 16px;
  }
  .team-members-popup-section .popup-close {
    top: 20px;
    right: 20px;
    padding: 15px;
  }
  .team-members-popup-section .popup-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .team-members-popup-section .popup-image img {
    max-width: 180px;
  }
  .team-members-popup-section .open-popup-btn {
    width: fit-content;
  }
  .team-tree-wrap {
    --team-tree-entry-indent: 10px;
    --team-tree-root-indent: 20px;
    --team-tree-child-indent: 30px;
    --team-tree-child-line-x: 10px;
    --team-tree-nested-offset: 8px;
  }
  .team-tree-wrap .org-tree-title {
    margin-bottom: 48px;
    font-size: 18px;
  }
  .team-tree-wrap .accordion-item {
    display: block;
  }
  .team-tree-wrap .accordion-item > .accordion-children {
    width: auto;
    max-width: none;
  }
  .team-tree-wrap .accordion-header {
    gap: 10px;
    min-height: 50px;
    padding: 10px 14px 10px 10px;
    width: 100%;
    max-width: none;
  }
  .team-tree-wrap .accordion-arrow {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }
  .team-tree-wrap .accordion-arrow svg {
    width: 14px;
    height: 8px;
  }
  .team-tree-wrap .accordion-title {
    line-height: 1.2;
    letter-spacing: 0;
  }
  .team-tree-wrap .wtree > li > .accordion-header,
  .team-tree-wrap .wtree > li > .accordion-children > li > .accordion-header,
  .team-tree-wrap .gradient-style > .accordion-header,
  .team-tree-wrap .secondary-style > .accordion-header {
    grid-template-columns: 16px minmax(0, 1fr) 24px;
    gap: 10px;
    min-height: 56px;
    padding-block: 12px;
  }
  .team-tree-wrap .wtree > li,
  .team-tree-wrap .wtree > li > .accordion-children > li,
  .team-tree-wrap .gradient-style,
  .team-tree-wrap .secondary-style {
    --team-tree-header-height: 56px;
  }
  .team-tree-wrap .wtree > li > .accordion-header::before,
  .team-tree-wrap .wtree > li > .accordion-children > li > .accordion-header::before,
  .team-tree-wrap .gradient-style > .accordion-header::before,
  .team-tree-wrap .secondary-style > .accordion-header::before {
    width: 16px;
    height: 16px;
  }
  .team-tree-wrap .wtree > li > .accordion-header .accordion-title {
    line-height: 1.25;
    text-align: left;
  }
  .team-tree-wrap .wtree > li > .accordion-children .accordion-header .accordion-title,
  .team-tree-wrap .gradient-style > .accordion-header .accordion-title,
  .team-tree-wrap .secondary-style > .accordion-header .accordion-title {
    line-height: 1.25;
    text-align: left;
  }
  .team-tree-wrap .accordion-item:not(.has-children) > .accordion-header {
    min-height: 40px;
    padding: 10px 14px 10px 10px;
  }
  .team-tree-wrap .accordion-item:not(.has-children) {
    --team-tree-header-height: 40px;
  }
  .team-tree-wrap .accordion-item:not(.has-children) > .accordion-header .accordion-title,
  .team-tree-wrap .accent-style > .accordion-header .accordion-title {
    line-height: 1.25;
  }
  .team-tree-wrap .accordion-children {
    --team-tree-group-gap: 16px;
  }
  .team-tree-wrap .wtree > li > .accordion-children,
  .team-tree-wrap .wtree > li > .accordion-children > li:is(.open, .is-collapsing) > .accordion-children,
  .team-tree-wrap .gradient-style:is(.open, .is-collapsing) > .accordion-children,
  .team-tree-wrap .secondary-style:is(.open, .is-collapsing) > .accordion-children {
    --team-tree-group-gap: 24px;
  }
  .team-document-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: 100%;
    padding: 16px;
  }
  .team-document-preview {
    width: 117px;
    height: 166px;
    max-width: 117px;
    margin-inline: auto;
  }
  .team-document-content {
    min-height: 0;
  }
  .team-document-title {
    text-align: center;
  }
  .team-document-action {
    padding: 10.667px 16px 10.667px 26.667px;
    font-size: 14px;
    gap: 10.667px;
  }
}/*# sourceMappingURL=team.css.map */