.hyperlink-with-arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 20px;
    text-decoration-color: var(--jkpodolog-color-polar-night);
    color: var(--jkpodolog-color-polar-night);
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
}

.hyperlink-with-arrow * {
    transition: all 0.2s ease-out;
}

.hyperlink-with-arrow span {
    width: fit-content;
    font-weight: 600;
    line-height: 100%;
    text-wrap: nowrap;

}

.arrow-right svg {
    order: 1;
    transform: rotate(180deg);
}

.hyperlink-with-arrow svg {
    height: 100%;
    aspect-ratio: 1/1;
}

@media (max-width: 1200px) {
    .hyperlink-with-arrow {
        gap: 15px;
    }

}

@media (min-width: 1200px) {
    .hyperlink-with-arrow:hover {
        color: var(--jkpodolog-color-coral);
        text-decoration-color: var(--jkpodolog-color-coral);
    }

    .arrow-right:hover svg {
        transform: translateX(-10px) rotate(180deg);
    }

    .arrow-left:hover svg {
        transform: translateX(10px);
    }

}