/* Base visibility */
.responsive-team-accordion-pro-37052f29 .responsive-team-accordion-desktop-renderer {
    display: block;
}
.responsive-team-accordion-pro-37052f29 .responsive-team-accordion-mobile-renderer {
    display: none;
}

@media (max-width: 1024px) {
    .responsive-team-accordion-pro-37052f29 .responsive-team-accordion-desktop-renderer {
        display: none;
    }
    .responsive-team-accordion-pro-37052f29 .responsive-team-accordion-mobile-renderer {
        display: block;
    }
}

/* ------------------------------------- */
/* DESKTOP STYLES                        */
/* ------------------------------------- */
.team-accordion-shell-37052f29 {
  position: relative;
  width: fit-content;
  max-width: 1050px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 32px;
}
.team-accordion-shell-37052f29::before {
  content: "";
  position: absolute;
  inset: -35px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 25% 30%, rgba(180,180,180,0.55), transparent 35%),
    radial-gradient(circle at 70% 40%, rgba(218,160,232,0.45), transparent 38%),
    radial-gradient(circle at 50% 85%, rgba(30,30,30,0.35), transparent 42%);
  filter: blur(28px);
  opacity: 0.9;
}
.team-accordion-37052f29 {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  height: 360px;
  max-width: 920px;
}
.team-member-37052f29 {
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.45s ease;
  background: #eee;
  cursor: pointer;
}
.team-member-37052f29.inactive {
  flex: 0 0 72px;
  width: 72px;
}
.team-member-37052f29.inactive .member-info-37052f29 {
  display: none;
}
.team-member-37052f29.inactive img {
  filter: grayscale(100%);
  opacity: 0.92;
}
.team-member-37052f29 .member-image-37052f29 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.team-member-37052f29 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: all 0.45s ease;
}
.team-member-37052f29.active {
  flex: 0 0 520px;
  width: 520px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  cursor: default;
}
.team-member-37052f29.active .member-info-37052f29 {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ------------------------------------- */
/* MOBILE/TABLET STYLES                  */
/* ------------------------------------- */
.mobile-team-accordion-37052f29 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--mobile-item-gap, 18px);
  position: relative;
}
.mobile-team-item-37052f29 {
  width: 100%;
  background: var(--mobile-item-bg, transparent);
  border-radius: var(--mobile-item-radius, 18px);
  overflow: hidden;
  box-shadow: var(--mobile-item-shadow, none);
}
.mobile-team-trigger-37052f29 {
  width: 100%;
  height: var(--mobile-image-height, 220px);
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  display: block;
  cursor: pointer;
  border-radius: var(--mobile-image-radius, 18px);
  overflow: hidden;
  position: relative;
}
.mobile-team-image-wrap-37052f29 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.mobile-team-image-wrap-37052f29 img {
  width: 100%;
  height: 100%;
  object-fit: var(--mobile-image-fit, cover);
  object-position: var(--mobile-image-position-x, 50%) var(--mobile-image-position-y, 50%);
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}
.mobile-team-info-37052f29 {
  display: none;
  padding: var(--mobile-info-padding, 24px);
  background: var(--mobile-info-bg, #ffffff);
  border-radius: var(--mobile-info-radius, 0 0 18px 18px);
  box-shadow: var(--mobile-info-shadow, 0 12px 35px rgba(0,0,0,0.10));
}
.mobile-team-item-37052f29.active .mobile-team-info-37052f29 {
  display: block;
  animation: mobileTeamInfoReveal37052f29 var(--mobile-animation-duration, 0.35s) var(--mobile-animation-easing, ease);
}
.mobile-team-name-37052f29 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  color: #2b2b2b;
  margin-bottom: 12px;
}
.mobile-team-role-37052f29 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #444444;
  margin-bottom: 16px;
}
.mobile-team-bio-37052f29 {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: #333333;
  margin-bottom: 0;
}
@keyframes mobileTeamInfoReveal37052f29 {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}