/* ============================================================
   TXU Events - Event Detail Page CSS (Modern Editorial)
   Appended to events-public.css when on single event.
   ============================================================ */

.txu-detail {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 2rem 4rem;
	line-height: 1.7;
}

/* Breadcrumb */
.txu-detail-breadcrumb {
	padding: 1.5rem 0;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--txu-ink-muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.txu-detail-breadcrumb a {
	display: inline-flex; align-items: center; gap: 0.5rem;
	color: var(--txu-ink-soft);
	text-decoration: none;
	transition: color 250ms var(--txu-ease-out), gap 250ms var(--txu-ease-out);
}
.txu-detail-breadcrumb a:hover { color: var(--txu-navy-900); gap: 0.75rem; }
.txu-detail-breadcrumb a svg {
	width: 14px; height: 14px;
	stroke: currentColor; stroke-width: 2; fill: none;
	transition: transform 250ms var(--txu-ease-out);
}
.txu-detail-breadcrumb a:hover svg { transform: translateX(-3px); }

/* Hero */
.txu-event-hero {
	position: relative;
	height: 64vh;
	min-height: 480px;
	max-height: 720px;
	overflow: hidden;
	background: var(--txu-navy-900);
	margin: 0 -2rem;
}
.txu-hero-image {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: txuHeroFadeIn 1.2s var(--txu-ease-out) forwards;
}
@keyframes txuHeroFadeIn {
	from { opacity: 0; transform: scale(1.04); }
	to   { opacity: 1; transform: scale(1); }
}
.txu-event-hero::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to bottom,
		rgba(10,29,59,0.35) 0%,
		rgba(10,29,59,0.15) 40%,
		rgba(10,29,59,0.85) 100%);
}
.txu-hero-date {
	position: absolute;
	top: 2rem; left: 2rem;
	z-index: 2;
	background: var(--txu-paper);
	padding: 1rem 1.25rem;
	display: flex; flex-direction: column; align-items: center;
	border-left: 3px solid var(--txu-gold-500);
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
	opacity: 0;
	animation: txuHeroDateIn 800ms 400ms var(--txu-ease-out) forwards;
}
@keyframes txuHeroDateIn {
	from { opacity: 0; transform: translateY(-12px); }
	to   { opacity: 1; transform: translateY(0); }
}
.txu-hero-date .txu-month {
	font-weight: 700; font-size: 0.6875rem;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--txu-gold-600);
}
.txu-hero-date .txu-day {
	font-weight: 800; font-size: 2.5rem; line-height: 1;
	color: var(--txu-navy-900);
	letter-spacing: -0.04em; font-variant-numeric: tabular-nums;
}
.txu-hero-date .txu-weekday {
	font-weight: 500; font-size: 0.625rem;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--txu-ink-muted);
	margin-top: 0.25rem;
}
.txu-hero-content {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	z-index: 2;
	padding: 3rem 2rem;
	color: #fff;
	opacity: 0;
	animation: txuHeroTextIn 900ms 500ms var(--txu-ease-out) forwards;
}
@keyframes txuHeroTextIn {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}
.txu-hero-kicker {
	font-weight: 700; font-size: 0.6875rem;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--txu-gold-500);
	display: inline-flex; align-items: center; gap: 0.625rem;
	margin-bottom: 0.75rem;
}
.txu-hero-kicker::before {
	content: ''; display: inline-block;
	width: 24px; height: 1px; background: var(--txu-gold-500);
}
.txu-hero-title {
	font-family: var(--txu-font-display); font-weight: 700;
	font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05;
	letter-spacing: -0.025em;
	color: #fff;
	max-width: 880px;
	margin: 0 0 0.5rem;
}
.txu-hero-subtitle {
	font-family: var(--txu-font-display); font-style: italic; font-weight: 400;
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	color: rgba(255,255,255,0.85);
	max-width: 640px;
	line-height: 1.45;
	margin: 0.5rem 0 0;
}

