.team-org-section {
  padding: 96px 0 120px;
  background: #ffffff;
}

.team-org-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.org-tier {
  margin-bottom: 0;
}

.org-tier .section-label {
  margin-bottom: 32px;
}

.team-org-section .label-line {
  background: rgba(0, 0, 0, 0.15);
}

.team-org-section .label-text {
  color: rgba(0, 0, 0, 0.5);
}

.org-connector {
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, rgba(28, 78, 216, 0.6) 0%, rgba(28, 78, 216, 0.1) 100%);
  margin: 0 auto 0;
}

.org-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 0;
}

.org-cards-exec {
  grid-template-columns: repeat(2, 1fr);
}

.org-cards-directors {
  grid-template-columns: repeat(3, 1fr);
}

.org-cards-advisory {
  grid-template-columns: repeat(2, 1fr);
}

.team-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.team-card:hover {
  border-color: rgba(28, 78, 216, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.team-card-featured {
  border-color: rgba(28, 78, 216, 0.2);
}

.team-card-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #0a0f1a;
  background-image:
    linear-gradient(rgba(28, 78, 216, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 78, 216, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(28, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 78, 216, 0.04) 1px, transparent 1px);
  background-size:
    60px 60px,
    60px 60px,
    15px 15px,
    15px 15px;
}

.team-card-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(28, 78, 216, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.team-card-photo img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  border: 3px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.team-card-featured .team-card-photo img {
  width: 150px;
  height: 150px;
  border-color: rgba(28, 78, 216, 0.3);
}

.team-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.team-card-name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.team-card-title {
  font-family: var(--font);
  font-weight: 600;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.4;
}

.team-card-bio {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 8px 0 0;
  flex: 1;
}

.team-card-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.2s;
}

.team-card-linkedin:hover {
  opacity: 0.8;
}

.team-card-linkedin .social-icon {
  width: 16px;
  height: 16px;
}

.team-card-linkedin-placeholder {
  color: var(--text-gray);
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .org-cards-exec,
  .org-cards-directors,
  .org-cards-advisory {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-org-section {
    padding: 64px 0 80px;
  }

  .team-org-inner {
    padding: 0 20px;
  }

  .org-cards,
  .org-cards-exec,
  .org-cards-directors,
  .org-cards-advisory {
    grid-template-columns: 1fr;
  }

  .team-card-photo {
    height: 180px;
  }

  .team-card-photo img {
    width: 110px;
    height: 110px;
  }

  .team-card-featured .team-card-photo img {
    width: 130px;
    height: 130px;
  }

  .team-card-name {
    font-size: 20px;
  }

  .org-connector {
    height: 32px;
  }
}
