[data-builder="link"] {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

[data-builder="link"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #2563eb;
    transition: width .3s;
}

[data-builder="link"]:hover::after {
    width: 100%;
}

.builder-link-active {
    opacity: 0.7;
}
