.cg-event {
	margin: 0;
	background: #fff;
}

.cg-event-hero {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
}

.cg-event-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,.08) 25%,
		rgba(0,0,0,.72) 100%
	);
}

.cg-event-hero__inner {
	position: relative;
	z-index: 2;
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
	padding: 100px 0 70px;
	color: #fff;
}

.cg-event-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(3rem, 7vw, 6.5rem);
	line-height: .95;
	font-weight: 700;
	letter-spacing: -.04em;
}

.cg-event-hero__date {
	margin-top: 22px;
	font-size: 1.35rem;
	font-weight: 600;
}

.cg-event-main {
	width: min(1100px, calc(100% - 48px));
	margin: 0 auto;
	padding: 70px 0 100px;
}

.cg-event-meta {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.cg-event-meta__item {
	padding: 25px 25px 25px 0;
}

.cg-event-meta__label {
	display: block;
	margin-bottom: 6px;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	opacity: .6;
}

.cg-event-meta__item strong {
	font-size: 1.05rem;
	font-weight: 600;
}

.cg-event-booking {
	margin: 38px 0;
}

.cg-event-button {
	display: inline-block;
	padding: 16px 30px;
	background: #111;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 600;
	transition: .2s ease;
}

.cg-event-button:hover {
	background: #333;
	transform: translateY(-2px);
}

.cg-event-content {
	max-width: 800px;
	margin-top: 60px;
	font-size: 1.1rem;
	line-height: 1.75;
}

.cg-event-content > p:first-child {
	font-size: 1.3rem;
	line-height: 1.65;
}

.cg-event-program {
	margin-top: 70px;
}

.cg-event-program h2 {
	margin-bottom: 25px;
	font-size: 2.2rem;
}

.cg-event-program__row {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 25px;
	padding: 18px 0;
	border-top: 1px solid #ddd;
}

.cg-event-program__row:last-child {
	border-bottom: 1px solid #ddd;
}

.cg-event-program__time {
	font-weight: 700;
}

.cg-event-program__text p {
	margin: 0;
}

@media (max-width: 800px) {
	.cg-event-hero {
		min-height: 480px;
	}

	.cg-event-hero__inner,
	.cg-event-main {
		width: min(100% - 30px, 1100px);
	}

	.cg-event-meta {
		grid-template-columns: 1fr 1fr;
	}

	.cg-event-meta__item {
		padding: 18px 10px 18px 0;
	}

	.cg-event-program__row {
		grid-template-columns: 70px 1fr;
		gap: 15px;
	}
}

