.otp-team-section {
  width: 100%;
  padding: 96px 42px 86px;
  font-family: inherit;
  box-sizing: border-box;
  overflow: hidden;
}

.otp-team-section *,
.otp-team-section *::before,
.otp-team-section *::after {
  box-sizing: border-box;
}

.otp-team-inner {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}

.otp-team-header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 82px;
}

.otp-team-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #555555;
  border-radius: 8px;
  padding: 9px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 26px;
  width: fit-content;
}

.otp-team-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  line-height: 0;
}

.otp-team-header h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -2px;
}

.otp-team-header-right {
  width: 100%;
  max-width: 620px;
  justify-self: start;
}

.otp-team-header-right p {
  max-width: 620px;
  margin: 0;
  color: #555555;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.otp-team-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-width: 150px;
  height: 58px;
  padding: 0 30px;
  background: #00a651;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  line-height: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.otp-team-button:hover,
.otp-team-button:focus {
  background: #009647;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.otp-team-grid {
  display: grid;
  grid-template-columns: repeat(var(--otp-columns, 5), minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.otp-team-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.otp-team-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.otp-team-photo {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  background: #eeeeee;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.otp-team-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  border: 0 !important;
}

.otp-team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  font-weight: 700;
  color: #aaaaaa;
  background: #eeeeee;
}

.otp-team-info {
  min-height: 102px;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  padding: 24px 18px 22px;
  text-align: center;
}

.otp-team-info h3 {
  margin: 0;
  color: #111111;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.4px;
}

.otp-team-role {
  margin: 10px 0 0;
  color: #444444;
  font-size: 15px;
  line-height: 1.35;
}

.otp-team-bio {
  margin: 12px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.45;
}

.otp-team-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
  font-size: 13px;
}

.otp-team-links a {
  color: #00a651 !important;
  text-decoration: none !important;
  font-weight: 600;
}

.otp-team-links a:hover,
.otp-team-links a:focus {
  text-decoration: underline !important;
}

.otp-team-empty {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  color: #555555;
  width: 100%;
}

@media (max-width: 1180px) {
  .otp-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .otp-team-section {
    padding: 76px 28px 66px;
  }

  .otp-team-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 54px;
  }

  .otp-team-header h2 {
    font-size: 42px;
  }

  .otp-team-header-right p {
    font-size: 18px;
  }

  .otp-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .otp-team-section {
    padding: 62px 18px 56px;
  }

  .otp-team-header h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .otp-team-header-right p {
    font-size: 16px;
  }

  .otp-team-button {
    width: 100%;
  }

  .otp-team-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .otp-team-info h3 {
    font-size: 21px;
  }
}