/* Article body */
.txu-article-body { padding: 5rem 0 6rem; }
.txu-article-grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 5rem;
	align-items: start;
}
.txu-article-content {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--txu-ink-soft);
}
.txu-article-content > * {
	opacity: 0;
	animation: txuRevealUp 600ms var(--txu-ease-out) forwards;
}
.txu-article-content > *:nth-child(1) { animation-delay: 100ms; }
.txu-article-content > *:nth-child(2) { animation-delay: 180ms; }
.txu-article-content > *:nth-child(3) { animation-delay: 260ms; }
.txu-article-content > *:nth-child(4) { animation-delay: 340ms; }
.txu-article-content > *:nth-child(5) { animation-delay: 420ms; }
.txu-article-content > *:nth-child(n+6) { animation-delay: 500ms; }

.txu-article-content h2 {
	font-family: var(--txu-font-display); font-weight: 600;
	font-size: 1.875rem; line-height: 1.2;
	letter-spacing: -0.015em; color: var(--txu-navy-900);
	margin: 2.5rem 0 1rem;
}
.txu-article-content p { margin: 0 0 1.5rem; }
.txu-article-content strong { color: var(--txu-ink); font-weight: 600; }
.txu-article-content blockquote {
	font-family: var(--txu-font-display); font-style: italic; font-weight: 400;
	font-size: 1.875rem; line-height: 1.4;
	color: var(--txu-navy-900);
	margin: 3rem 0;
	padding: 1rem 0;
	text-align: center;
	border-top: 1px solid var(--txu-rule);
	border-bottom: 1px solid var(--txu-rule);
}

.txu-event-details-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem 2rem;
	margin: 2rem 0;
	padding: 1.5rem 0;
	border-top: 1px solid var(--txu-rule);
	border-bottom: 1px solid var(--txu-rule);
}
.txu-event-details-list li {
	display: flex; align-items: flex-start; gap: 0.875rem;
	font-size: 0.9375rem;
	color: var(--txu-ink-soft);
}
.txu-event-details-list li svg {
	width: 18px; height: 18px;
	stroke: var(--txu-gold-500); stroke-width: 1.75; fill: none;
	flex-shrink: 0; margin-top: 2px;
}
.txu-event-details-list li strong {
	display: block;
	font-weight: 600; font-size: 0.6875rem;
	letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--txu-ink-muted);
	margin-bottom: 0.25rem;
}

/* Sticky sidebar */
.txu-ticket-sidebar { position: sticky; top: 2rem; }
.txu-ticket-card {
	background: #fff;
	border: 1px solid var(--txu-rule);
	box-shadow: 0 4px 16px rgba(10,29,59,0.05);
}
.txu-ticket-card-header {
	padding: 1.5rem;
	border-bottom: 1px solid var(--txu-rule);
	background: var(--txu-paper-dark);
}
.txu-ticket-card-label {
	font-weight: 700; font-size: 0.625rem;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--txu-gold-600);
	margin-bottom: 0.5rem;
}
.txu-ticket-card-price {
	font-family: var(--txu-font-num); font-weight: 800;
	font-size: 2.5rem; line-height: 1;
	letter-spacing: -0.035em;
	color: var(--txu-navy-900);
	font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum' 1, 'ss01' 1, 'cv11' 1;
}
.txu-ticket-card-price .txu-currency {
	font-family: var(--txu-font-num); font-weight: 600;
	font-size: 1.125rem; vertical-align: top;
	color: var(--txu-ink-muted);
	margin-right: 0.1875rem;
	letter-spacing: 0;
	position: relative;
	top: 0.25rem;
}
.txu-ticket-card-price .txu-free-label {
	font-family: var(--txu-font-body);
	font-size: 1.625rem; font-weight: 700;
	color: var(--txu-success);
}
.txu-ticket-card-price-note {
	font-size: 0.8125rem;
	color: var(--txu-ink-muted);
	margin-top: 0.375rem;
}

.txu-ticket-types { padding: 0.5rem 0; }

