/* ==========================================
   PAGE HERO — section title area
   ========================================== */
.page-hero {
	background: var(--glass);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	padding: 22px 24px;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.page-hero h2 {
	margin-bottom: 4px;
}

.page-hero .subtitle {
	margin-bottom: 0;
}

.page-hero .muted {
	margin-top: 6px;
}

.page-hero nav {
	margin-bottom: 8px;
}

/* Hero with banner background image */
.page-hero--banner {
	background: linear-gradient(to bottom, rgba(11, 17, 32, 0.25), rgba(11, 17, 32, 0.55)), url('../../../_img/banniere.png') center/cover no-repeat;
	padding: 56px 24px;
	text-align: center;
}

.page-hero--banner h2 {
	font-size: var(--font-200);
	color: #ffffff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 4px rgba(0, 0, 0, 0.5);
}

.page-hero--banner .subtitle {
	font-size: var(--font-xl);
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6), 0 0 3px rgba(0, 0, 0, 0.4);
}

/* Hero with section header image */
.page-hero--section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 36px 24px;
	text-align: center;
}

.page-hero--section h2 {
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 4px rgba(0, 0, 0, 0.5);
}

.page-hero--section .subtitle {
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.page-hero--city {
	background-image: linear-gradient(to bottom, rgba(11, 17, 32, 0.2), rgba(11, 17, 32, 0.6)), url('../../../_img/sections/section_city_header.png');
}

/* ==========================================
   SECTION PAGE WRAPPER
   ========================================== */
.section-page {
	display: grid;
	gap: var(--gap-3xl);
}

/* ==========================================
   PAGE WRAPPER
   ========================================== */
.page {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	border-radius: 0;
}

.page > h2:first-child {
	margin-top: 0;
}

.page > h2 {
	display: inline-block;
	padding-bottom: 8px;
	margin-bottom: 10px;
	border-bottom: 2px solid var(--accent);
}

.page > .card + .card {
	margin-top: 0;
}

