.ws-highlight-hover__anchor{
    display: block;
    width: fit-content;
    height: fit-content;

    color: currentColor !important;
    text-decoration: unset;
}
.ws-highlight-hover{
    text-decoration: unset !important;

    display: block;
    height: fit-content;
    width: fit-content;
    margin: 0;
}
.ws-highlight-hover__inner{
    display: flex;
    width: fit-content;
    position: relative;
    z-index: 0;
}
.ws-highlight-hover__inner[data-highlight-type="bottom-to-full"]:after, .ws-highlight-hover__inner[data-highlight-type="full-to-bottom"]:after,
.ws-highlight-hover__inner[data-highlight-type="left-to-full"]:after, .ws-highlight-hover__inner[data-highlight-type="full-to-left"]:after{
    background-color: var(--after-background);
}
.ws-highlight-hover__inner[data-highlight-type="bottom-to-full"]:after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: var(--height);
    transition: var(--duration) var(--ease);
}
.ws-highlight-hover__inner[data-highlight-type="bottom-to-full"]:hover:after {
    height: 100%;
}
.ws-highlight-hover__inner[data-highlight-type="full-to-bottom"]:after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    transition: var(--duration) var(--ease);
}
.ws-highlight-hover__inner[data-highlight-type="full-to-bottom"]:hover:after {
    height: var(--height);
}
.ws-highlight-hover__inner[data-highlight-type="left-to-full"]:after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0px;
    left: 0;
    width: var(--height);
    height: 100%;
    transition: var(--duration) var(--ease);
}
.ws-highlight-hover__inner[data-highlight-type="left-to-full"]:hover:after {
    width: 100%;
}
.ws-highlight-hover__inner[data-highlight-type="full-to-left"]:after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    transition: var(--duration) var(--ease);
}
.ws-highlight-hover__inner[data-highlight-type="full-to-left"]:hover:after {
    width: var(--height);
}
