/* ============================================
   OUR-TEAM.HTML SPECIFIC LAYOUT & STRUCTURE
   ============================================ */

/* Team Section */
.team-section {
  background: transparent;
  padding-top: var(--page-banner-offset);
  /* display: flex;
  flex-direction: column; */
  width: 100%;
}

.team-container {
  max-width: 1200px;
  width: 100%;
}

.team-profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-bg-white);
  box-shadow: 0 4px 12px var(--color-shadow);
}

.team-member-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.team-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-name {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.linkedin-icon {
  width: 24px;
  height: 24px;
}

.team-role {
  color: var(--color-text-primary);
  font-size: 18px;
  margin: 0;
  text-align: center;
}

body.team-page {
  background: linear-gradient(180deg, var(--color-bg-cream-grey) 0%, #e6eae2 100%);
}

body.team-page main {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--color-bg-cream-grey) 0%, #e6eae2 100%);
}