/* ============================================================
   team.css — Team Member Individual Page
   Theme: Clean white / light
   ============================================================ */

/* :root {
  --primary:     #2bb574;
  --primary-mid: #1a9a5c;
  --primary-bg:  #edf7f3;
  --text:        #111827;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --surface:     #f9fafb;
  --white:       #ffffff;
  --radius:      14px;
} */

/* ── Layout ── */

.team-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 0 !important;
}

/* ── Two-column grid ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: center;
}

/* ── Mobile ordering ── */
.order-mbl-1 { order: 0; }
.order-mbl-2 { order: 0; }

/* ── Content side ── */
.team-member-profile {
  display: flex;
  flex-direction: column;
}

.team-member-header {
  margin-bottom: 20px;
}

.team-member-header h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.team-member-header p {
  font-size: 16px;
  color: #1a9a5c;
  font-weight: 500;
  margin-bottom: 0;
}

.team-member-content p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
  margin: 0 0 16px;
}
.team-member-content ul li{
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
}
/* ── Green accent line under content ── */
.team-member-profile::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #2bb574;
  border-radius: 2px;
  margin-top: 28px;
}

/* ── Avatar side ── */
.team-avatar {
  position: relative;
  height: 100%;
}

.team-avatar img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .order-mbl-1 { order: -1; }
  .order-mbl-2 { order: 0;  }

  .team-avatar {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }

  .team-wrapper {
    padding: 48px 20px !important;
  }
}