/* Single (non-selectable) ticket row — kept for backwards compat */
.txu-ticket-type {
	display: flex; align-items: center; justify-content: space-between;
	padding: 0.875rem 1.5rem;
	border-bottom: 1px solid var(--txu-rule);
	transition: background-color 200ms var(--txu-ease-out);
}
.txu-ticket-type:last-child { border-bottom: none; }
.txu-ticket-type:hover { background-color: var(--txu-paper-hover); }
.txu-ticket-type-info { display: flex; flex-direction: column; gap: 0.25rem; }
.txu-ticket-type-name { font-weight: 600; font-size: 0.875rem; color: var(--txu-ink); }
.txu-ticket-type-desc {
	font-size: 0.75rem; color: var(--txu-ink-soft); line-height: 1.4;
}
.txu-ticket-type-spots {
	font-family: var(--txu-font-mono); font-size: 0.6875rem;
	color: var(--txu-ink-muted); font-variant-numeric: tabular-nums;
}
.txu-ticket-type-price {
	font-family: var(--txu-font-num); font-weight: 600; font-size: 0.9375rem;
	color: var(--txu-navy-900); font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum' 1, 'ss01' 1, 'cv11' 1;
	white-space: nowrap;
}
.txu-ticket-type-price.free { color: var(--txu-success); }

/* Radio-selectable ticket types (event detail page) */
.txu-ticket-types.is-selectable {
	padding: 0.75rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.txu-ticket-types.is-selectable .txu-ticket-type {
	position: relative;
	display: grid;
	grid-template-columns: 22px 1fr auto;
	gap: 0.875rem;
	align-items: center;
	padding: 0.875rem 0.875rem 0.875rem 1rem;
	border: 1.5px solid var(--txu-rule);
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	transition: border-color 200ms var(--txu-ease-out),
	            background-color 200ms var(--txu-ease-out),
	            box-shadow 200ms var(--txu-ease-out);
}
.txu-ticket-types.is-selectable .txu-ticket-type:hover:not(.is-sold-out) {
	border-color: var(--txu-navy-700);
	background: var(--txu-paper);
}
.txu-ticket-types.is-selectable .txu-ticket-type.is-selected {
	border-color: var(--txu-gold-500);
	background: var(--txu-gold-100);
	box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.18);
}
.txu-ticket-types.is-selectable .txu-ticket-type.is-sold-out {
	cursor: not-allowed;
	opacity: 0.55;
	background: var(--txu-paper-dark);
}
.txu-ticket-types.is-selectable .txu-ticket-type.is-sold-out .txu-ticket-type-name {
	text-decoration: line-through;
}

/* Hide the native radio input but keep it accessible */
.txu-ticket-type-radio {
	position: absolute;
	left: 0; top: 0;
	width: 1px; height: 1px;
	opacity: 0;
	pointer-events: none;
}
.txu-ticket-type-check {
	display: grid;
	place-items: center;
	width: 22px; height: 22px;
	border: 1.5px solid var(--txu-rule);
	border-radius: 50%;
	background: #fff;
	transition: background-color 200ms var(--txu-ease-out),
	            border-color 200ms var(--txu-ease-out);
}
.txu-ticket-type-check svg {
	width: 12px; height: 12px;
	stroke: #fff;
	stroke-width: 3;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0;
	transition: opacity 180ms var(--txu-ease-out);
}
.txu-ticket-type.is-selected .txu-ticket-type-check {
	background: var(--txu-gold-500);
	border-color: var(--txu-gold-500);
}
.txu-ticket-type.is-selected .txu-ticket-type-check svg { opacity: 1; }

/* Focus indicator for keyboard users (radio is hidden so we style the visual) */
.txu-ticket-type-radio:focus-visible + .txu-ticket-type-check {
	outline: 2px solid var(--txu-gold-500);
	outline-offset: 2px;
}

.txu-ticket-types.is-selectable .txu-ticket-type-info {
	min-width: 0;
}
.txu-ticket-types.is-selectable .txu-ticket-type-name {
	font-size: 0.9375rem;
	color: var(--txu-navy-900);
	font-weight: 600;
	margin-bottom: 0.125rem;
}

.txu-ticket-types-hint {
	margin: 0.5rem 1.5rem 0;
	font-size: 0.75rem;
	color: var(--txu-ink-muted);
	line-height: 1.5;
	font-style: italic;
}

.txu-ticket-card-cta { padding: 1.25rem 1.5rem; }

