/* Class Recruited Card — light-gray score callout, third card in the
 * school#show header.
 *
 * Semantic structure: <dl>/<dt>(label)/<dd>(value); visual order
 * value-above-label via flex-direction: column-reverse.
 *
 * See ClassRecruitedCardComponent.
 */

.class-recruited-card {
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 115px;
  min-height: 96px;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  background: var(--gray-500);
  color: white;
  font-family: var(--font-family-display);
  user-select: none;
  gap: 0.25rem;
}

.class-recruited-card,
.class-recruited-card dt,
.class-recruited-card dd { margin: 0; padding: 0; }
.class-recruited-card { padding: 0.75rem 0.5rem; }

.class-recruited-card__value {
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.125rem;
}

.class-recruited-card__primary {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

/* % top-aligned superscript, mirroring the numeric MatchCard. */
.class-recruited-card__modifier {
  align-self: flex-start;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

.class-recruited-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
