 .related-recipes-carousel {
	padding: 3rem 1.25rem;
	margin-top: -2rem;
	background: #f8f7f5;
}

.related-recipes-carousel .container {
	max-width: 1200px;
	margin: 0 auto;
}

.related-recipes-carousel .section-heading {
	text-align: center;
	margin-bottom: 2rem;
}

.related-recipes-carousel .section-heading h2 {
	margin: 0 0 0.75rem;
	font-size: 2rem;
	line-height: 1.25;
	color: #1f1f1f;
}

.related-recipes-carousel .section-heading p {
	max-width: 780px;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
}

.carousel-shell {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.carousel-viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	flex: 1;
	border-radius: 0;
	scroll-snap-type: x mandatory;
}

.carousel-viewport::-webkit-scrollbar {
	display: none;
}

.carousel-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 1rem) / 3);
	gap: 0.75rem;
	padding-right: 12px;
}

.recipe-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	min-width: 0;
	height: 100%;
	scroll-snap-align: start;
}

.recipe-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.recipe-card-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f4f1eb;
}

.recipe-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.recipe-card:hover .recipe-card-image img,
.recipe-card:focus-within .recipe-card-image img {
	transform: scale(1.04);
}

.recipe-card-content {
	display: flex;
	flex-direction: column;
	padding: 1.25rem 1.2rem 1.4rem;
	flex: 1;
}

.recipe-card-content h3 {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
	line-height: 1.35;
	color: #1f1f1f;
}

.recipe-card-content p {
	margin: 0 0 1rem;
	font-size: 0.98rem;
	line-height: 1.7;
	color: #555;
	flex: 1;
}

.recipe-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	color: #ff5722;
	transition: color 0.2s ease;
}

.recipe-card-cta::after {
	content: "→";
	font-size: 1rem;
	line-height: 1;
}

.recipe-card:hover .recipe-card-cta,
.recipe-card:focus-within .recipe-card-cta {
	color: #032a68;
}

.carousel-btn {
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
	color: #3a2a14;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
	cursor: pointer;
	font-size: 1.2rem;
	line-height: 1;
	flex-shrink: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.carousel-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.carousel-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 1.25rem;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	background: rgba(58, 42, 20, 0.25);
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.carousel-dot.is-active {
	transform: scale(1.15);
	background: rgba(58, 42, 20, 0.85);
}

@media (max-width: 991px) {
	.carousel-track {
		grid-auto-columns: calc((100% - 1rem) / 2);
	}
}

@media (max-width: 768px) {
	.related-recipes-carousel {
		padding: 2.5rem 1rem;
	}

	.related-recipes-carousel .section-heading h2 {
		font-size: 1.6rem;
	}

	.carousel-shell {
		gap: 0.5rem;
	}

	.carousel-btn {
		width: 42px;
		height: 42px;
		font-size: 1rem;
	}

	.carousel-track {
		grid-auto-columns: 100%;
		gap: 0.75rem;
	}
}