/* Alumni Management — Public CSS */

/* ── Avatar circles ── */
.alumni-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2E86AB;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alumni-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E86AB, #A23B72);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Cards ── */
.alumni-card,
.job-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border-radius: 10px;
}

.alumni-card:hover,
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}

/* ── Engagement ring ── */
.engagement-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.engagement-score-val {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

/* ── Page header ── */
.alumni-directory-page .page-header,
.alumni-profile-page .page-header,
.job-board-page .page-header {
  border-bottom: 2px solid #2E86AB;
  padding-bottom: 1rem;
}

/* ── Responsive tweaks ── */
@media (max-width: 576px) {
  .alumni-avatar-lg {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
