.wp-block-post-excerpt {
--wp--style--block-gap: .75rem;
margin-top: var(--wp--style--block-gap);
&__more-text {
font-weight: 500;
&:after {
content: "→";
display: inline-block;
opacity: 0;
transform: translateX(0) translateY(-1px);
transition: all .2s ease-in-out;
.wp-block-post:hover & {
opacity: 1;
transform: translateX(10px) scale(1.5) translateY(-1px);
}
}
}
}