.txu-btn-register {
	display: flex; align-items: center; justify-content: center; gap: 0.625rem;
	width: 100%;
	padding: 1.0625rem 1.5rem;
	background: var(--txu-navy-900); color: #fff;
	border: none;
	font-family: var(--txu-font-body); font-weight: 600; font-size: 0.875rem;
	letter-spacing: 0.08em; text-transform: uppercase;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	box-shadow: 0 1px 2px rgba(10,29,59,0.18);
	transition:
		transform 320ms var(--txu-ease-out),
		box-shadow 320ms var(--txu-ease-out),
		letter-spacing 320ms var(--txu-ease-out);
	animation: txuBtnIdlePulse 3s ease-in-out infinite;
}
.txu-btn-register:disabled { cursor: not-allowed; opacity: 0.85; }
@keyframes txuBtnIdlePulse {
	0%, 100% { box-shadow: 0 1px 2px rgba(10,29,59,0.18), 0 0 0 0 rgba(201,161,74,0); }
	50%      { box-shadow: 0 1px 2px rgba(10,29,59,0.18), 0 0 0 6px rgba(201,161,74,0.10); }
}
.txu-btn-register::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(135deg, var(--txu-gold-600) 0%, var(--txu-gold-500) 100%);
	transform: translate3d(-100%, 100%, 0);
	transition: transform 450ms cubic-bezier(0.65, 0, 0.35, 1);
	z-index: -1;
}
.txu-btn-register::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	background: var(--txu-gold-500);
	transform: scaleX(0.3);
	transform-origin: left;
	transition: transform 400ms var(--txu-ease-out);
	z-index: 2;
}
.txu-btn-register > * { position: relative; z-index: 1; }
.txu-btn-register:not(:disabled):hover {
	transform: translateY(-2px);
	letter-spacing: 0.1em;
	box-shadow: 0 12px 28px rgba(10,29,59,0.22), 0 0 0 0 rgba(201,161,74,0);
	animation: none;
}
.txu-btn-register:not(:disabled):hover::before { transform: translate3d(0, 0, 0); }
.txu-btn-register:not(:disabled):hover::after { transform: scaleX(1); }
.txu-btn-register:not(:disabled):active { transform: translateY(0) scale(0.985); transition: transform 120ms ease-out; }
.txu-btn-register svg {
	width: 16px; height: 16px;
	stroke: currentColor; stroke-width: 2; fill: none;
	transition: transform 320ms var(--txu-ease-out);
}
.txu-btn-register:not(:disabled):hover svg { animation: txuArrowNudge 700ms var(--txu-ease-out); }
@keyframes txuArrowNudge {
	0%   { transform: translateX(0); }
	40%  { transform: translateX(8px); }
	60%  { transform: translateX(4px); }
	100% { transform: translateX(6px); }
}

.txu-ticket-card-info {
	padding: 0 1.5rem 1.5rem;
	font-size: 0.8125rem;
	color: var(--txu-ink-muted);
	text-align: center;
	line-height: 1.5;
}

.txu-sidebar-meta {
	background: #fff;
	border: 1px solid var(--txu-rule);
	padding: 1.5rem;
	margin-top: 1.5rem;
}
.txu-sidebar-meta h4 {
	font-weight: 700; font-size: 0.6875rem;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--txu-ink-muted);
	margin: 0 0 1rem;
}
.txu-sidebar-meta-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin: 0; padding: 0; }
.txu-sidebar-meta-list li {
	display: flex; gap: 0.875rem; align-items: flex-start;
	font-size: 0.875rem;
}
.txu-sidebar-meta-list svg {
	width: 18px; height: 18px;
	stroke: var(--txu-gold-500); stroke-width: 1.75; fill: none;
	flex-shrink: 0; margin-top: 1px;
}
.txu-sidebar-meta-list strong { display: block; font-weight: 600; color: var(--txu-ink); }
.txu-sidebar-meta-list span { color: var(--txu-ink-muted); line-height: 1.5; }

/* ============================================================
   Videos section
   ============================================================ */
.txu-videos-section {
	padding: 4rem 0 2.5rem;
	border-top: 1px solid var(--txu-rule);
}
.txu-videos-header {
	margin-bottom: 2rem;
	max-width: 880px;
}
.txu-videos-header .txu-kicker {
	display: inline-block;
	font-weight: 700; font-size: 0.6875rem;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--txu-gold-600);
	margin-bottom: 0.625rem;
}
.txu-videos-header .txu-kicker::after {
	content: ''; display: inline-block;
	width: 24px; height: 1px; background: var(--txu-gold-500);
	margin-left: 0.625rem; vertical-align: middle;
}
.txu-videos-header h2 {
	font-family: var(--txu-font-display);
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--txu-navy-900);
	margin: 0;
}

