:root {
  --ink: #1a1a1a;
  --muted: #525252;
  --muted2: #717182;
  --page: #fafafa;
  --card: #f8f8f8;
  --line: #e8eaef;
  --hero-bottom: #0d0f14;
  --lime-a: #83ff8f;
  --lime-b: #c5f07f;
  --lime-tag: #83c440;
  --lime: var(--lime-a);
  --lime2: var(--lime-b);
  --radius: 24px;
  --radius-lg: 32px;
  --radius-xl: 32px;
  --max: 1312px;
  --shell: 1408px;
  --pad: clamp(16px, 4vw, 64px);
  --pad-x: var(--pad);
  --c-ink: var(--ink);
  --c-page: var(--page);
  --c-line: var(--line);
  --c-muted: var(--muted);
  --c-muted2: var(--muted2);
  --c-hero-bottom: var(--hero-bottom);
}

.wrapper.wrapper--mega-open {
  overflow: visible;
}
.header--at .header__container {
  padding-left: 0;
  padding-right: 0;
}
.header--at .header__body {
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  padding: 0;
  position: relative;
}
.header--at .header__body:before {
  display: none;
}
.header--at .header__shell {
  position: relative;
  width: 100%;
}
.header--at .header__bar {
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09), 0 0 0 0 rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 8px 0px 16px;
  position: relative;
  z-index: 5;
}
.header--at .header__brand {
  align-items: center;
  color: #1a1a1a;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}
.header--at .header__brand-img {
  display: block;
  height: auto;
  max-height: 32px;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
  width: auto;
}
.header--at .header__burger {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 40px;
  z-index: 50;
}
.header--at .header__burger span {
  background: #1a1a1a;
  border-radius: 1px;
  display: block;
  height: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
  width: 22px;
}
.header--at.header--mobile-open .header__burger {
  gap: 0;
}
.header--at.header--mobile-open .header__burger span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}
.header--at.header--mobile-open .header__burger span:nth-child(2) {
  opacity: 0;
}
.header--at.header--mobile-open .header__burger span:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}
.header--at .header__nav-center {
  align-items: center;
  display: none;
  flex: 1;
  gap: 2px;
  justify-content: center;
  min-width: 0;
}
.header--at .header__dropdown-wrap.is-open .header__nav-dd {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__dropdown-wrap.is-open .header__chev {
  transform: rotate(180deg);
}
.header--at .header__dropdown-wrap.is-open .header__chev path {
  stroke: #1a1a1a;
}
.header--at .header__nav-dd {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: #3f3f46;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
  height: 36px;
  justify-content: center;
  line-height: 20px;
  padding: 0 12px;
  white-space: nowrap;
}
.header--at .header__chev {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.header--at .header__nav-link {
  align-items: center;
  border-radius: 10px;
  color: #3f3f46;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 400;
  height: 36px;
  line-height: 20px;
  padding: 0 12px;
  white-space: nowrap;
}
.header--at .header__nav-link:hover {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__nav-link.is-active {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__nav-dd:hover {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__nav-dd:hover .header__chev path {
  stroke: #1a1a1a;
}
.header--at .header__actions {
  align-items: center;
  display: none;
  flex-shrink: 0;
  gap: 8px;
}
.header--at .header__btn-text {
  align-items: center;
  border-radius: 10px;
  color: #3f3f46;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  line-height: 20px;
  min-width: 70px;
  padding: 0 12px;
}
.header--at .header__btn-text:hover {
  background: #f4f4f5;
  color: #1a1a1a;
}
.header--at .header__btn-outline {
  align-items: center;
  border: 1px solid #d4d4d8;
  border-radius: 10px;
  color: #1a1a1a;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 400;
  height: 38px;
  justify-content: center;
  line-height: 20px;
  padding: 0 16px;
}
.header--at .header__btn-primary {
  align-items: center;
  background: linear-gradient(112.73deg, #83ff8f 6.86%, #c5f07f 95.33%);
  border-radius: 10px;
  color: #1a1a1a;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  line-height: 20px;
  min-width: 120px;
  padding: 0 20px;
}
.header--at .header__btn-dashboard {
  align-items: center;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  color: #1a1a1a;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  height: 38px;
  line-height: 20px;
  padding: 0 16px 0 20px;
}
.header--at .header__user-wrap {
  position: relative;
}
.header--at .header__user-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  height: 40px;
  padding: 4px;
}
.header--at .header__avatar {
  align-items: center;
  background: linear-gradient(135deg, #83ff8f 0%, #c5f07f 100%);
  border-radius: 999px;
  color: #1a1a1a;
  display: flex;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  line-height: 16px;
  width: 32px;
}
.header--at .header__user-dropdown {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 208px;
  z-index: 20;
}
.header--at .header__user-wrap.is-open .header__user-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header--at .header__user-wrap.is-open .header__chev--user {
  transform: rotate(180deg);
}
.header--at .header__user-head {
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 16px;
}
.header--at .header__user-name {
  color: #1a1a1a;
  font-family: var(--second-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.header--at .header__user-email {
  color: #71717a;
  font-family: var(--second-family);
  font-size: 12px;
  line-height: 16px;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header--at .header__user-links {
  padding: 8px;
}
.header--at .header__user-item {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  font-family: var(--second-family);
  font-size: 14px;
  gap: 10px;
  line-height: 20px;
  padding: 8px 12px;
  text-align: left;
  width: 100%;
}
.header--at .header__user-item:hover {
  background: #f4f4f5;
}
.header--at .header__user-item--logout {
  color: #FB2C36;
}
.header--at .header__user-item--logout:hover {
  background: #fef2f2;
  color: #FB2C36;
}
.header--at .header__user-foot {
  border-top: 1px solid #f0f0f0;
  padding: 8px;
}
.header--at .header__user-foot form {
  margin: 0;
}
.header--at .header__mega-layer {
  display: none;
  left: 0;
  margin-top: -10px;
  padding-top: 18px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 8;
}
.header--at.header--mega-open .header__mega-layer {
  display: block;
}
.header--at .header__mega-panel {
  display: none;
  pointer-events: none;
}
.header--at .header__mega-panel.is-visible {
  display: block;
  pointer-events: auto;
}
.header--at .header__mega-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.header--at .header__mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 318px;
}
.header--at .header__mega-col {
  border-right: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.header--at .header__mega-col:last-of-type {
  border-right: 0;
}
.header--at .header__mega-heading {
  color: #1a1a1a;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 16px;
  text-transform: uppercase;
}
.header--at .header__mega-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header--at .header__mega-item {
  align-items: flex-start;
  border-radius: 14px;
  color: inherit;
  display: flex;
  gap: 12px;
  min-height: 58px;
  padding: 12px;
  text-decoration: none;
}
.header--at .header__mega-item:hover {
  background: #fafafa;
}
.header--at .header__mega-item--tall {
  min-height: 78px;
}
.header--at .header__mega-ico {
  align-items: center;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  width: 32px;
}
.header--at .header__mega-ico--g {
  background: #f0fdf4;
}
.header--at .header__mega-ico--p {
  background: #FDF4FF;
}
.header--at .header__mega-ico--b {
  background: #f0f9ff;
}
.header--at .header__mega-ico--y {
  background: #fffbeb;
}
.header--at .header__mega-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.header--at .header__mega-title {
  color: #1a1a1a;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.header--at .header__mega-desc {
  color: #71717a;
  font-family: var(--second-family);
  font-size: 12px;
  line-height: 16px;
}
.header--at .header__mega-more {
  align-items: center;
  color: #22c55e;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 12px;
  gap: 4px;
  line-height: 16px;
  margin-top: 4px;
  padding-left: 12px;
}
.header--at .header__mega-aside {
  background: #1a1a1a;
  border-radius: 16px;
  display: flex;
  grid-column: span 1;
  margin: 24px 24px 24px 0;
  min-height: 270px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}
.header--at .header__mega-aside-glow {
  background: radial-gradient(ellipse 120% 80% at 80% 20%, rgba(131, 255, 143, 0.22) 0%, rgba(66, 128, 72, 0.08) 30%, transparent 60%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.header--at .header__mega-aside-glow--alt {
  background: radial-gradient(circle at 50% 50%, rgba(131, 255, 143, 0.15) 0%, transparent 55%);
}
.header--at .header__mega-aside-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.header--at .header__mega-aside-ico {
  align-items: center;
  background: linear-gradient(135deg, #83ff8f 0%, #c5f07f 100%);
  border-radius: 14px;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.header--at .header__mega-aside-title {
  color: #fff;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 16px;
}
.header--at .header__mega-aside-text {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--second-family);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 12px;
  max-width: 236px;
}
.header--at .header__mega-aside-btn {
  align-items: center;
  background: linear-gradient(112.73deg, #83ff8f 6.86%, #c5f07f 95.33%);
  border-radius: 14px;
  color: #1a1a1a;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  line-height: 20px;
  margin-top: auto;
  padding: 10px 20px;
}
.header--at .header__mega-foot {
  align-items: center;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  min-height: 41px;
  padding: 12px 32px;
}
.header--at .header__mega-trust {
  color: #a1a1aa;
  font-family: var(--second-family);
  font-size: 12px;
  line-height: 16px;
}
.header--at .header__mega-legal {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}
.header--at .header__mega-legal a {
  align-items: center;
  color: #71717a;
  display: inline-flex;
  font-family: var(--second-family);
  font-size: 12px;
  gap: 6px;
  line-height: 16px;
}
.header--at .header__mega-dot {
  background: #83ff8f;
  border-radius: 999px;
  flex-shrink: 0;
  height: 6px;
  width: 6px;
}
.header--at .header__mobile {
  -webkit-overflow-scrolling: touch;
  background: rgba(250, 250, 250, 0.97);
  backdrop-filter: blur(12px);
  inset: 0;
  opacity: 0;
  overflow: auto;
  padding: 86px 8px 0 8px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.28s ease;
  z-index: 4;
}
.header--at.header--mobile-open .header__mobile {
  opacity: 1;
  pointer-events: auto;
}
.header--at .header__mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: calc(100vh - 48px);
  margin: 0 auto;
  max-width: 420px;
}
.header--at .header__mobile-title {
  color: #a1a1aa;
  font-family: var(--second-family);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.header--at .header__mobile-acc {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
}
.header--at .header__mobile-acc-summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  justify-content: space-between;
  list-style: none;
  padding: 16px;
}
.header--at .header__mobile-acc-summary::-webkit-details-marker {
  display: none;
}
.header--at .header__mobile-acc-chev {
  color: #71717a;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.header--at .header__mobile-acc[open] .header__mobile-acc-chev {
  transform: rotate(180deg);
}
.header--at .header__mobile-acc-body {
  border-top: 1px solid #f0f0f0;
  padding: 8px 0 12px;
}
.header--at .header__mobile-acc-block {
  padding: 8px 16px 12px;
}
.header--at .header__mobile-acc-block + .header__mobile-acc-block {
  border-top: 1px solid #f6f6f6;
}
.header--at .header__mobile-acc-label {
  color: #a1a1aa;
  font-family: var(--second-family);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.header--at .header__mobile-acc-link {
  border-radius: 10px;
  color: #3f3f46;
  display: block;
  font-family: var(--second-family);
  font-size: 15px;
  line-height: 1.35;
  margin: 2px 0;
  padding: 10px 10px;
  text-decoration: none;
}
.header--at .header__mobile-acc-link:active {
  background: #f4f4f5;
}
.header--at .header__mobile-acc-link.is-active {
  background: rgba(131, 255, 143, 0.15);
  color: #166534;
  font-weight: 600;
}
.header--at .header__mobile-acc-user {
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
  padding: 4px 16px 14px;
}
.header--at .header__mobile-acc-user-name {
  color: #1a1a1a;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
}
.header--at .header__mobile-acc-user-mail {
  color: #71717a;
  font-family: var(--second-family);
  font-size: 13px;
  word-break: break-all;
}
.header--at .header__mobile-list {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.header--at .header__mobile-row {
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
  font-family: var(--second-family);
  font-size: 16px;
  padding: 16px 18px;
  text-decoration: none;
}
.header--at .header__mobile-row:last-child {
  border-bottom: 0;
}
.header--at .header__mobile-row.is-active {
  background: rgba(131, 255, 143, 0.12);
  box-shadow: inset 3px 0 0 #83ff8f;
  font-weight: 600;
}
.header--at .header__mobile-meta {
  align-items: center;
  background: rgba(250, 250, 250, 0.96);
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  justify-content: center;
  left: 50%;
  padding: 10px 14px;
  position: sticky;
  transform: translateX(-50%);
  width: fit-content;
  z-index: 3;
}
.header--at .header__mobile-meta a {
  color: #71717a;
  font-family: var(--second-family);
  font-size: 12px;
  text-decoration: none;
}
.header--at .header__mobile-meta-dot {
  background: #d4d4d8;
  border-radius: 999px;
  height: 3px;
  width: 3px;
}
.header--at .header__mobile-cta {
  align-items: center;
  background: linear-gradient(112.73deg, #83ff8f 6.86%, #c5f07f 95.33%);
  border-radius: 14px;
  color: #1a1a1a;
  display: flex;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  margin-top: 4px;
  min-height: 52px;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
}
.header--at .header__mobile-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 8px;
}
.header--at .header__mobile-btn {
  align-items: center;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  font-family: var(--second-family);
  font-size: 15px;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}
.header--at .header__mobile-btn--ghost {
  border: 1px solid #d4d4d8;
  color: #3f3f46;
}
.header--at .header__mobile-btn--outline {
  border: 1px solid #d4d4d8;
  color: #1a1a1a;
}
.header--at .header__mobile-btn--full {
  font-family: var(--font-family);
  font-weight: 600;
}
.header--at .header__mobile-logout {
  margin: 0;
  width: 100%;
}
@media (min-width: 62em) {
  .header--at .header__burger {
    display: none !important;
  }
  .header--at .header__nav-center {
    display: flex;
  }
  .header--at .header__actions {
    display: flex;
  }
  .header--at .header__mobile {
    display: none !important;
  }
}
@media (max-width: 61.99875em) {
  .header--at .header__burger {
    display: flex;
  }
  .header--at .header__nav-center {
    display: none !important;
  }
  .header--at .header__actions {
    display: none !important;
  }
  .header--at .header__mega-layer {
    display: none !important;
  }
  .header--at .header__brand-img {
    max-height: 28px;
    max-width: min(160px, 46vw);
  }
  .header--at.header--mega-open .header__mega-layer {
    display: none !important;
  }
}
@media (max-width: 74.99875em) {
  .header--at .header__mega-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header--at .header__mega-aside {
    grid-column: span 2;
    margin: 0 16px 16px 16px;
  }
  .header--at .header__mega-col {
    border-bottom: 1px solid #f0f0f0;
    border-right: 0;
  }
}
@media (max-width: 47.99875em) {
  .header--at .header__mega-grid {
    grid-template-columns: 1fr;
  }
  .header--at .header__mega-aside {
    grid-column: span 1;
  }
}

/* Кастомные стили фронта  */
.hero__btn-secondary {
  background-color: #fff;
}

/* Адаптив hero для мобильной версии — кнопки одна под одну */
@media (max-width: 47.99875em) {
  .hero__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn_block {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    width: 100%;
  }

  .hero-btn_block .btn,
  .hero-btn_block .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: none;
  }
}

.home_our_team {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    width: 100%;
}

a.person_card {
    text-decoration: none;
    color: inherit;
}

.person_card {
    position: relative;
    width: 297px;
    height: 364px;
    padding: 32px 23px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 42px;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%),
        url("/dist/assets/img/1771338975075.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.4s ease;
}

/* лёгкий премиальный hover */
.person_card:hover {
    transform: translateY(-6px);
}

.person_info {
    color: #fff;
    z-index: 2;
}

.person_name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: var(--font-family);
}

.person_position {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
}

.person_linkedin {
    position: absolute;
    bottom: 32px;
    right: 23px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.person_linkedin:hover {
    background: rgba(0,0,0,0.75);
}

.person_linkedin--empty {
    visibility: hidden;
}

.about__team-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    font-family: var(--font-family);
}

/* Team carousel */
.team-carousel {
    position: relative;
    overflow: hidden;
    padding-bottom: 32px;
    width: 100%;
}

.team-carousel .swiper-slide {
    height: auto;
}

.team-carousel .person_card {
    width: 100%;
    min-height: 320px;
}

.team-carousel__prev,
.team-carousel__next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    color: #fff;
    backdrop-filter: blur(6px);
}

.team-carousel__prev::after,
.team-carousel__next::after {
    font-size: 18px;
}

.team-carousel__prev:hover,
.team-carousel__next:hover {
    background: rgba(0,0,0,0.7);
}

.team-carousel__pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
}

.team-carousel__pagination .swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 47.99875em) {
    .team-carousel .person_card {
        min-height: 280px;
    }

    .team-carousel__prev,
    .team-carousel__next {
        width: 36px;
        height: 36px;
    }
}
