/* =============================================
         TEAM PAGE — team.css (inlined)
         ============================================= */

/* ── PAGE HERO ── */
.team-page-hero {
  background: var(--green-dark);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.team-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 70% 50%,
      rgba(61, 175, 108, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(61, 175, 108, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.team-page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.team-hero-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.team-hero-label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green-light);
}
.team-page-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
}
.team-page-hero p {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
}
.team-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.team-hero-stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 28px;
  text-align: center;
}
.team-hero-stat-num {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green-light);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.team-hero-stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  display: block;
}

/* ── INTRO STRIP ── */
.team-intro-strip {
  background: var(--off-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.team-intro-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.team-intro-col {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--border);
}
.team-intro-col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 40px;
}
.team-intro-col:nth-child(2) {
  padding: 0 40px;
}
.team-intro-col h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.team-intro-col p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── LEADERSHIP GRID ── */
.team-section {
  background: #fff;
  padding: 100px 0;
}
.team-section-header {
  text-align: center;
  margin-bottom: 72px;
}
.team-section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
  display: block;
}
.team-section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.15;
}

/* ── FEATURED LEADER (CEO) ── */
.leader-featured {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 0;
  background: var(--off-white);
  margin-bottom: 64px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.leader-featured-img {
  position: relative;
  overflow: hidden;
}
.leader-featured-img img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.leader-featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--green-dark);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
}
.leader-featured-body {
  padding: 56px 56px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leader-role-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.leader-featured-name {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.leader-credentials {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 24px;
}
.leader-bio {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.leader-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.expertise-tag {
  background: #ebf7f0;
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 0;
}
.leader-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  background: #0a66c2;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-linkedin:hover {
  background: #004182;
}
.btn-linkedin svg {
  flex-shrink: 0;
}
.btn-cv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
}
.btn-cv:hover {
  background: var(--green-dark);
  color: #fff;
}
.btn-cv svg {
  flex-shrink: 0;
}

/* ── TEAM GRID (other members) ── */
.team-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-member-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}
.member-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}
.team-member-card:hover .member-img-wrap img {
  transform: scale(1.05);
}
.member-overlay {
  display: none;
}
.member-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.member-role {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}
.member-name {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.member-credentials {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}
.member-bio {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 20px;
}
.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.member-tag {
  background: #ebf7f0;
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  padding: 5px 10px;
}
.member-footer-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.btn-sm-linkedin,
.btn-sm-cv {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-sm-linkedin {
  background: #0a66c2;
  color: #fff;
  flex: 1;
  justify-content: center;
}
.btn-sm-linkedin:hover {
  background: #004182;
}
.btn-sm-cv {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  flex: 1;
  justify-content: center;
}
.btn-sm-cv:hover {
  background: var(--green-dark);
  color: #fff;
}

/* ── JOIN CTA SECTION ── */
.team-join-section {
  background: var(--off-white);
  padding: 90px 0;
  text-align: center;
}
.team-join-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.team-join-section p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 36px;
}
.team-join-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .leader-featured {
    grid-template-columns: 380px 1fr;
  }
  .leader-featured-body {
    padding: 44px;
  }
  .team-page-hero .container {
    gap: 40px;
  }
  .team-page-hero h1 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  .team-page-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-page-hero h1 {
    font-size: 34px;
  }
  .team-intro-strip .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .team-intro-col,
  .team-intro-col:last-child,
  .team-intro-col:nth-child(2) {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .team-intro-col:last-child {
    border-bottom: none;
  }
  .leader-featured {
    grid-template-columns: 1fr;
  }
  .leader-featured-img img {
    min-height: 360px;
  }
  .leader-featured-body {
    padding: 36px 32px;
  }
  .team-members-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .team-page-hero {
    padding: 60px 0 50px;
  }
  .team-page-hero h1 {
    font-size: 28px;
  }
  .team-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .team-section-header h2 {
    font-size: 28px;
  }
  .leader-featured-name {
    font-size: 22px;
  }
  .leader-featured-body {
    padding: 28px 24px;
  }
  .team-members-grid {
    grid-template-columns: 1fr;
  }
  .team-join-section h2 {
    font-size: 26px;
  }
  .team-join-btns {
    flex-direction: column;
    align-items: center;
  }
}
