/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Team Page Styles
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Team Hero */
.team-hero {
  padding: 12rem 2rem 6rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
}

.team-hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.team-hero .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.8;
}

/* Leadership Section */
.leadership-section {
  padding: 8rem 2rem;
}

.leadership-section .section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin: 2rem 0 4rem;
  line-height: 1.8;
}

.leadership-grid {
  display: grid;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.3s ease;
}

.leader-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.leader-image {
  width: 250px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #f5f5f5;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.leader-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-name {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.leader-title {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.manager-credential {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
  margin-bottom: 1rem;
}

.leader-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 1.5rem 0;
}

.leader-strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.strength-tag {
  padding: 0.5rem 1rem;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
}

/* Guides Section */
.guides-section {
  padding: 8rem 2rem;
  background: #f8f8f8;
}

.guides-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.guides-image {
  border-radius: 16px;
  overflow: hidden;
}

.guides-image img {
  width: 100%;
  height: auto;
  display: block;
}

.guides-info h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #1a1a1a;
  line-height: 1.4;
}

.guide-feature {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.guide-feature i {
  font-size: 2rem;
  color: #1a1a1a;
  opacity: 0.8;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.guide-feature h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.guide-feature p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Strengths Section */
.strengths-section {
  padding: 8rem 2rem;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.strength-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #1a1a1a;
}

.strength-card i {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.strength-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.strength-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-hero {
    padding: 10rem 1.5rem 4rem;
  }

  .team-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .team-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .leadership-grid {
    gap: 3rem;
  }

  .leader-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
  }

  .leader-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .leader-info {
    align-items: center;
  }

  .leader-strengths {
    justify-content: center;
  }

  .guides-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .guides-info h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  .guide-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .guide-feature i {
    margin-top: 0;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
