/*
|--------------------------------------------------------------------------
| PROFILE MEMBER
|--------------------------------------------------------------------------
*/

.ei-profile{
    max-width:900px;
    margin:40px auto;
    font-family:inherit;
}


/* ==========================================================
   HEADER
========================================================== */

.ei-profile-header{
    display:flex;
    align-items:center;
    gap:20px;
    background:#374572;
    color:#fff;
    padding:25px 30px;
    border-radius:16px;
    margin-bottom:25px;
}

.ei-profile-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#FFC107;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    flex-shrink:0;
}

.ei-profile-header-text h2{
    margin:0;
    font-size:30px;
    color:#fff;
}

.ei-profile-header-text p{
    margin-top:6px;
    margin-bottom:0;
    color:#f2f2f2;
}


/* ==========================================================
   CARD
========================================================== */

.ei-profile-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}


/* ==========================================================
   ROW
========================================================== */

.ei-profile-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding:18px 25px;
    border-bottom:1px solid #ececec;
}

.ei-profile-row:last-child{
    border-bottom:none;
}

.ei-profile-label{
    font-weight:600;
    color:#374572;
    min-width:220px;
}

.ei-profile-value{
    flex:1;
    text-align:right;
    color:#444;
    word-break:break-word;
}