/*
 * Timeline archive + single styles.
 * Alternating left/right cards on a vertical centre axis with year markers.
 */

html {
	scroll-behavior: smooth;
}

.timeline-year {
	/* offset so the sticky header / ribbon don't cover the year on jump */
	scroll-margin-top: 220px;
}

.timeline-event {
	scroll-margin-top: 200px;
}

#page-heading.timeline-page-heading {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.6rem;
}

#page-heading.timeline-page-heading h1 {
	margin-bottom: 0;
}

.timeline-page-heading .archive-summary {
	color: #777;
	font-family: 'gotham_mediumregular';
	font-size: 0.82em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.timeline-intro {
	max-width: 880px;
	color: #4f4f4f;
	margin: 0 0 1.25rem;
	font-size: 0.98em;
	line-height: 1.55;
}

/* Year ribbon — compact density-coded year jump */
.timeline-ribbon {
	position: sticky;
	top: 72px;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	z-index: 5;
	padding: 0.45rem 0 0.35rem;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #e8e8e8;
	margin: 0 0 1.1rem;
	overflow-x: auto;
	scrollbar-width: thin;
}

.timeline-ribbon__inner {
	display: flex;
	gap: 4px;
	min-width: max-content;
	align-items: stretch;
	padding: 0 0 0.25rem;
}

.timeline-ribbon__year {
	flex: 0 0 24px;
	display: grid;
	grid-template-rows: 38px 14px;
	justify-items: center;
	cursor: pointer;
	color: #777;
	text-decoration: none;
	font-size: 0.66em;
	letter-spacing: 0.02em;
	line-height: 1;
}

/* Bar bottom-aligned so it grows upward; row is fixed 50px so all bars share baseline */
.timeline-ribbon__bar {
	grid-row: 1;
	width: 12px;
	background: linear-gradient(to top, #d4a017, #f3d47a);
	border-radius: 2px 2px 0 0;
	min-height: 4px;
	align-self: end;
	transition: filter 0.15s ease;
}

.timeline-ribbon__label {
	grid-row: 2;
	align-self: start;
	padding-top: 4px;
	white-space: nowrap;
	font-family: 'gotham_mediumregular';
}

.timeline-ribbon__year:hover .timeline-ribbon__bar { filter: brightness(0.9); }

.timeline-ribbon__year.is-empty .timeline-ribbon__bar {
	background: #f0f0f0;
}

.timeline-ribbon__year.is-active {
	color: #111;
	font-weight: bold;
}

.timeline-ribbon__year.is-active .timeline-ribbon__bar {
	background: linear-gradient(to top, #111, #555);
}

.timeline-eras {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.5rem;
	margin: 0 0 1.2rem;
}

.timeline-era {
	padding: 0.65rem 0.75rem;
	background: #fff;
	color: #1a1a1a;
	border: 1px solid #dfdfdf;
	border-left: 3px solid #d4a017;
	border-radius: 0;
	text-decoration: none;
	font-size: 0.82em;
	font-family: 'gotham_mediumregular';
	text-align: left;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.timeline-era:hover {
	background: #d4a017;
	border-color: #d4a017;
	color: #fff;
}

.timeline-era__name {
	display: block;
	color: #111;
}

.timeline-era__years {
	display: block;
	font-family: 'gotham_lightregular';
	font-size: 10px;
	line-height: 1;
	margin-top: 2px;
	color: #888;
}

.timeline-era:hover .timeline-era__name,
.timeline-era:hover .timeline-era__years {
	color: #fff;
}

@media (max-width: 1100px) {
	.timeline-eras { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
	.timeline-eras { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Vertical alternating timeline */
.timeline-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	position: relative;
}

.timeline-list::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: #e8e8e8;
	transform: translateX(-50%);
}

@media (max-width: 720px) {
	.timeline-list::before {
		left: 24px;
	}
}

/* Year markers */
.timeline-year {
	display: flex;
	justify-content: center;
	margin: 2rem 0 1rem;
	position: relative;
	z-index: 2;
}

.timeline-year span {
	background: #111;
	color: #fff;
	padding: 0.4rem 1.2rem;
	font-family: 'gotham_mediumregular';
	letter-spacing: 0.1em;
	font-size: 0.95em;
	border-radius: 999px;
}

@media (max-width: 720px) {
	.timeline-year { justify-content: flex-start; padding-left: 0; }
	.timeline-year span { margin-left: 0; }
}

/* Event cards alternating — date sits ABOVE the card on the same side */
.timeline-event {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 60px 1fr;
	grid-template-rows: auto auto;
	gap: 0;
	margin: 0.9rem 0;
}

@media (max-width: 720px) {
	.timeline-event {
		grid-template-columns: 48px 1fr;
		grid-template-rows: auto auto;
		gap: 0.25rem 0.75rem;
	}
}

.timeline-event::before {
	content: '';
	position: absolute;
	top: 0.5rem;
	left: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #d4a017;
	border: 3px solid #fff;
	box-shadow: 0 0 0 2px #d4a017;
	transform: translateX(-50%);
	z-index: 2;
}

@media (max-width: 720px) {
	.timeline-event::before {
		left: 24px;
		top: 0.75rem;
	}
}

.timeline-event--allegation::before {
	background: #b80000;
	box-shadow: 0 0 0 2px #b80000;
}

/* Default (odd): card on RIGHT, date on RIGHT above it */
.timeline-event__date {
	grid-column: 3;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 0 0.28rem 1.25rem;
	font-family: 'gotham_mediumregular';
	color: #333;
	font-size: 0.9em;
}

.timeline-event__body {
	grid-column: 3;
	grid-row: 2;
	background: #fff;
	border: 1px solid #ddd;
	border-top: 3px solid #d4a017;
	border-radius: 0;
	padding: 0.95rem 1.05rem;
	box-shadow: none;
	margin-left: 1.25rem;
	display: flex;
	flex-direction: row-reverse;
	align-items: stretch;
	gap: 1rem;
}

.timeline-event__body > .timeline-event__main {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

/* Even: card on LEFT, date on LEFT above it */
.timeline-event--left .timeline-event__date {
	grid-column: 1;
	grid-row: 1;
	align-items: flex-end;
	padding: 0 1.25rem 0.4rem 0;
}

.timeline-event--left .timeline-event__body {
	grid-column: 1;
	grid-row: 2;
	margin-left: 0;
	margin-right: 1.25rem;
	flex-direction: row;
	text-align: right;
}

.timeline-event--left .timeline-event__main {
	align-items: flex-end;
}

.timeline-event--left .timeline-event__head {
	justify-content: flex-end;
}

.timeline-event--left .timeline-event__meta {
	justify-content: flex-end;
}

/* Hide date label on consecutive same-date events (visually only) */
.timeline-event--same-date .timeline-event__date {
	visibility: hidden;
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
}

/* Year markers hidden by JS when no events for that year are visible (filter active) */
.timeline-year.is-empty {
	display: none;
}

@media (max-width: 720px) {
	.timeline-event,
	.timeline-event--left {
		grid-template-columns: 48px 1fr;
	}
	.timeline-event__date,
	.timeline-event--left .timeline-event__date {
		grid-column: 2;
		grid-row: 1;
		padding: 0 0 0.3rem 0;
		align-items: flex-start;
		font-size: 0.85em;
		color: #888;
	}
	.timeline-event__body,
	.timeline-event--left .timeline-event__body {
		grid-column: 2;
		grid-row: 2;
		text-align: left;
		margin: 0;
	}
}

.timeline-event__day {
	font-family: 'gotham_mediumregular';
	color: #111;
}

.timeline-event__range {
	color: #888;
	font-size: 0.85em;
	margin-top: 0.2em;
}

.timeline-event__cover {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	display: block;
	border-radius: 3px;
	overflow: hidden;
	margin: 0;
	align-self: start;
}

.timeline-event__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.timeline-event__head {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-bottom: 0.5em;
}

.timeline-event__cat {
	display: inline-flex;
	align-items: center;
	background: #fffdf3;
	color: #8a6a24;
	border: 1px solid #d9bf72;
	padding: 0.28em 0.62em;
	border-radius: 999px;
	font-size: 0.66em;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-family: 'gotham_mediumregular';
}

.timeline-event--allegation .timeline-event__cat {
	background: #fff5f5;
	color: #b80000;
	border-color: #b80000;
}

.timeline-event__alleg-badge {
	display: inline-flex;
	align-items: center;
	background: #b80000;
	color: #fff;
	padding: 0.3em 0.7em;
	border-radius: 999px;
	font-size: 0.7em;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-family: 'gotham_mediumregular';
}

.timeline-event__title {
	margin: 0 0 0.35em;
	font-size: 1.12em;
	line-height: 1.25;
}

.timeline-event__title a {
	color: #111;
	text-decoration: none;
}

.timeline-event__title a:hover {
	color: #8a6a24;
}

.timeline-event__summary {
	margin: 0 0 0.55em;
	color: #3f3f3f;
	font-size: 0.94em;
	line-height: 1.48;
}

.timeline-event__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1rem;
	font-size: 0.85em;
	color: #888;
	align-items: center;
}

.timeline-event--left .timeline-event__meta {
	justify-content: flex-end;
}

@media (max-width: 720px) {
	.timeline-event--left .timeline-event__meta { justify-content: flex-start; }
}

.timeline-event__location::before { content: ''; }

.timeline-event__link {
	color: #535353;
	text-decoration: none;
	border-bottom: 1px dotted #ccc;
}

.timeline-event__link:hover {
	color: #d4a017;
	border-color: #d4a017;
}

.timeline-event__source {
	color: #888;
	text-decoration: none;
	font-size: 0.85em;
}

.timeline-event__source:hover { color: #111; }

.timeline-event__signals {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.45rem;
}

.timeline-event--left .timeline-event__signals {
	justify-content: flex-end;
}

.timeline-event__people-stack {
	display: flex;
	flex-wrap: nowrap;
	margin-top: 0.55rem;
}

.timeline-event--left .timeline-event__people-stack {
	justify-content: flex-end;
}

.timeline-event__people-stack a,
.timeline-event__people-more {
	align-items: center;
	background: #efefef;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
	color: #777;
	display: flex;
	font-family: 'gotham_mediumregular';
	font-size: 0.62rem;
	height: 30px;
	justify-content: center;
	letter-spacing: 0;
	margin-right: -7px;
	overflow: hidden;
	text-decoration: none;
	width: 30px;
}

.timeline-event--left .timeline-event__people-stack a,
.timeline-event--left .timeline-event__people-more {
	margin-left: -7px;
	margin-right: 0;
}

.timeline-event__people-stack img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.timeline-event__people-stack a:hover {
	transform: translateY(-1px);
	z-index: 2;
}

.timeline-event__signal {
	background: #f3f3f3;
	border: 1px solid #e7e7e7;
	border-radius: 999px;
	color: #777;
	font-family: 'gotham_mediumregular';
	font-size: 0.68em;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 0.35rem 0.55rem;
	text-transform: uppercase;
}

@media (max-width: 720px) {
	.timeline-event--left .timeline-event__signals { justify-content: flex-start; }
	.timeline-event--left .timeline-event__people-stack { justify-content: flex-start; }
	.timeline-event--left .timeline-event__people-stack a,
	.timeline-event--left .timeline-event__people-more {
		margin-left: 0;
		margin-right: -7px;
	}
}

/* Allegations toggle visual */
.archive-tab--allegations {
	background: #fff5f5;
	color: #b80000;
}

.archive-tab--allegations.active {
	background: #b80000;
	color: #fff;
}

/* Single timeline event — uses album single layout (cover / main / sidebar)
   plus a second row where the About write-up spans cover+main, with the
   sidebar (video + gallery) running down the right across both rows. */
.timeline-event-single {
	margin: 0 auto;
}

.timeline-event-single #album-layout {
	grid-template-columns: 300px minmax(0, 1fr) 360px;
	grid-template-areas:
		"cover main  sidebar"
		"media media sidebar";
	gap: 1.5rem 2.5rem;
	margin-bottom: 2.5rem;
}

.timeline-event-single #album-layout > .album-cover {
	grid-area: cover;
	width: 100%;
	max-width: 300px;
}

.timeline-event-single #album-layout > .album-main {
	grid-area: main;
	min-width: 0;
}

.timeline-event-single #album-layout > .album-sidebar {
	grid-area: sidebar;
	min-width: 0;
}

.timeline-event-single .album-about {
	grid-area: about;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #eee;
}

.timeline-event-single .album-about__heading {
	font-family: 'gotham_mediumregular';
	font-size: 1.4em;
	margin: 0 0 1rem;
	scroll-margin-top: 100px;
}

.timeline-event-single .album-about__body {
	font-size: 1em;
	line-height: 1.6;
}

.timeline-event-single .album-about__body p { margin: 0 0 1em; }

.timeline-event-primary-video {
	background: #f5f5f5;
	border: 1px solid #e2e2e2;
	display: grid;
	gap: 1.5rem;
	grid-area: media;
	grid-template-columns: 220px minmax(0, 1fr);
	margin-top: 0.5rem;
	padding: 1.25rem;
}

.timeline-event-primary-video__head h2 {
	color: #535353;
	font-family: 'gotham_mediumregular';
	font-size: 0.95em;
	letter-spacing: 0.08em;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.timeline-event-primary-video__head p {
	color: #535353;
	font-size: 0.92em;
	line-height: 1.5;
	margin: 0;
}

.timeline-event-tabs-wrap {
	margin-top: 2.5rem;
}

.timeline-event-tab-copy {
	max-width: 760px;
}

.timeline-event-facts,
.timeline-event-quick dl {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	gap: 0.55rem 1rem;
	margin: 1.5rem 0 0;
}

.timeline-event-facts dt,
.timeline-event-quick dt {
	color: #888;
	font-family: 'gotham_mediumregular';
	font-size: 0.72em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.timeline-event-facts dd,
.timeline-event-quick dd {
	color: #222;
	margin: 0;
}

.timeline-event-facts a,
.timeline-event-quick a {
	color: inherit;
	text-decoration: none;
}

.timeline-event-facts a:hover,
.timeline-event-quick a:hover {
	text-decoration: underline;
}

.timeline-event-quick dl {
	margin-top: 0;
}

.timeline-event-aside-button {
	border: 1px solid #ddd;
	color: #111;
	display: inline-block;
	font-family: 'gotham_mediumregular';
	font-size: 0.78em;
	letter-spacing: 0.08em;
	margin-top: 0.75rem;
	padding: 0.7rem 0.9rem;
	text-decoration: none;
	text-transform: uppercase;
}

.timeline-event-aside-button:hover {
	background: #111;
	border-color: #111;
	color: #fff;
}

.timeline-event-setlist {
	margin-top: 1.75rem;
}

.timeline-event-setlist__head {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.timeline-event-setlist__head .album-about__heading {
	margin-bottom: 0;
}

.timeline-event-setlist__head a {
	color: #8a6a24;
	font-family: 'gotham_mediumregular';
	font-size: 0.78em;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.timeline-event-setlist__head a:hover {
	color: #111;
	text-decoration: underline;
}

.timeline-event-setlist__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.timeline-event-setlist__list li {
	align-items: center;
	display: grid;
	grid-template-columns: 3rem minmax(0, 1fr);
	min-height: 46px;
	padding: 0.65rem 0.9rem;
}

.timeline-event-setlist__list li:nth-child(odd) {
	background: #f1f1f1;
}

.timeline-event-setlist__no {
	color: #999;
	font-size: 0.82em;
	font-variant-numeric: tabular-nums;
}

.timeline-event-setlist__title {
	color: #222;
	font-family: 'gotham_mediumregular';
	line-height: 1.25;
}

.timeline-event-setlist__title a {
	color: inherit;
	text-decoration: none;
}

.timeline-event-setlist__title a:hover {
	text-decoration: underline;
}

.timeline-event-setlist__title em {
	color: #888;
	display: block;
	font-family: 'gotham_bookregular';
	font-size: 0.86em;
	font-style: normal;
	margin-top: 0.15rem;
}

.timeline-event-around__intro {
	color: #777;
	margin: 0 0 1rem;
}

.timeline-event-around ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.timeline-event-around li {
	border-bottom: 1px solid #eee;
	display: grid;
	gap: 1rem;
	grid-template-columns: 7rem minmax(0, 1fr);
	padding: 0.75rem 0;
}

.timeline-event-around span {
	color: #888;
	font-family: 'gotham_mediumregular';
	font-size: 0.8em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.timeline-event-around a {
	color: #111;
	font-family: 'gotham_mediumregular';
	text-decoration: none;
}

.timeline-event-around a:hover {
	text-decoration: underline;
}

.timeline-event-people-list {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.timeline-event-people-list a {
	align-items: center;
	color: #111;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 52px minmax(0, 1fr);
	text-decoration: none;
}

.timeline-event-people-list img,
.timeline-event-people-list__placeholder {
	aspect-ratio: 1 / 1;
	background: #eee;
	border-radius: 50%;
	display: block;
	object-fit: cover;
	width: 52px;
}

.timeline-event-people-list__placeholder {
	align-items: center;
	background: #efefef;
	color: #8a8a8a;
	display: flex;
	font-family: 'gotham_mediumregular';
	font-size: 0.78rem;
	justify-content: center;
	letter-spacing: 0;
}

.timeline-event-people-list span {
	font-family: 'gotham_mediumregular';
}

.timeline-event-people-list a:hover span {
	text-decoration: underline;
}

@media (max-width: 1200px) {
	.timeline-event-single #album-layout {
		grid-template-columns: 280px minmax(0, 1fr);
		grid-template-areas:
			"cover main"
			"media media"
			"sidebar sidebar";
	}
}

@media (max-width: 720px) {
	.timeline-event-single #album-layout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"cover"
			"main"
			"media"
			"sidebar";
	}

	.timeline-event-primary-video {
		grid-template-columns: 1fr;
	}

	.timeline-event-single #album-layout > .album-cover {
		max-width: none;
	}
}

/* About section sits inside the album-main column so the gallery on the right stays alongside it. */
.timeline-event-about {
	margin: 1.5rem 0 0;
	padding-top: 1.5rem;
	border-top: 1px solid #eee;
}

.timeline-event-about__heading {
	font-family: 'gotham_mediumregular';
	font-size: 1.4em;
	margin: 0 0 1rem;
}

.timeline-event-about__body {
	font-size: 1em;
	line-height: 1.6;
	max-width: 720px;
}

.timeline-event-about__body p { margin: 0 0 1em; }

.timeline-event-single__date {
	font-size: 0.95em;
	color: #888;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

.timeline-event-single__cat {
	display: inline-block;
	background: #fffdf3;
	color: #b8870e;
	border: 1px solid #d4a017;
	padding: 0.2em 0.8em;
	border-radius: 999px;
	font-size: 0.75em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1rem;
	font-family: 'gotham_mediumregular';
}

/* --- 3-col layout — mirrors the album single page (cover / main / sidebar) - */
.timeline-event-single__layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr) 420px;
	grid-template-areas: "cover main sidebar";
	gap: 3rem 2.5rem;
	align-items: start;
	margin: 0 0 3rem;
}

.timeline-event-single__cover   { grid-area: cover; }
.timeline-event-single__main    { grid-area: main; min-width: 0; }
.timeline-event-single__sidebar { grid-area: sidebar; }

@media (max-width: 1200px) {
	.timeline-event-single__layout {
		grid-template-columns: 280px minmax(0, 1fr);
		grid-template-areas:
			"cover main"
			"sidebar sidebar";
	}
}

@media (max-width: 720px) {
	.timeline-event-single__layout {
		grid-template-columns: 1fr;
		grid-template-areas: "cover" "main" "sidebar";
	}
}

.timeline-event-single__cover {
	margin: 0;
}

.timeline-event-single__cover img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 4px;
	background: #f5f5f5;
}

.timeline-event-single__cover-placeholder {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #f3f3f3;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'gotham_mediumregular';
	font-size: 0.8em;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 4px;
	text-align: center;
	padding: 1rem;
}

.timeline-event-single__main {
	min-width: 0;
}

/* --- Summary --------------------------------------------------- */
.timeline-event-single__summary {
	font-size: 1.15em;
	line-height: 1.5;
	color: #333;
	margin: 0 0 1.25rem;
}

/* --- Section headings (Videos, Photo gallery) ---------------------- */
.timeline-event-single__section-head {
	font-family: 'gotham_mediumregular';
	font-size: 0.95em;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #888;
	margin: 0 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #e6e6e6;
}

.timeline-event-single__sidebar > section + section {
	margin-top: 2rem;
}

/* --- Videos block --------------------------------------------------- */
.timeline-event-single__videos {
	margin: 0 0 1.5rem;
}

.timeline-event-single__video-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.timeline-event-single__video-item {
	margin: 0;
}

.timeline-event-single__video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	background: #000;
	border-radius: 4px;
	overflow: hidden;
}

.timeline-event-single__video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.timeline-event-single__video-item figcaption {
	font-family: 'gotham_mediumregular';
	font-size: 0.85em;
	color: #6b6b6b;
	margin-top: 0.5rem;
}

.timeline-event-videos-grid {
	list-style: none;
	padding: 0;
	margin: 0;
}

.timeline-event-videos-grid__item {
	display: block;
}

/* --- Photo gallery --------------------------------------------------- */
.timeline-event-single__gallery {
	margin: 0 0 2rem;
}

.timeline-event-single__gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

@media (max-width: 720px) { .timeline-event-single__gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.timeline-event-single__gallery-item {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 2px;
	background: #f0f0f0;
	transition: transform 0.18s ease;
}

.timeline-event-single__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.timeline-event-single__gallery-item:hover {
	transform: translateY(-2px);
}

.timeline-event-single__body {
	font-size: 1.05em;
	line-height: 1.7;
	color: #222;
	margin: 1rem 0 2rem;
}

.timeline-event-single__related {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #eee;
}

.timeline-event-single__related h3 {
	font-family: 'gotham_mediumregular';
	font-size: 0.85em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #888;
	margin: 0 0 0.7em;
}

.timeline-event-single__related-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.timeline-event-single__related-list a {
	display: inline-block;
	background: #f0f0f0;
	color: #535353;
	padding: 0.3em 0.8em;
	border-radius: 999px;
	text-decoration: none;
	font-size: 0.9em;
}

.timeline-event-single__related-list a:hover {
	background: #d4a017;
	color: #fff;
}

.timeline-event-contribute-list {
	margin: -0.25rem 0 1rem;
	padding-left: 1.1rem;
	color: #666;
	font-size: 0.84rem;
	line-height: 1.55;
}

.timeline-event-contribute-list li {
	margin: 0.25rem 0;
}

/* Fan submission CTA on timeline event singles */
.timeline-submit {
	margin: 2.5rem 0 1rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, #fffdf3 0%, #fef5d7 100%);
	border: 1px dashed #d4a017;
	border-radius: 6px;
}

.timeline-submit h3 {
	margin: 0 0 0.5em;
	font-size: 1.05em;
	color: #111;
	font-family: 'gotham_mediumregular';
}

.timeline-submit p {
	margin: 0 0 1em;
	font-size: 0.95em;
	color: #444;
	line-height: 1.5;
}

.timeline-submit__button {
	display: inline-block;
	background: #111;
	color: #fff !important;
	padding: 0.6rem 1.2rem;
	border-radius: 999px;
	text-decoration: none;
	font-family: 'gotham_mediumregular';
	font-size: 0.9em;
}

.timeline-submit__button:hover {
	background: #d4a017;
	color: #fff !important;
}
