.team-block {
  padding: var(--spacing-20) 0;
}

.team-block-text {
  text-align: center;
  margin-bottom: var(--spacing-20);
}

.teams {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-8);
  justify-content: center;
  align-items: stretch;
}

.team-box {
  background: #faecd6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-align: center;
  padding: var(--spacing-10);
  flex: 0 1 calc(25% - var(--spacing-8));
  max-width: calc(25% - var(--spacing-8));
}

@media (max-width: 1024px) {
  .team-box {
    flex-basis: calc(33.333% - var(--spacing-8));
    max-width: calc(33.333% - var(--spacing-8));
  }
}
@media (max-width: 768px) {
  .team-box {
    flex-basis: calc(50% - var(--spacing-8));
    max-width: calc(50% - var(--spacing-8));
  }
}
@media (max-width: 480px) {
  .team-box {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.team-box:hover,
.team-box:focus-within {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .team-box {
    transition: none;
  }
}
.team-box-image img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 50px;
  object-fit: cover;
}

.ns-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  border: none;
  cursor: pointer;
}

.team-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.team-modal.is-open {
  display: block;
}

.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.team-modal-dialog {
  position: relative;
  max-width: 720px;
  margin: 5vh auto;
  background: #fff;
  padding: var(--spacing-10);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-modal-image img {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  margin: 0 auto var(--spacing-8);
}

.team-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 2rem;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
}

.team-modal h3,
.team-modal h4 {
  text-align: center;
  margin: 0.25rem 0;
}

#teamModalDescription {
  margin-top: var(--spacing-6);
  text-align: center;
}
/*# sourceMappingURL=teamBlock.1770194470976.css.map */