/* =========================================================
   HELCU — COMMON PROFILE HEADER
   BASE — MOBILE FIRST
   0px → 767.98px
   ========================================================= */


/* =========================================================
   Header
   ========================================================= */

.hc-profile-header {

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 48px;

    padding: 8px 12px;

    border-radius: 20px 20px 0 0;

    background: linear-gradient(
        135deg,
        #0A7EA4 0%,
        #1495BB 55%,
        #28B9D6 100%
    );
}


/* =========================================================
   Background Shape
   ========================================================= */

.hc-header-shape {

    position: absolute;

    right: 0;
    bottom: 0;
    top: auto;

    width: 140px;
    height: 175%;

    z-index: 1;
}

.hc-header-shape path {

    fill: #E3F3FA;
}


/* =========================================================
   Layer
   ========================================================= */

.hc-profile-header-left,
.hc-profile-header-right {

    position: relative;

    z-index: 5;
}


/* =========================================================
   Left
   ========================================================= */

.hc-profile-header-left {

    display: flex;
    align-items: center;

    gap: 8px;

    min-width: 0;
}


/* =========================================================
   Icon
   ========================================================= */

.hc-header-icon {

    flex-shrink: 0;

    width: 30px;
    height: 30px;

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

    border-radius: 8px;

    background: #FFFFFF;
    color: #0A7EA4;

    font-size: 15px;

    box-shadow:
        0 4px 10px rgba(15, 23, 42, .12);
}

.hc-header-icon i {

    line-height: 1;
}


/* =========================================================
   Title
   ========================================================= */

.hc-header-title-box {

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
}

.hc-header-brand {

    font-size: 8px;
    font-weight: 500;

    color: rgba(255, 255, 255, .88);

    letter-spacing: .7px;
    line-height: 1;
}

.hc-header-title-box h4 {

    margin: 2px 0 0;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .4px;

    color: #FFFFFF;

    text-transform: uppercase;

    line-height: 1.1;

    white-space: nowrap;

    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
   Right
   ========================================================= */

.hc-profile-header-right {

    display: flex;
    align-items: center;

    flex-shrink: 0;
}


/* =========================================================
   Badge
   ========================================================= */

.hc-header-badge {

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-header-badge i {

    font-size: 18px;

    color: #2E6BFF;

    filter: drop-shadow(
        0 3px 6px rgba(46, 107, 255, .22)
    );
}


/* =========================================================
   Hover
   ========================================================= */

.hc-profile-card:hover .hc-profile-header {

    filter: brightness(1.03);

    transition: .30s ease;
}


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

@media (min-width: 768px) {

    .hc-profile-header {

        min-height: 52px;

        padding: 9px 14px;
    }


    .hc-header-shape {

        width: 180px;
    }


    .hc-profile-header-left {

        gap: 10px;
    }


    .hc-header-icon {

        width: 32px;
        height: 32px;

        border-radius: 9px;

        font-size: 16px;
    }


    .hc-header-brand {

        font-size: 8px;
    }


    .hc-header-title-box h4 {

        font-size: 14px;
    }


    .hc-header-badge {

        width: 32px;
        height: 32px;
    }


    .hc-header-badge i {

        font-size: 20px;
    }
}


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

@media (min-width: 1200px) {

    .hc-profile-header {

        min-height: 56px;

        padding: 10px 16px;
    }


    .hc-header-shape {

        width: 180px;
    }


    .hc-profile-header-left {

        gap: 10px;
    }


    .hc-header-icon {

        width: 34px;
        height: 34px;

        border-radius: 10px;

        font-size: 17px;
    }


    .hc-header-brand {

        font-size: 9px;
    }


    .hc-header-title-box h4 {

        font-size: 15px;
    }


    .hc-header-badge {

        width: 34px;
        height: 34px;
    }


    .hc-header-badge i {

        font-size: 22px;
    }
}