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


/* =========================================================
   Footer
   ========================================================= */

.hc-profile-footer {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 9px 14px;

    background: #F8FCFC;

    border-top: 1px solid rgba(10, 147, 150, .08);
}


/* =========================================================
   Footer Box
   ========================================================= */

.hc-footer-box {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    min-width: 0;

    color: #6B7779;

    font-size: 9px;

    font-weight: 600;

    line-height: 1.2;

    white-space: nowrap;
}


/* =========================================================
   Footer Icons
   ========================================================= */

.hc-footer-box i {

    flex-shrink: 0;

    font-size: 11px;

    line-height: 1;
}


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

.hc-footer-box:first-child i {

    color: #2E6BFF;
}


/* =========================================================
   Trusted Care Icon
   ========================================================= */

.hc-footer-box:last-child i {

    color: #0A9396;
}


/* =========================================================
   Divider
   ========================================================= */

.hc-footer-line {

    width: 1px;

    height: 14px;

    flex-shrink: 0;

    background: rgba(15, 23, 42, .12);
}


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

.hc-footer-box {

    transition:
        color .25s ease;
}


.hc-footer-box:first-child:hover {

    color: #2E6BFF;
}


.hc-footer-box:last-child:hover {

    color: #0A9396;
}


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

@media (min-width: 768px) {

    .hc-profile-footer {

        gap: 12px;

        padding: 10px 14px;
    }


    .hc-footer-box {

        gap: 6px;

        font-size: 10px;
    }


    .hc-footer-box i {

        font-size: 12px;
    }


    .hc-footer-line {

        height: 15px;
    }
}


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

@media (min-width: 1200px) {

    .hc-profile-footer {

        gap: 14px;

        padding: 11px 16px;
    }


    .hc-footer-box {

        gap: 7px;

        font-size: 11px;
    }


    .hc-footer-box i {

        font-size: 13px;
    }


    .hc-footer-line {

        height: 16px;
    }
}