/* ==========================================================================
   Simply Events — Single Event Page
   ========================================================================== */

/* --- Header: 2-column grid ----------------------------------------------- */

.se-single-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

/* Left column: square image */
.se-single-header__image {
	position: relative;
	aspect-ratio: 4 / 3;
	align-self: start;
	overflow: hidden;
}

/* Photo credit — overlaid bottom-left of image */
.se-single-header__credit {
	position: absolute;
	bottom: 16px;
	left: 16px;
	font-size: 12px;
	line-height: 1.7;
	color: var(--client-heading, #1a1a1a);
}

.se-single-header__credit strong {
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.se-single-header__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Right column: content */
.se-single-header__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	padding: 48px 56px;
}

.se-single-header__eyebrow {
	margin: 0;
}

.se-single-header__eyebrow + .se-single-header__title {
	margin-top: -16px;
}

.se-single-header__title {
	margin: 0;
	font-family: var(--client-font-display, inherit);
	color: var(--client-heading, inherit);
	line-height: 1.15;
}

.se-single-header__dates {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin: 0;
	font-size: 1rem;
}

.se-single-header__location-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.se-single-header__location-logo {
	height: 32px;
	width: auto;
	object-fit: contain;
	flex-shrink: 0;
}

.se-single-header__location {
	margin: 0;
}

.se-single-header__location a {
	color: inherit;
	text-decoration: none;
}

.se-single-header__location a:hover {
	opacity: 0.7;
}

.se-single-header__buttons {
	align-self: flex-start;
}

/* --- Body content --------------------------------------------------------- */

.se-single-body {
	width: 100%;
}

/* --- Related events section ----------------------------------------------- */

.se-single-related {
	width: 100%;
}

.se-single-related__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;
}

@media ( max-width: 767px ) {
	.se-single-related__inner {
		padding: 48px 24px;
	}
}


/* --- Mobile: single column ------------------------------------------------ */

@media ( max-width: 767px ) {

	.se-single-header {
		grid-template-columns: 1fr;
	}

	.se-single-header__image {
		aspect-ratio: 4 / 3;
		clip-path: none;
	}

	.se-single-header__content {
		padding: 32px 24px;
		gap: 12px;
	}
}
