/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 07 2026 | 04:56:38 */
.custom-post-navigation {
	display: flex;
	justify-content: space-between;
	margin: 2em 0;
	gap: 2em;
}
.custom-post-navigation a {
	display: flex;
	align-items: center;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	padding: 1em;
	border-radius: 8px;
	background: #fff;
	flex: 1;
	min-width: 0;
	transition: background 0.2s;
}
.custom-post-navigation a:hover {
	background: #f9f9f9;
}
.custom-post-navigation .nav-content {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.custom-post-navigation .nav-label {
	font-size: 0.85em;
	color: #888;
}
.custom-post-navigation .nav-title {
	font-weight: bold;
	color: #222;
	/* 	white-space: nowrap; */
	/* 	overflow: hidden; */
	/* 	text-overflow: ellipsis; */
}
.custom-post-navigation .nav-date {
	font-size: 0.80em;
	color: #aaa;
}
.custom-post-navigation .arrow {
	font-size: 2em;
	color: var(--e-global-color-primary);
	margin: 0;
	width: 120px;
	text-align: center;
}
.next-post .arrow {
	order: 2;
}
.prev-post .arrow {
	order: 0;
}
.custom-post-navigation a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 120px;
	padding: 0;
	overflow: hidden;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	justify-content: flex-start;
	max-width: calc(50% - 1em);

	&.next-post {
		margin-left: auto;
	}
}

.nav-thumb-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	border-radius: 8px 0 0 8px;
}

.next-post .nav-thumb-wrap {
	left: auto;
	right: 0;
	border-radius: 0 8px 8px 0;
}

.nav-thumb-wrap img.nav-thumb {
	width: 120px;
	height: 100%;
	object-fit: cover;
	opacity: 0.75;
	filter: brightness(0.25);
}

.custom-post-navigation .arrow {
	position: relative;
	z-index: 2;
	/* 	margin-left: 130px; */
	font-size: 2em;
	color: var(--e-global-color-primary);
}

.prev-post .nav-content, .next-post .nav-content {
	position: relative;
	z-index: 3;
	padding: 0.5em 1em;
	border-radius: 8px;
	width: calc(100% - 120px);
}

.next-post .nav-content {
	text-align: right;
}

.custom-post-navigation a:hover .nav-title {
/* 	color: var(--e-global-color-primary); */
}