.txu-videos-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}
.txu-videos-grid.is-single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 880px;
}

/* Each video sits inside an aspect-ratio wrapper that scales to its column.
 * 16:9 (the YouTube/Vimeo default). Iframe fills the wrapper. */
.txu-video-wrap {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	background: #000;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(10, 29, 59, 0.14);
	transition: transform 280ms var(--txu-ease-out),
	            box-shadow 280ms var(--txu-ease-out);
}
.txu-video-wrap:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(10, 29, 59, 0.20);
}
.txu-video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media (max-width: 720px) {
	.txu-videos-section { padding: 3rem 0 2rem; }
	.txu-videos-grid { grid-template-columns: 1fr; gap: 1rem; }
	.txu-videos-header h2 { font-size: 1.625rem; }
}
@media (prefers-reduced-motion: reduce) {
	.txu-video-wrap { transition: none; }
	.txu-video-wrap:hover { transform: none; }
}

/* Speaker section */
.txu-speaker-section {
	background: var(--txu-paper-dark);
	padding: 5rem 2rem;
	margin: 0 -2rem;
	border-top: 1px solid var(--txu-rule);
	border-bottom: 1px solid var(--txu-rule);
}
.txu-speaker-section .txu-kicker {
	display: inline-block;
	font-weight: 700; font-size: 0.6875rem;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--txu-gold-600);
	margin-bottom: 1rem;
}
.txu-speaker-section .txu-kicker::after {
	content: ''; display: inline-block;
	width: 24px; height: 1px; background: var(--txu-gold-500);
	margin-left: 0.625rem; vertical-align: middle;
}
.txu-speaker-section h2 {
	font-family: var(--txu-font-display); font-weight: 600;
	font-size: 2.5rem; line-height: 1.1;
	letter-spacing: -0.02em; color: var(--txu-navy-900);
	margin: 0 0 3rem;
}

/* ---- Speakers grid (single vs multi) ---- */
.txu-speakers-grid.is-single { display: block; }
.txu-speakers-grid.is-multi {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.75rem 3rem;
}

/* SINGLE speaker: framed square photo on the left, bio on the right (editorial) */
.txu-speakers-grid.is-single .txu-speaker-card {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 3rem;
	align-items: start;
}
.txu-speakers-grid.is-single .txu-speaker-photo {
	position: relative; aspect-ratio: 1; overflow: hidden;
}
.txu-speakers-grid.is-single .txu-speaker-photo::before {
	content: '';
	position: absolute;
	top: 12px; left: 12px;
	right: -12px; bottom: -12px;
	border: 1px solid var(--txu-gold-500);
	z-index: -1;
}

/* MULTI speakers: circular avatar on top, name/title/bio below — a tidy card */
.txu-speakers-grid.is-multi .txu-speaker-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.txu-speakers-grid.is-multi .txu-speaker-photo {
	width: 132px; height: 132px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
	box-shadow: 0 6px 18px rgba(10, 29, 59, 0.12);
}
.txu-speakers-grid.is-multi .txu-speaker-photo::after {
	content: '';
	position: absolute; inset: 0;
	border-radius: 50%;
	box-shadow: inset 0 0 0 3px rgba(201, 161, 74, 0.40);
	pointer-events: none;
}

/* Shared photo image treatment */
.txu-speaker-photo img {
	width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(0.2);
	transition: filter 400ms var(--txu-ease-out);
}
.txu-speaker-photo:hover img { filter: grayscale(0); }

/* Speaker text */
.txu-speaker-name {
	font-family: var(--txu-font-display); font-weight: 700;
	font-size: 1.25rem; line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--txu-navy-900);
	margin: 0 0 0.1875rem;
}
.txu-speaker-title {
	font-weight: 700; font-size: 0.6875rem;
	letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--txu-gold-600);
	margin: 0 0 0.875rem;
}
.txu-speaker-bio { color: var(--txu-ink-soft); line-height: 1.75; }
.txu-speaker-bio p { color: var(--txu-ink-soft); line-height: 1.75; margin: 0 0 1rem; }
.txu-speaker-bio :last-child { margin-bottom: 0; }
/* Single-speaker layout: title sits above the bio, slightly larger rhythm */
.txu-speakers-grid.is-single .txu-speaker-title { margin-bottom: 1rem; }

