.nb-search-links-1{
    display: flex;
    flex-direction: column;
    gap: 10px;

    .title{
        font-size: 12px;
        color: var(--nb-text-color-secondary);
    }

    .nb-link{
        font-size: 16px;
        line-height: 20px;
        color: var(--nb-text-color-primary);
        position: relative;
        width: fit-content;

        &:before{
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            width: 0;
            background: var(--nb-text-color-primary);
            transition: width .3s ease-in-out;
        }

        &:hover:before{
            width: 100%;
        }
    }
}
