/**
 * Page Banner - First section after header
 * Full-width banner with editable background image and title
 */

.page-banner {
	position: relative;
	min-height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #1a1a1a;
}

.page-banner__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.page-banner__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.page-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

.page-banner__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 60px 24px 50px;
}

.page-banner__description {
	margin-top: 14px;
	color: #fff;
}

@media (min-width: 768px) {
	.page-banner {
		min-height: 430px;
	}
	.page-banner__inner {
		padding: 80px 24px 70px;
		margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
	}

	.page-banner__description {
		margin-top: 24px;
	}
}

.page-banner__title {
	font-family: "Playfair Display", Georgia, serif;
	color: #fff;
	font-size: 38px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
	.page-banner__title {
		font-size: 30px;
	}
}

