@import "index.css";

/* Team Page Specific Styles */
.team-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
}

@media (min-width: 48rem) {
  .team-hero-title {
    font-size: 3rem;
  }
}

.team-hero-desc {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
}

.header-section {
  padding-top: 8rem;
}

.team-large-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .team-large-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .team-large-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.aspect-square {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.stylist-name {
  font-size: 1.5rem;
  font-weight: 600;
}

.specialty {
  color: hsl(var(--muted-foreground));
}
