/*
 * INHALTSVERZEICHNIS
 *	1. Wrapper
 *
 */


/* ================================================== */
/* 1. Wrapper */
/* -------------------------------------------------- */
/* #=#=#=#=#=# 1.1 Container #=#=#=#=#=# */
.cvh--post_navigation-ctn {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: stretch;
	column-gap: var(--cvh-space-m);
}

.cvh--post_navigation-ctn > div {
	flex-basis: 50%;
}


/* #==== Directions ====# */
.cvh--post_navigation-ctn[data-post-nav-direction="prev"] {
	justify-content: start;
}


/* #=#=#=#=#=# 1.2 Breakpoint #=#=#=#=#=# */
@media screen and (max-width: 1199px) {
	.cvh--post_navigation-ctn {
		flex-direction: column;
		margin-inline: calc(var(--cvh-sec-space-x) * -1);
	}
}