/* Team Page Styles */

/* Section 1 - Hero/Intro */
.u-section-1 {
  background-color: #323a56;
  background-image: none;
}

.u-section-1 .u-sheet-1 {
  min-height: 280px;
}

.u-section-1 .u-text-1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  margin: 40px auto 0;
  text-align: center;
}

.u-section-1 .u-text-2 {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-size: 1.125rem;
  max-width: 900px;
  margin: 20px auto 40px;
  text-align: center;
}

/* Section 2 - Team Grid */
.u-section-2 {
  background-color: #f4f4f4;
}

.u-section-2 .u-sheet-1 {
  min-height: 600px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.u-section-2 .u-text-1 {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 50px;
  color: #323a56;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(50,58,86,0.18);
}

.team-card-photo {
  width: 100%;
  height: 240px;
  background-color: #323a56;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card-photo .photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-photo .photo-placeholder svg {
  width: 60px;
  height: 60px;
  fill: rgba(255,255,255,0.5);
}

.team-card-body {
  padding: 28px 24px;
}

.team-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #323a56;
  margin: 0 0 6px;
}

.team-card-body .team-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: #5c6b8a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.team-card-body .team-quals {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 16px;
  font-style: italic;
}

.team-card-body .team-strengths {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.team-card-body .team-strengths strong {
  color: #323a56;
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card-body .team-strengths ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.team-card-body .team-strengths ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.team-card-body .team-strengths ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #323a56;
}

.team-card-body .team-ensures {
  margin-top: 16px;
  padding: 12px 16px;
  background: #f8f9fb;
  border-left: 3px solid #323a56;
  border-radius: 0 6px 6px 0;
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.5;
}

.team-card-body .team-ensures strong {
  color: #323a56;
  display: block;
  margin-bottom: 4px;
}

/* Section 3 - CTA */
.u-section-3 {
  background-color: #323a56;
}

.u-section-3 .u-sheet-1 {
  min-height: 200px;
  text-align: center;
  padding: 60px 20px;
}

.u-section-3 .u-text-1 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 400;
  margin: 0 auto 16px;
}

.u-section-3 .u-text-2 {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin: 0 auto 30px;
  max-width: 600px;
}

.u-section-3 .u-btn-1 {
  display: inline-block;
  background: #ffffff;
  color: #323a56;
  padding: 14px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease;
}

.u-section-3 .u-btn-1:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1199px) {
  .team-grid {
    max-width: 940px;
    gap: 30px;
  }

  .team-card-photo {
    height: 200px;
  }
}

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    gap: 30px;
  }

  .u-section-1 .u-text-1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    gap: 24px;
  }

  .u-section-1 .u-text-1 {
    font-size: 2rem;
  }

  .u-section-1 .u-text-2 {
    font-size: 1rem;
    padding: 0 20px;
  }

  .team-card-photo {
    height: 180px;
  }
}

@media (max-width: 575px) {
  .team-grid {
    max-width: 340px;
    gap: 20px;
    padding: 0 10px;
  }

  .u-section-1 .u-text-1 {
    font-size: 1.75rem;
  }

  .u-section-1 .u-sheet-1 {
    min-height: 200px;
  }

  .team-card-body {
    padding: 20px 16px;
  }

  .u-section-3 .u-text-1 {
    font-size: 1.5rem;
  }
}
