.wgbc-single-event-page {
	--single-event-navy: #0f2a4e;
	--single-event-navy-dark: #0b1f3a;
	--single-event-gold: #d5a21d;
	--single-event-bg: #f7f8fb;
	--single-event-surface: #ffffff;
	--single-event-text: #111827;
	--single-event-muted: #64748b;
	--single-event-border: rgba(15, 42, 78, 0.14);
	background: var(--single-event-bg);
	color: var(--single-event-text);
	font-family: "Open Sans", Arial, sans-serif;
	padding: clamp(28px, 5vw, 56px) 0 72px;
}

.wgbc-single-event-page *,
.wgbc-single-event-page *::before,
.wgbc-single-event-page *::after {
	box-sizing: border-box;
}

.wgbc-single-event-shell {
	width: min(92%, 1160px);
	margin: 0 auto;
}

.wgbc-single-event-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	gap: 24px;
	align-items: stretch;
	margin-bottom: 20px;
}

.wgbc-single-event-hero__copy,
.wgbc-single-event-hero__image,
.wgbc-single-event-card {
	border: 1px solid var(--single-event-border);
	border-radius: 8px;
	background: var(--single-event-surface);
	box-shadow: 0 10px 26px rgba(15, 42, 78, 0.07);
	overflow: hidden;
}

.wgbc-single-event-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(24px, 4vw, 42px);
}

.wgbc-single-event-eyebrow {
	margin: 0 0 8px;
	color: var(--single-event-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.09em;
	line-height: 1.2;
	text-transform: uppercase;
}

.wgbc-single-event-title {
	margin: 0;
	color: var(--single-event-navy-dark);
	font-size: clamp(32px, 4.4vw, 54px);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.05;
}

.wgbc-single-event-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-top: 16px;
	color: var(--single-event-muted);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.35;
	text-transform: uppercase;
}

.wgbc-single-event-venue {
	margin: 14px 0 0;
	color: var(--single-event-navy);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.45;
}

.wgbc-single-event-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.wgbc-single-event-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 15px;
	border: 1px solid rgba(15, 42, 78, 0.22);
	border-radius: 8px;
	background: #fff;
	color: var(--single-event-navy);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.wgbc-single-event-button:hover,
.wgbc-single-event-button:focus {
	background: #f2f6fb;
	color: var(--single-event-navy);
}

.wgbc-single-event-button--primary {
	border-color: var(--single-event-navy);
	background: var(--single-event-navy);
	color: #fff;
}

.wgbc-single-event-button--primary:hover,
.wgbc-single-event-button--primary:focus {
	background: var(--single-event-navy-dark);
	color: #fff;
}

.wgbc-single-event-button:focus-visible {
	outline: 3px solid rgba(15, 42, 78, 0.24);
	outline-offset: 3px;
}

.wgbc-single-event-hero__image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.wgbc-single-event-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
	gap: 20px;
	align-items: start;
}

.wgbc-single-event-card {
	padding: clamp(20px, 3vw, 30px);
}

.wgbc-single-event-card h2 {
	margin: 0 0 16px;
	color: var(--single-event-navy-dark);
	font-size: 20px;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.25;
}

.wgbc-single-event-prose {
	color: #334155;
	font-size: 16px;
	line-height: 1.75;
}

.wgbc-single-event-prose > *:first-child {
	margin-top: 0;
}

.wgbc-single-event-prose > *:last-child {
	margin-bottom: 0;
}

.wgbc-single-event-prose img,
.wgbc-single-event-prose iframe {
	max-width: 100%;
}

.wgbc-single-event-sidebar {
	position: sticky;
	top: 24px;
}

.wgbc-single-event-list {
	display: grid;
	gap: 14px;
	margin: 0 0 18px;
}

.wgbc-single-event-list div {
	display: grid;
	gap: 4px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(15, 42, 78, 0.10);
}

.wgbc-single-event-list div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.wgbc-single-event-list dt {
	color: var(--single-event-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-transform: uppercase;
}

.wgbc-single-event-list dd {
	margin: 0;
	color: var(--single-event-navy-dark);
	font-size: 15px;
	font-weight: 750;
	line-height: 1.5;
}

@media (max-width: 980px) {
	.wgbc-single-event-hero,
	.wgbc-single-event-layout {
		grid-template-columns: 1fr;
	}

	.wgbc-single-event-sidebar {
		position: static;
	}
}

@media (max-width: 640px) {
	.wgbc-single-event-page {
		padding-top: 24px;
	}

	.wgbc-single-event-actions,
	.wgbc-single-event-button {
		width: 100%;
	}

	.wgbc-single-event-hero__image img {
		min-height: 260px;
	}
}
