.wp-block-post-navigation-link {
	transform: translateX(0rem);
	transition: transform .35s;
	white-space: nowrap;
	
	.foo{}
	a {
		color: var(--wp--preset--color--accent-2);
		display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
        vertical-align: bottom;
	}
	
	.foo{}
	&:hover {
		a {
			color: var(--wp--preset--color--accent-4);
		}
		
		.foo{}
		&.post-navigation-link-previous,
		&.has-text-align-left {
			transform: translateX(-.5rem);
		}
		&.post-navigation-link-next,
		&.has-text-align-right {
			transform: translateX(.5rem);
		}
	}
}