/* xl - DESKTOP STYLES */ 
.link-item {
    position: relative;
}

.link-item::after {
    content: "\2192";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    opacity: 0.45;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.link-item:hover::after {
    transform: translate(5px, -50%);
}

.external-link-module a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.external-link-module a::after {
    content: "";
    display: block;

    width: 16px;
    height: 16px;

    background-color: currentColor;

    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10v10'/%3E%3Cpath d='M7 17 17 7'/%3E%3C/svg%3E") center / contain no-repeat;

    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10v10'/%3E%3Cpath d='M7 17 17 7'/%3E%3C/svg%3E") center / contain no-repeat;

    transition: transform 0.3s ease;
}

.external-link-module a:hover::after {
    transform: translate(2px, -2px);
}

