/**
 * Shared page hero / breadcrumb banner
 * Used on: pages, posts, categories, shop, product detail, etc.
 */

.c8-page-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 340px;
	margin-bottom: 40px;
	padding: 50px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #e8e4de;
}

.c8-page-hero__title {
	margin: 0 0 0.5rem;
	text-align: center;
	font-family: var(--c8-font-display, Lora, Georgia, serif);
	font-size: clamp(2rem, 1.5rem + 2vw, 3.125rem);
	font-weight: 600;
	color: #121f38;
	line-height: 1.2;
}

.c8-page-hero__breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	font-size: 0.9375rem;
	color: #121f38;
}

.c8-page-hero__breadcrumb a {
	color: #121f38;
	text-decoration: none;
}

.c8-page-hero__breadcrumb a:hover {
	color: #9a563a;
}

.c8-page-hero__sep {
	color: #121f38;
	opacity: 0.75;
}

.c8-page-hero__current {
	color: #9a563a;
	font-weight: 500;
}

@media (max-width: 991px) {
	.c8-page-hero {
		min-height: 150px;
		padding: 20px 0;
		margin-bottom: 20px;
		background-position: center left;
	}

	.c8-page-hero__title {
		font-size: 1.5rem;
	}
}
