/* ============ TEAM SECTION ============ */
/* SECTION: TEAM-GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  aspect-ratio: 1 / 1.2;
  background: var(--purewhite);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(10,10,15,0.05);
  transition: all var(--transition-base);
}

.team-card:hover {
  border-color: var(--brass);
}

.team-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--logogray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: all var(--transition-base);
}

.team-card:hover .team-image img {
  filter: grayscale(0);
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--oil);
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--darkgray);
}

/* SECTION: TEAM-RESPONSIVE */
@media (max-width: 1024px) {
  .team-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 640px) {
  .team-grid { 
    grid-template-columns: repeat(1, 1fr); 
  }
}