/* Talent card styles moved to the shared cards.css (single source of truth).
   Only the availability dot remains here — talent-profile.html reuses it for
   its profile-header avatar and does NOT load cards.css. Slated for slimming
   in Phase G. */

.availability-dot {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background-color: var(--gray-400);
  border-radius: 50%;
  border: 3px solid var(--white);
}

.availability-dot.available {
  background-color: var(--success-green);
}
