/*
 * Copyright (c) 2026 Spectral Labs LLC
 * Author: Aaron Tarajos
 * All rights reserved.
 */

/* Team Page Styles */

.team-hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.credential-card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-border);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}

.credential-card:hover {
  border-color: var(--green-light);
}

.credential-icon {
  font-size: 0.7rem;
  color: var(--green-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.credential-card h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.credential-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
