/* Hotfix independent de Vite pentru topbar si meniul activ. */
.ho-topbar {
    width: 100%;
    background: #08254d;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.ho-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ho-topbar-email {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .01em;
    text-decoration: none;
}

.ho-topbar-email .icon-sm {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.ho-topbar-email span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ho-topbar-email:hover,
.ho-topbar-email:focus-visible {
    color: #bcecf2;
}

.ho-topbar-social {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
}

.ho-topbar-social a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.ho-topbar-social a:hover,
.ho-topbar-social a:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .14);
    color: #bcecf2;
}

.ho-social-icon {
    width: 17px !important;
    height: 17px !important;
    max-width: 17px !important;
    max-height: 17px !important;
    display: block !important;
    flex: 0 0 17px;
}

/* Meniul activ ramane evidentiat doar prin culoare, fara linie. */
.ho-nav-link::after,
.ho-nav-link.is-active::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 700px) {
    .ho-topbar-inner {
        min-height: 36px;
        gap: 12px;
    }

    .ho-topbar-email {
        max-width: calc(100% - 108px);
        font-size: 11px;
    }

    .ho-topbar-social {
        gap: 2px;
    }

    .ho-topbar-social a {
        width: 28px;
        height: 28px;
    }
}
