.container {
  max-width: 70vw;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #1f3f91;
  margin-bottom: 40px;
}

.label {
  color: #1f3f91;
  font-size: 1.75rem;
  margin-top: 40px;
}

main p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 16px 0;
}

.highlight {
  font-weight: bold;
  color: #0055a5;
}

.italic {
  font-style: italic;
}

/* Section Title – matches your site style */
.team-section .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f3c88;
  text-align: center;
  margin-bottom: 2rem;
}

/* Team list in column layout */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Individual team card in full-width column */
.team-card {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
  transition: transform 0.2s ease-in-out;
}

.team-card:hover {
  transform: translateY(-2px);
}

/* Image placeholder */
.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background: #cceeff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Info next to image */
.team-info {
  margin-left: 1rem;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.team-role {
  font-size: 0.9rem;
  margin: 0.2rem 0 0.5rem;
}

/* Green icon placeholders */
.social-link {
  color: #0077b5; /* LinkedIn blue */
  font-weight: 500;
  text-decoration: none;
}

.social-link:hover {
  text-decoration: underline;
  color: #005582; /* darker on hover */
}

/* Responsive – padding adjustment for smaller screens */
@media (max-width: 480px) {
  .team-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-photo {
    margin-bottom: 1rem;
  }

  .team-info {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 90vw;
    padding: 20px;
  }

  .label {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.8rem;
  }
}
