/* ===== PROFILE SIDEBAR CARD ===== */
.profile-card {
    width: 100%;
    max-width: 320px;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    /* background: #ffffff; */
    background: rgba(255, 255, 255, 0.8);;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* ===== HEADER ===== */
.profile-header {
    margin-bottom: 1rem;
}

/* Foto circolare */
.profile-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f8f9fa;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

/* Nome */
.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.3px;
}

/* Ruolo */
.profile-role {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0;
}

/* Divider */
.profile-divider {
    width: 40px;
    height: 2px;
    background: #e9ecef;
    margin: 1.2rem auto;
    border-radius: 2px;
}

/* ===== SECTIONS ===== */
.profile-section {
    margin-bottom: 1.2rem;
}

.profile-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #343a40;
    margin-bottom: 0.3rem;
}

.profile-sub {
    display: block;
    font-size: 0.8rem;
    font-style: italic;
    color: #6c757d;
    line-height: 1.3;
}