.crews__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.crews__subtitle {
  max-width: 340px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.crews__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Crew card */
.crew-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  transition: border-color var(--transition-base);
}

.crew-card:hover {
  border-color: var(--border-lime);
}

.crew-card--empty {
  border-style: dashed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
  gap: 1rem;
}

.crew-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.crew-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
}

.crew-card__rank {
  font-size: 12px;
  font-weight: 600;
  background: rgba(198, 240, 0, 0.12);
  color: var(--lime);
  padding: 4px 10px;
  border-radius: 20px;
}

.crew-card__members {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.member-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dot-bg, #2a2a2a);
  color: var(--dot-color, var(--lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--bg-2);
}

.crew-card__pc-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.crew-card__bar {
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.crew-card__bar-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 3px;
  width: 0%;
  transition: width 1s ease;
}

.crew-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.crew-card__plus {
  font-size: 32px;
  color: rgba(198, 240, 0, 0.3);
}

.crew-card__empty-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.crew-card__empty-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* Crews features bar */
.crews__features {
  margin-top: 2rem;
  background: var(--bg-2);
  border: 1px solid #c6f00026;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.crews__feature-item {
  flex: 1;
  min-width: 160px;
}

.crews__feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--lime);
}

.crews__feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Avatars ─────────────────────────────────────────────────────────────── */
.av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--av-bg, #2a2a2a);
  color: var(--av-color, var(--lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-right: -8px;
}
