/* Hover Link Text Widget - 350bc557 */

.hlt-350bc557-wrapper {
    display: block;
}

.hlt-350bc557-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.hlt-350bc557-link:hover {
    text-decoration: none;
}

.hlt-350bc557-inner {
    display: inline-flex;
    align-items: center;
    position: relative;
}

/* Underline - hidden by default, appears on hover */
.hlt-350bc557-inner::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: #1a1a2e;
    transition: width 300ms ease;
}

.hlt-350bc557-link:hover .hlt-350bc557-inner::after {
    width: 100%;
}

/* Text element */
.hlt-350bc557-text {
    margin: 0;
    padding: 0;
    line-height: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* Arrow - thin CSS chevron, hidden by default */
.hlt-350bc557-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 300ms ease, transform 300ms ease;
}

.hlt-350bc557-arrow::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #1a1a2e;
    border-right: 1.5px solid #1a1a2e;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.hlt-350bc557-link:hover .hlt-350bc557-arrow {
    opacity: 1;
    transform: translateX(0);
}
