
/* Page stylesheet for Bojanalaplatinum page
	 - Mobile-first
	 - Scoped to `body.easterncape` where present in the HTML
*/

body.easterncape .hero {
	background: linear-gradient(180deg, #0b5a7a 0%, #06384e 100%);
	color: #fff;
	padding: 28px 16px;
	text-align: center;
}

body.easterncape .hero h1 {
	margin: 0;
	font-size: 20px;
	line-height: 1.15;
	letter-spacing: 0.6px;
}

/* Navbar tweaks to keep visual weight consistent with global nav */
body.easterncape .navbar {
	background-color: hsl(0,0%,20%);
}

body.easterncape .province-content {
	padding: 14px 12px;
}

body.easterncape .province-meta ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}

body.easterncape .province-meta a {
	color: #0b5a7a;
	text-decoration: none;
	padding: 8px 10px;
	display: inline-block;
	border-radius: 4px;
}

body.easterncape .province-meta a:hover {
	background: rgba(11,90,122,0.08);
	text-decoration: underline;
}

/* Footer alignment (page-specific small adjustments) */
body.easterncape footer .container {
	gap: 10px;
}

/* Wider screens: show province links side-by-side */
@media (min-width: 768px) {
	body.easterncape .hero h1 {
		font-size: 28px;
	}

	body.easterncape .province-meta ul {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px;
	}

	body.easterncape .province-content {
		padding: 20px 28px;
	}
}

/* Accessibility helpers */
body.easterncape .province-meta a:focus {
	outline: 3px solid rgba(11,90,122,0.25);
	outline-offset: 2px;
}

/* End of bojanalaplatinum.css */