.post-side-nav {
	position: sticky;
	top: 230px;
	padding: 34px 75px;
	height: 100%;
	text-align: center;
}

.post-side-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-side-nav li {
	margin-bottom: 34px;
}

.post-side-nav a {
	color: #333;
	text-decoration: none;
}

.post-side-nav a.active {
	color: #8b4545;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: from-font;
}

.post-category-section:not(:first-of-type) {
	border-top: 1px solid #95282c;
	margin-top: 27px;
	padding-top: 32px;
}

.post-recipes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.post-recipes-grid img {
	width: 100%;
}

/* MODAL */
.post-video-modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 9999;
}

.post-video-modal.active {
	display: block;
}

.post-video-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
}

.post-video-content {
	position: relative;
	max-width: 900px;
	width: 90%;
	aspect-ratio: 16 / 9;
	margin: 5% auto;
	background: #000;
}

.post-video-content iframe {
	width: 100%;
	height: 100%;
}

.post-video-close {
	position: absolute;
	top: -40px;
	right: 0;
	font-size: 36px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
}

.post-category-section {
	scroll-margin-top: 186px; /* desktop header height */
}

/* Responsive */
@media (max-width: 1024px) {
	.post-side-nav {
		position: relative;
		top: 0;
		margin-bottom: 40px;
	}
}
