/* ===============================
   GRID
================================ */

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

/* ===============================
   CARD
================================ */

.alumni-card {
    background: #ffffff;
    border-radius: 36px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.alumni-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 72px rgba(15, 23, 42, 0.14);
}

/* ===============================
   AVATAR
================================ */

.alumni-card__avatar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.alumni-card__date {
    font-size: 0.8rem;
    color: #6b7280;
}

/* ===============================
   BODY
================================ */

.alumni-card__name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.alumni-card__status {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ===============================
   BADGES
================================ */

.alumni-card__badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.badge {
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 500;
}

.badge--diploma{
    background: #e0f2fe;
    color: #0284c7;
}

/* ===============================
   COMPANY
================================ */

.alumni-card__company {
    display: flex;
    gap: 0.75rem;
    font-size: 1rem;
    color: #475569;
    margin-top: auto;
}

.company-role {
    font-weight: 700;
}

.company-name {
    font-size: 0.9rem;
    color: #64748b;
}

/* ===============================
   ACTIONS
================================ */

.alumni-card__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.btn-action {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #334155;
    transition: all 0.2s ease;
}

.btn-action:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.btn-action--primary {
    background: var(--primary-color);
    color: #ffffff;
}

.btn-action--primary:hover {
    background: #1d4ed8;
}
