/* People Page Specific Styles */

.people-profiles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.person-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.person-image {
  height: 250px;
  overflow: hidden;
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-details {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.person-header {
  margin-bottom: 1rem;
}

.person-header h3 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.person-title {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.person-content {
  flex-grow: 1;
}

.achievements {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.achievements h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.achievements p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Responsive */
@media (min-width: 768px) {
  .person-card {
    flex-direction: row;
  }

  .person-image {
    width: 33%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .person-image {
    height: 200px;
  }
}

