/* Team Full Display */
.team {
  max-width: 860px;
  margin: 0 auto;
}

.team__splash {
  aspect-ratio: 16 / 9;
  background: #f8f8f8;
  margin-bottom: 1rem;
}

.team__splash-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team__title {
  font-size: 2rem;
  margin: 0 0 0.25rem;
}

.team__country-label,
.team__label {
  font-weight: 600;
}

/* Teaser cards */
.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.team-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.team-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f4f4f4;
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__body {
  padding: 0.75rem 0.9rem 1rem;
}

.team-card__title {
  font-size: 1.1rem;
  margin: 0 0 .25rem;
  line-height: 1.25;
}

.team-card__meta {
  color: #666;
  font-size: .9rem;
}

.team-card__nickname {
  margin-top: .25rem;
  color: #444;
  font-size: .9rem;
}

/* Responsive grid helpers for Views */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.team-grid__col {
  display: flex;
}