.navbar {
    padding: 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-light-gray);

    font-family: "Inter", sans-serif;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__image {
    width: 38px;
    height: 38px;

    img {
        width: 38px;
        height: 38px;

        min-width: 38px;
        min-height: 38px;

        max-width: 38px;
        max-height: 38px;
    }
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__title {
    font-size: 15px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -2%;
    color: var(--color-total-black);
    margin: 0;
}

.logo__subtitle {
    font-size: 13px;
    font-weight: 300;
    line-height: 110%;
    letter-spacing: -2%;
    color: var(--color-total-black);
    margin: 0;
}

.navbar__actions {
    display: flex;
    margin-left: auto;
}

.navbar__menu {
    width: 26px;
    height: 26px;

    img {
        width: 26px;
        height: 26px;

        min-width: 26px;
        min-height: 26px;

        max-width: 26px;
        max-height: 26px;
    }
}