/* === TEAM PAGE STYLES === */

.leadership-wrap { padding-bottom: 80px; }

.ldr-card {
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;

	background: linear-gradient(145deg, #fafbff, #ffffff);
    background-image: linear-gradient(140deg, #f6fffc 25%, #defff3);
    background-clip: border-box;
    border: 1px solid #8cebc9;
    border-radius: 16px;
}
.ldr-card:hover {
  transform: translateY(-4px);
  border-color: rgba(165,180,252,0.35);
}
.ldr-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.ldr-title {
    margin-bottom: 10px;
    font-weight: 800;
    margin-top: 0;
    font-size: 35px;
    color: #073c2a;
    line-height: 40px;
}
.ldr-text {
  font-size: 0.91rem;
  line-height: 1.7;
  margin: 0;
color: #64748b;
}

/* === ADVISOR PROFILE CARDS === */
.advisors-section {
  background: #f0f4ff;
  padding: 80px 0 90px;
}
.profile-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  border-left: 5px solid #6366f1;
  box-shadow: 0 4px 20px rgba(55,48,163,0.09);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(55,48,163,0.14);
}
.profile-photo-wrap {
  padding: 32px 32px 0;
}
.profile-photo-wrap img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.profile-body {
  padding: 18px 24px 28px;
}
.profile-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e1b4b;
  margin: 0 0 4px;
}
.profile-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.profile-bio {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 18px;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.profile-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #475569;
}

/* === COLLECTIVE STRENGTH === */
.team-strength {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #e8eaf6;
}
.strength-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid #e8eaf6;
  box-shadow: 0 4px 20px rgba(79,92,255,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(79,92,255,0.13);
}
.strength-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #3730a3;
  line-height: 1;
}
.strength-label {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.strength-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 4px;
}
