/*
=========================================================
   HELCU — DOCTOR PROFILE CARD
   PROFILE TOP
========================================================= */


/*
=========================================================
   BASE — MOBILE FIRST

   0px → 767.98px
=========================================================
*/

.hc-profile-top {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 16px;

    box-sizing: border-box;

}


/* ---------------------------------------------------------
   Doctor Avatar
   --------------------------------------------------------- */

.hc-profile-avatar {

    width: 82px;

    height: 82px;

    flex: 0 0 82px;

    overflow: hidden;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid rgba(0, 0, 0, 0.08);

    box-sizing: border-box;

}


.hc-profile-avatar img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* ---------------------------------------------------------
   Doctor Information
   --------------------------------------------------------- */

.hc-profile-info {

    flex: 1 1 auto;

    min-width: 0;

}


.hc-profile-info h2 {

    display: flex;

    align-items: center;

    gap: 6px;

    margin: 0;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.25;

    word-break: break-word;

}


.hc-profile-info h5 {

    margin: 5px 0 0;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.3;

    word-break: break-word;

}


.hc-profile-specialization {

    display: flex;

    align-items: center;

    gap: 6px;

    margin: 7px 0 0;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.3;

    word-break: break-word;

}


.hc-profile-specialization i {

    flex: 0 0 auto;

    font-size: 12px;

}


/* =========================================================
   VERIFIED BADGE
   ========================================================= */

.verified-badge {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    margin-left: 4px;

    border-radius: 50%;

    background: #22C55E;

    vertical-align: middle;

    box-shadow:
        0 2px 5px rgba(34, 197, 94, .20);
}


/* =========================================================
   VERIFIED CHECK
   ========================================================= */

.verified-badge i {

    display: flex;

    align-items: center;
    justify-content: center;

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 700;

    line-height: 1;
}

/*
=========================================================
   TABLET

   768px → 1199.98px
=========================================================
*/

@media (min-width: 768px) {

    .hc-profile-top {

        gap: 17px;

        padding: 21px 20px;

    }


    .hc-profile-avatar {

        width: 92px;

        height: 92px;

        flex-basis: 92px;

    }


    .hc-profile-info h2 {

        font-size: 20px;

    }


    .hc-profile-info h5 {

        margin-top: 6px;

        font-size: 13px;

    }


    .hc-profile-specialization {

        margin-top: 8px;

        font-size: 13px;

    }


    .hc-profile-specialization i {

        font-size: 13px;

    }


    .verified-badge {

        width: 20px;

        height: 20px;

        flex-basis: 20px;

    }


    .verified-badge i {

        font-size: 11px;

    }

}


/*
=========================================================
   DESKTOP

   1200px+
=========================================================
*/

@media (min-width: 1200px) {

    .hc-profile-top {

        gap: 20px;

        padding: 24px 24px;

    }


    .hc-profile-avatar {

        width: 105px;

        height: 105px;

        flex-basis: 105px;

    }


    .hc-profile-info h2 {

        font-size: 22px;

    }


    .hc-profile-info h5 {

        margin-top: 7px;

        font-size: 14px;

    }


    .hc-profile-specialization {

        margin-top: 9px;

        font-size: 14px;

    }


    .hc-profile-specialization i {

        font-size: 14px;

    }


    .verified-badge {

        width: 22px;

        height: 22px;

        flex-basis: 22px;

    }


    .verified-badge i {

        font-size: 12px;

    }

}

/* =====================================================
   DEGREE
===================================================== */

.hc-profile-degree {

    display: flex;

    align-items: center;

    gap: 6px;

    margin: 4px 0 0;

}


/* =====================================================
   DEGREE ICON
===================================================== */

.hc-profile-degree i {

    flex: 0 0 auto;

    color: #2E6BFF;

    font-size: 13px;

}


/* =====================================================
   SPECIALIZATION
===================================================== */

.hc-profile-specialization {

    display: flex;

    align-items: center;

    gap: 6px;

}


/* =====================================================
   SPECIALIZATION ICON
===================================================== */

.hc-profile-specialization i {

    flex: 0 0 auto;

    color: #E53935;

    font-size: 13px;

}