.obsah-clanku p > a {
    color: var(--wp--preset--color--accent);
    transition: 150ms ease-out;
}
p > a {
    display: inline-flex;
    align-items: center;
}
p > a:not([data-type])::after {
    content: '';
    background: url(/wp-content/themes/slniecko/assets/icons/arrow-down-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-flex;
    position: relative;
    width: clamp(1.5625rem, 1.375rem + 0.5vw, 1.75rem);
    aspect-ratio: 1;
    transition: 300ms ease-out;
}
p > a:hover::after {
    transform: rotate(45deg);
}