@media (max-width: 768px) {
	.txu-speakers-grid.is-single .txu-speaker-card {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.txu-speakers-grid.is-single .txu-speaker-photo {
		max-width: 200px;
	}
	.txu-speakers-grid.is-multi {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}
}

/* Related events */
.txu-related-events { padding: 5rem 0; }
.txu-related-events-header {
	display: flex; justify-content: space-between; align-items: baseline;
	margin-bottom: 2.5rem;
}
.txu-related-events-header h2 {
	font-family: var(--txu-font-display); font-weight: 600; font-size: 1.75rem;
	color: var(--txu-navy-900); letter-spacing: -0.015em;
	margin: 0;
}
.txu-related-events-header a {
	font-weight: 600; font-size: 0.75rem;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--txu-navy-900);
	display: inline-flex; align-items: center; gap: 0.375rem;
	text-decoration: none;
}
.txu-related-events-header a svg {
	width: 14px; height: 14px;
	stroke: currentColor; stroke-width: 2; fill: none;
	transition: transform 250ms var(--txu-ease-out);
}
.txu-related-events-header a:hover svg { transform: translateX(4px); }

.txu-related-events-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.txu-related-card { cursor: pointer; transition: transform 320ms var(--txu-ease-out); }
.txu-related-card:hover { transform: translateY(-4px); }
.txu-related-card-media {
	aspect-ratio: 16 / 10; overflow: hidden;
	position: relative;
	background: var(--txu-paper-dark);
	margin-bottom: 1rem;
}
.txu-related-card-media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 700ms var(--txu-ease-out);
}
.txu-related-card:hover .txu-related-card-media img { transform: scale(1.06); }
.txu-related-card-date {
	position: absolute; top: 1rem; left: 1rem;
	background: var(--txu-paper);
	padding: 0.5rem 0.75rem;
	display: flex; flex-direction: column; align-items: center;
	border-left: 3px solid var(--txu-gold-500);
}
.txu-related-card-date .txu-month {
	font-weight: 700; font-size: 0.5625rem;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--txu-gold-600);
}
.txu-related-card-date .txu-day {
	font-weight: 800; font-size: 1.5rem; line-height: 1;
	color: var(--txu-navy-900); letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}
.txu-related-card-kicker {
	font-weight: 700; font-size: 0.625rem;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--txu-gold-600);
	margin-bottom: 0.5rem;
}
.txu-related-card-title {
	font-family: var(--txu-font-display); font-weight: 600;
	font-size: 1.25rem; line-height: 1.25;
	color: var(--txu-navy-900); letter-spacing: -0.01em;
	margin: 0 0 0.5rem;
}
.txu-related-card-meta {
	font-family: var(--txu-font-mono); font-size: 0.75rem;
	color: var(--txu-ink-muted); font-variant-numeric: tabular-nums;
}

/* Detail responsive */
@media (max-width: 960px) {
	.txu-detail { padding: 0 1.25rem 3rem; }
	.txu-event-hero { margin: 0 -1.25rem; height: 50vh; min-height: 360px; }
	.txu-hero-content { padding: 2rem 1.25rem; }
	.txu-article-grid { grid-template-columns: 1fr; gap: 3rem; }
	.txu-ticket-sidebar { position: relative; top: 0; }
	.txu-related-events-grid { grid-template-columns: 1fr; }
	.txu-event-details-list { grid-template-columns: 1fr; }
	.txu-speaker-section { margin: 0 -1.25rem; padding: 4rem 1.25rem; }
}

/* ============================================================
   Reduced motion support
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	.txu-hero-image,
	.txu-hero-date,
	.txu-hero-content,
	.txu-article-content > *,
	.txu-btn-register,
	.txu-btn-register::before,
	.txu-btn-register::after,
	.txu-btn-register svg {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
	.txu-event-hero { background: var(--txu-navy-900); }
}
