/**
 * TrialX Webinar - Frontend styles
 */

.txw {
	--txw-primary: #0000FF;
	--txw-primary-dark: #0000CC;
	--txw-accent: #3366FF;
	--txw-bg: #f6f7fb;
	--txw-card: #ffffff;
	--txw-text: #1f2937;
	--txw-muted: #6b7280;
	--txw-border: #e5e7eb;
	--txw-radius: 14px;
	--txw-shadow: 0 6px 24px rgba(31, 41, 55, 0.08);
	color: var(--txw-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.55;
	box-sizing: border-box;
}

.txw *,
.txw *::before,
.txw *::after {
	box-sizing: border-box;
}

.txw h1,
.txw h2,
.txw h3,
.txw h4 {
	font-weight: 500;
}

/* Buttons — match TrialX.com primary CTA (solid #0000ff pill + arrow) */
.txw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #0000ff;
	color: #fff !important;
	text-decoration: none !important;
	border: 0;
	border-radius: 30px;
	padding: 11px 21px;
	min-height: 50px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: normal;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, margin 0.2s ease;
	box-shadow: none;
}

.txw-btn::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 12px;
	flex: 0 0 18px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 16' fill='none'%3E%3Cpath d='M26.7071 8.70711C27.0976 8.31658 27.0976 7.68342 26.7071 7.29289L20.3431 0.928932C19.9526 0.538408 19.3195 0.538408 18.9289 0.928932C18.5384 1.31946 18.5384 1.95262 18.9289 2.34315L23.5858 7H1C0.447715 7 0 7.44772 0 8C0 8.55229 0.447715 9 1 9H23.5858L18.9289 13.6569C18.5384 14.0474 18.5384 14.6805 18.9289 15.0711C19.3195 15.4616 19.9526 15.4616 20.3431 15.0711L26.7071 8.70711Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 16' fill='none'%3E%3Cpath d='M26.7071 8.70711C27.0976 8.31658 27.0976 7.68342 26.7071 7.29289L20.3431 0.928932C19.9526 0.538408 19.3195 0.538408 18.9289 0.928932C18.5384 1.31946 18.5384 1.95262 18.9289 2.34315L23.5858 7H1C0.447715 7 0 7.44772 0 8C0 8.55229 0.447715 9 1 9H23.5858L18.9289 13.6569C18.5384 14.0474 18.5384 14.6805 18.9289 15.0711C19.3195 15.4616 19.9526 15.4616 20.3431 15.0711L26.7071 8.70711Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform 0.2s ease;
}

.txw-btn:hover {
	background: #010101;
	color: #fff !important;
	transform: none;
	box-shadow: none;
}

.txw-btn:hover::after {
	transform: translateX(4px);
}

.txw-btn:disabled,
.txw-btn-disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
}

.txw-btn-lg {
	padding: 14px 28px;
	font-size: 18px;
	min-height: 54px;
}

.txw-btn-block {
	width: 100%;
}

.txw-btn-ghost {
	background: transparent;
	color: #0000ff !important;
	border: 1.5px solid #0000ff;
	box-shadow: none;
}

.txw-btn-ghost:hover {
	background: #010101;
	border-color: #010101;
	color: #fff !important;
}

/* Notices */
.txw-notice {
	background: #eef2ff;
	border: 1px solid #dbe1ff;
	color: #3730a3;
	padding: 16px 18px;
	border-radius: var(--txw-radius);
	margin: 12px 0;
}

.txw-notice-error {
	background: #fef2f2;
	border-color: #fecaca;
	color: #b91c1c;
}

.txw-notice-admin {
	background: #fffbeb;
	border-color: #fde68a;
	color: #92400e;
}

/* Plugin page shell (themes without page.php) */
.txw-page-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 110px 24px 56px;
}

/* Extra breathing room below fixed theme headers on webinar pages */
.txw-single-head {
	margin-bottom: 28px;
}

.txw-page-header {
	margin-bottom: 24px;
}

.txw-page-title {
	font-size: 32px;
	font-weight: 500;
	margin: 0;
}

.txw-page-content {
	min-height: 120px;
}

/* Status pills */
.txw-status-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	background: #eef2ff;
	color: var(--txw-primary);
}

.txw-status-live {
	background: #fee2e2;
	color: #dc2626;
	animation: txw-pulse 1.6s infinite;
}

.txw-status-completed {
	background: #f1f5f9;
	color: #64748b;
}

.txw-status-scheduled {
	background: #ecfdf5;
	color: #059669;
}

.txw-status-draft {
	background: #fef3c7;
	color: #b45309;
}

@keyframes txw-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}

/* -------- Webinar list -------- */
.txw-list-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.txw-card-item {
	background: var(--txw-card);
	border-radius: var(--txw-radius);
	overflow: hidden;
	box-shadow: var(--txw-shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.txw-card-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(31, 41, 55, 0.12);
}

.txw-card-media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, var(--txw-primary), var(--txw-accent));
	overflow: hidden;
}

.txw-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.txw-card-media-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.txw-card-media .txw-status-pill {
	position: absolute;
	top: 12px;
	left: 12px;
}

.txw-card-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.txw-card-heading {
	margin: 0;
	font-size: 19px;
	font-weight: 500;
}

.txw-card-meta {
	margin: 0;
	font-size: 14px;
	color: var(--txw-muted);
}

.txw-card-desc {
	margin: 6px 0 14px;
	font-size: 14px;
	color: var(--txw-text);
	flex: 1;
}

.txw-card-content .txw-btn {
	align-self: flex-start;
	margin-top: auto;
}

/* -------- Registration form -------- */
.txw-register-card {
	background: var(--txw-card);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--txw-shadow);
	max-width: 640px;
	margin: 0 auto;
}

.txw-register-banner {
	aspect-ratio: 21 / 9;
	overflow: hidden;
}

.txw-register-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.txw-register-body {
	padding: 30px;
}

.txw-register-title {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 500;
}

.txw-register-meta {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	color: var(--txw-muted);
	font-size: 14px;
}

.txw-register-meta li {
	margin: 0;
}

.txw-register-desc {
	margin-bottom: 20px;
	color: var(--txw-text);
	font-size: 15px;
}

/* Speakers block (registration + shared) */
.txw-speakers-block {
	margin: 4px 0 22px;
}

.txw-speakers-heading {
	font-size: 15px;
	font-weight: 500;
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--txw-muted);
}

.txw-speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 12px;
}

.txw-speaker-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f8f8fc;
	border: 1px solid var(--txw-border);
	border-radius: 12px;
	padding: 10px 14px;
}

.txw-speaker-avatar {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--txw-primary), var(--txw-accent));
	color: #fff;
	font-weight: 700;
	font-size: 18px;
}

.txw-speaker-avatar-fallback {
	line-height: 48px;
	text-align: center;
}

.txw-speaker-meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.txw-speaker-name {
	font-weight: 700;
	font-size: 15px;
	color: var(--txw-text);
}

.txw-speaker-role {
	font-size: 13px;
	color: var(--txw-muted);
}

/* Single page: full speaker profiles (image | name + role + bio) */
.txw-speakers-detail {
	margin-top: 28px;
}

.txw-speakers-detail-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--txw-border);
	border-radius: 16px;
	overflow: hidden;
	background: var(--txw-card, #fff);
	box-shadow: var(--txw-shadow);
}

.txw-speaker-detail {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 24px;
	padding: 24px;
	border-bottom: 1px solid var(--txw-border);
	align-items: start;
}

.txw-speaker-detail:last-child {
	border-bottom: none;
}

.txw-speaker-detail-photo {
	flex-shrink: 0;
}

.txw-speaker-detail-photo img,
.txw-speaker-detail-fallback {
	display: block;
	width: 160px;
	height: 160px;
	border-radius: 14px;
	object-fit: cover;
}

.txw-speaker-detail-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--txw-primary), var(--txw-accent));
	color: #fff;
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
}

.txw-speaker-detail-body {
	min-width: 0;
}

.txw-speaker-detail-name {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 800;
	color: var(--txw-text);
	line-height: 1.3;
}

.txw-speaker-detail-role {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 600;
	color: var(--txw-primary);
	line-height: 1.4;
}

.txw-speaker-detail-bio {
	font-size: 15px;
	line-height: 1.65;
	color: var(--txw-text);
}

.txw-speaker-detail-bio p {
	margin: 0 0 10px;
}

.txw-speaker-detail-bio p:last-child {
	margin-bottom: 0;
}

@media (max-width: 600px) {
	.txw-speaker-detail {
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: center;
	}

	.txw-speaker-detail-photo {
		display: flex;
		justify-content: center;
	}

	.txw-speaker-detail-photo img,
	.txw-speaker-detail-fallback {
		width: 120px;
		height: 120px;
	}

	.txw-speaker-detail-fallback {
		font-size: 36px;
	}
}

/* Room speaker list */
.txw-room-speaker {
	padding: 10px 0;
	border-bottom: 1px solid var(--txw-border);
}

.txw-room-speaker:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.txw-room-speaker-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.txw-room-speaker-bio {
	margin: 8px 0 0;
	font-size: 13px;
}

.txw-form-field {
	margin-bottom: 16px;
}

.txw-form-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
}

.txw-form-field input,
.txw-form-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--txw-border);
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	background: #fff;
	color: var(--txw-text);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.txw-form-field input:focus,
.txw-form-field textarea:focus {
	outline: none;
	border-color: var(--txw-primary);
	box-shadow: 0 0 0 3px rgba(91, 61, 245, 0.15);
}

.txw-req {
	color: #dc2626;
}

.txw-optional {
	color: var(--txw-muted);
	font-weight: 400;
	font-size: 12px;
}

.txw-form-message {
	display: none;
	padding: 12px 16px;
	border-radius: 10px;
	margin-bottom: 16px;
	font-size: 14px;
}

.txw-form-message.txw-show {
	display: block;
}

.txw-form-message.txw-success {
	background: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
}

.txw-form-message.txw-error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

.txw-form-message.txw-register-confirm p {
	margin: 0 0 10px;
}

.txw-form-message.txw-register-confirm p:last-of-type {
	margin-bottom: 0;
}

.txw-form-message.txw-register-confirm strong {
	font-weight: 700;
}

.txw-register-confirm__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
}

.txw-register-confirm__actions .txw-btn {
	margin: 0;
}

.txw-form-message.txw-register-confirm a:not(.txw-btn):not(.txw-register-confirm__outlook) {
	color: #065f46;
	font-weight: 600;
	text-decoration: underline;
}

.txw-register-confirm__outlook:hover {
	color: #047857;
}

.txw-btn.txw-btn-sm {
	min-height: 42px;
	padding: 8px 16px;
	font-size: 14px;
}

/* -------- Webinar room -------- */
.txw-room {
	background: var(--txw-bg);
	border-radius: 18px;
	padding: 24px;
}

.txw-room-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}

.txw-room-title {
	margin: 0 0 6px;
	font-size: 26px;
	font-weight: 500;
}

.txw-room-sub {
	color: var(--txw-muted);
	font-size: 14px;
}

.txw-sep {
	margin: 0 6px;
}

.txw-room-main {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
}

.txw-room-stage {
	background: #0f172a;
	border-radius: 14px;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.txw-video-wrap,
.txw-video-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.txw-video-embed iframe,
.txw-video-el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.txw-video-el {
	background: #000;
	object-fit: contain;
}

.txw-video-link {
	padding: 40px;
	text-align: center;
	color: #e2e8f0;
}

.txw-custom-embed {
	width: 100%;
}

.txw-room-placeholder {
	padding: 50px 30px;
	text-align: center;
	color: #e2e8f0;
}

.txw-room-placeholder h2 {
	color: #fff;
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 500;
}

.txw-room-note {
	color: #94a3b8;
	font-size: 14px;
	margin-top: 20px;
}

/* Countdown */
.txw-countdown {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.txw-cd-block {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 16px 18px;
	min-width: 78px;
}

.txw-cd-num {
	display: block;
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}

.txw-cd-label {
	display: block;
	font-size: 12px;
	color: #94a3b8;
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Room side */
.txw-room-side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.txw-room-panel {
	background: var(--txw-card);
	border-radius: 14px;
	padding: 20px;
	box-shadow: var(--txw-shadow);
}

.txw-room-panel h3 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 500;
}

.txw-room-instructions {
	margin: 10px 0 0;
	padding-left: 18px;
	color: var(--txw-text);
	font-size: 14px;
}

.txw-room-instructions li {
	margin-bottom: 6px;
}

.txw-muted {
	color: var(--txw-muted);
}

/* Access denied */
.txw-access-denied {
	text-align: left;
	padding: 28px 28px 30px;
	background: #fff;
	border: 1px solid rgba(0, 0, 255, 0.1);
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
	max-width: none;
	margin: 0 0 28px;
}

.txw-access-denied__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	border-radius: 16px;
	background: rgba(0, 0, 255, 0.06);
	color: #0000ff;
}

.txw-access-denied__title {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--txw-text);
}

.txw-access-denied__text {
	margin: 0 0 22px;
	max-width: 42em;
	color: var(--txw-muted);
	font-size: 16px;
	line-height: 1.6;
}

.txw-access-denied__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.txw-room--locked {
	padding: 24px 0 40px;
}

.txw-room--locked .txw-access-denied,
.txw-replay-locked .txw-access-denied {
	max-width: 640px;
	margin: 0 auto;
}

.txw-replay-locked {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: min(62vh, 560px);
	padding: 48px 0 64px;
}

.txw-room--locked .txw-access-denied__text {
	margin-left: auto;
	margin-right: auto;
}

.txw-room--locked .txw-access-denied__actions {
	justify-content: center;
}

.txw-lock {
	font-size: 52px;
	margin-bottom: 10px;
}

.txw-access-denied h2 {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 500;
}

/* Replay */
.txw-replay-desc {
	margin-top: 20px;
	background: var(--txw-card);
	padding: 20px;
	border-radius: 14px;
	box-shadow: var(--txw-shadow);
}

/* Single webinar landing page */
.txw-page-wrap:has(.txw-single) {
	max-width: 1240px;
}

.txw-single {
	--txw-hero-navy: #0b1c5c;
	--txw-aside-w: 340px;
	position: relative;
	padding-top: 8px;
}

.txw-single-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 28px;
	align-items: stretch;
}

.txw-single--has-aside .txw-single-top {
	grid-template-columns: minmax(0, 1fr) var(--txw-aside-w);
	align-items: stretch;
}

.txw-single-hero {
	position: relative;
	min-width: 0;
	border-radius: 24px;
	overflow: hidden;
	background: transparent;
	color: #111827;
}

.txw-single-hero--image {
	min-height: 360px;
	background: #eef2f8;
}

.txw-single--has-aside .txw-single-hero--image {
	min-height: 100%;
	align-self: stretch;
}

.txw-single-hero-media {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.txw-single-hero--image .txw-single-hero-inner {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.txw-single-hero--image .txw-single-hero-img,
.txw-single-hero--image .txw-single-hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	max-height: none;
	object-fit: cover;
	object-position: var(--txw-hero-position, 50% 50%);
	border-radius: 0;
	box-shadow: none;
}

.txw-single-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	min-height: 0;
	padding: 0;
}

.txw-single-hero--copy-only {
	background: #f3f5f8;
	min-height: 360px;
}

.txw-single-hero--copy-only .txw-single-hero-inner {
	min-height: 360px;
	padding: 40px 36px;
	max-width: none;
}

.txw-single-hero--video .txw-single-hero-inner {
	grid-template-columns: minmax(0, 1fr);
	padding: 0;
	min-height: 0;
}

.txw-single-hero--video .txw-single-hero-copy {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.txw-single-hero-copy {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.txw-single-hero-title {
	margin: 0;
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.035em;
	color: #111827;
}

.txw-single-hero-sub {
	margin: 16px 0 0;
	font-size: clamp(16px, 1.6vw, 18px);
	font-weight: 400;
	line-height: 1.5;
	color: #4b5563;
}

.txw-single-hero-kicker {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7280;
}

.txw-single-hero-meta {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
}

.txw-single-hero-meta li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	color: #374151;
}

.txw-single-hero-ico {
	display: inline-flex;
	color: #0000ff;
	flex-shrink: 0;
}

.txw-single-hero-speaker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
}

.txw-single-hero-speaker-photo {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	background: #e8eeff;
	flex-shrink: 0;
}

.txw-single-hero-speaker-photo img,
.txw-single-hero-speaker-photo span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-size: 18px;
	font-weight: 700;
	color: #0000ff;
}

.txw-single-hero-speaker-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.txw-single-hero-speaker-meta strong {
	font-size: 15px;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}

.txw-single-hero-speaker-meta span {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.3;
}

.txw-single-hero-visual {
	position: relative;
	z-index: 0;
	min-width: 0;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
}

.txw-single-hero-img,
.txw-single-hero-visual img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 300px;
	object-fit: cover;
	object-position: var(--txw-hero-position, 50% 50%);
	border-radius: 0;
	box-shadow: none;
	background: transparent;
}

.txw-single-hero-visual--video {
	align-items: stretch;
}

.txw-single-hero-video {
	position: relative;
	width: 100%;
	border-radius: 24px;
	overflow: hidden;
	background: #000;
	aspect-ratio: 16 / 9;
}

.txw-single-hero-video .txw-video-wrap,
.txw-single-hero-video .txw-video-embed,
.txw-single-hero-video .txw-custom-embed,
.txw-single-hero-video .txw-video-link {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	margin: 0;
	border-radius: 0;
}

.txw-single-hero-video .txw-video-embed iframe,
.txw-single-hero-video .txw-video-el,
.txw-single-hero-video video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
	background: #000;
}

.txw-single-register {
	position: relative;
	width: 100%;
	z-index: 2;
	align-self: start;
}

.txw-single-register .txw-register,
.txw-single-register .txw-register-card {
	max-width: none;
	margin: 0;
}

.txw-single-register .txw-register-card {
	border-radius: 20px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
	border: 1px solid rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.txw-single-register .txw-register-body {
	padding: 28px 26px 26px;
}

.txw-single-register .txw-register-title {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: -0.03em;
	margin: 0 0 20px;
	color: #111827;
}

.txw-single-register-note {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--txw-muted);
}

.txw-single-register .txw-form-field {
	margin-bottom: 14px;
}

.txw-single-register .txw-form-field label {
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
}

.txw-single-register .txw-form-field input {
	border-radius: 10px;
	border-color: #e5e7eb;
	padding: 12px 14px;
	background: #fff;
}

.txw-single-register .txw-form-field input:focus {
	background: #fff;
}

.txw-single-countdown {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 28px;
	margin: 22px 0 8px;
	padding: 18px 28px;
	border-radius: 16px;
	background: #f3f5f8;
	color: #111827;
	box-shadow: none;
}

.txw-single-countdown-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0b1c5c;
	margin: 0;
	opacity: 1;
	white-space: nowrap;
}

.txw-countdown--single {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0;
	flex: 1 1 auto;
	min-width: 0;
}

.txw-countdown--single .txw-cd-block {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0 22px;
	min-width: 0;
	text-align: left;
}

.txw-countdown--single .txw-cd-block:first-child {
	padding-left: 4px;
}

.txw-countdown--single .txw-cd-num {
	display: block;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	color: var(--txw-primary, #0000ff);
	letter-spacing: -0.03em;
}

.txw-countdown--single .txw-cd-label {
	display: block;
	margin-top: 4px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #0000ff;
}

.txw-cd-sep {
	width: 1px;
	padding: 6px 0;
	font-size: 0;
	opacity: 1;
	background: #e5e7eb;
	align-self: stretch;
}

.txw-single-countdown--live,
.txw-single-countdown--ended {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 4px;
}

.txw-single-countdown--ended {
	background: transparent;
	color: #475569;
	box-shadow: none;
}

.txw-single-body {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.85fr);
	gap: 48px 64px;
	align-items: start;
	padding: 36px 0 8px;
}

.txw-single-body:only-child,
.txw-single-about:only-child,
.txw-single-learn:only-child {
	grid-column: 1 / -1;
}

.txw-single-body-title {
	margin: 0 0 18px;
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 500;
	letter-spacing: -0.03em;
	color: #111827;
	line-height: 1.2;
}

.txw-single-about {
	min-width: 0;
}

.txw-single-desc {
	font-size: 16px;
	line-height: 1.75;
	color: #4b5563;
}

.txw-single-desc p {
	margin: 0 0 16px;
}

.txw-single-desc p:last-child {
	margin-bottom: 0;
}

.txw-single-speakers {
	padding: 28px 0 8px;
}

.txw-single-speakers .txw-single-body-title {
	margin-bottom: 22px;
}

.txw-single-speaker-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.txw-single-speaker-card:only-child {
	grid-column: 1 / -1;
}

.txw-single-speaker-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	padding: 26px 24px 24px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 20px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.txw-single-speaker-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--txw-primary, #0000ff), #6b8cff);
}

.txw-single-speaker-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.txw-single-speaker-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 0;
}

.txw-single-speaker-photo {
	margin-bottom: 0;
	flex-shrink: 0;
}

.txw-single-speaker-photo img,
.txw-single-speaker-fallback {
	display: block;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 0 3px #fff, 0 0 0 6px #e8eeff;
}

.txw-single-speaker-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--txw-hero-navy), var(--txw-primary, #0000ff));
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
}

.txw-single-speaker-copy {
	min-width: 0;
}

.txw-single-speaker-name {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.txw-single-speaker-role {
	display: inline-block;
	margin: 0;
	padding: 4px 10px;
	border-radius: 999px;
	background: #eef2ff;
	font-size: 12px;
	font-weight: 600;
	color: var(--txw-primary, #0000ff);
	line-height: 1.4;
}

.txw-single-speaker-bio {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #eef0f4;
	font-size: 14.5px;
	line-height: 1.7;
	color: #4b5563;
}

.txw-single-speaker-bio p {
	margin: 0 0 10px;
}

.txw-single-speaker-bio p:last-child {
	margin-bottom: 0;
}

.txw-single-learn {
	min-width: 0;
}

.txw-single-learn-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.txw-single-learn-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 0;
}

.txw-single-learn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #eef2ff;
	color: var(--txw-primary, #0000ff);
	flex-shrink: 0;
}

.txw-single-learn-icon svg {
	display: block;
}

.txw-single-learn-copy {
	min-width: 0;
	padding-top: 2px;
}

.txw-single-learn-title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: #111827;
}

.txw-single-learn-desc {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: #6b7280;
}

.txw-related {
	margin-top: 48px;
	padding-top: 8px;
}

.txw-related-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.txw-related-title {
	margin: 0;
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 500;
	letter-spacing: -0.03em;
	color: #0b1c5c;
}

.txw-related-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--txw-primary, #0000ff) !important;
	text-decoration: none !important;
	white-space: nowrap;
}

.txw-related-all::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 11px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 16' fill='none'%3E%3Cpath d='M26.7071 8.70711C27.0976 8.31658 27.0976 7.68342 26.7071 7.29289L20.3431 0.928932C19.9526 0.538408 19.3195 0.538408 18.9289 0.928932C18.5384 1.31946 18.5384 1.95262 18.9289 2.34315L23.5858 7H1C0.447715 7 0 7.44772 0 8C0 8.55229 0.447715 9 1 9H23.5858L18.9289 13.6569C18.5384 14.0474 18.5384 14.6805 18.9289 15.0711C19.3195 15.4616 19.9526 15.4616 20.3431 15.0711L26.7071 8.70711Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 16' fill='none'%3E%3Cpath d='M26.7071 8.70711C27.0976 8.31658 27.0976 7.68342 26.7071 7.29289L20.3431 0.928932C19.9526 0.538408 19.3195 0.538408 18.9289 0.928932C18.5384 1.31946 18.5384 1.95262 18.9289 2.34315L23.5858 7H1C0.447715 7 0 7.44772 0 8C0 8.55229 0.447715 9 1 9H23.5858L18.9289 13.6569C18.5384 14.0474 18.5384 14.6805 18.9289 15.0711C19.3195 15.4616 19.9526 15.4616 20.3431 15.0711L26.7071 8.70711Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.txw-related-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.txw-related-card {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr) 18px;
	gap: 14px;
	align-items: center;
	padding: 12px 16px 12px 12px;
	border-radius: 18px;
	background: #eef2f8;
	border: 1px solid transparent;
	box-shadow: none;
	text-decoration: none !important;
	color: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.txw-related-card:hover,
.txw-related-card:focus-visible {
	border-color: #d6def0;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.txw-related-thumb {
	display: block;
	width: 88px;
	height: 64px;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #0c1a7a 0%, #0913ff 100%);
}

.txw-related-thumb img,
.txw-related-thumb-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.txw-related-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.txw-related-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.txw-related-badge--replay {
	background: #e8eeff;
	color: #3b5bdb;
}

.txw-related-badge--upcoming {
	background: #ecfdf5;
	color: #047857;
}

.txw-related-badge--live {
	background: #fee2e2;
	color: #dc2626;
}

.txw-related-name {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	color: #111827;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.txw-related-arrow {
	display: block;
	width: 16px;
	height: 11px;
	background-color: var(--txw-primary, #0000ff);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 16' fill='none'%3E%3Cpath d='M26.7071 8.70711C27.0976 8.31658 27.0976 7.68342 26.7071 7.29289L20.3431 0.928932C19.9526 0.538408 19.3195 0.538408 18.9289 0.928932C18.5384 1.31946 18.5384 1.95262 18.9289 2.34315L23.5858 7H1C0.447715 7 0 7.44772 0 8C0 8.55229 0.447715 9 1 9H23.5858L18.9289 13.6569C18.5384 14.0474 18.5384 14.6805 18.9289 15.0711C19.3195 15.4616 19.9526 15.4616 20.3431 15.0711L26.7071 8.70711Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 16' fill='none'%3E%3Cpath d='M26.7071 8.70711C27.0976 8.31658 27.0976 7.68342 26.7071 7.29289L20.3431 0.928932C19.9526 0.538408 19.3195 0.538408 18.9289 0.928932C18.5384 1.31946 18.5384 1.95262 18.9289 2.34315L23.5858 7H1C0.447715 7 0 7.44772 0 8C0 8.55229 0.447715 9 1 9H23.5858L18.9289 13.6569C18.5384 14.0474 18.5384 14.6805 18.9289 15.0711C19.3195 15.4616 19.9526 15.4616 20.3431 15.0711L26.7071 8.70711Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.txw-live-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ef4444;
	box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
	animation: txw-live-pulse 1.4s infinite;
}

@keyframes txw-live-pulse {
	0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
	70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
	100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.txw-single-layout--full {
	grid-template-columns: minmax(0, 1fr);
	width: 100%;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
}

.txw-sidebar-webinars {
	background: #fff;
	border: 1px solid rgba(91, 61, 245, 0.08);
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
	padding: 18px;
}

.txw-single-aside .txw-register-card + .txw-sidebar-webinars {
	margin-top: 18px;
}

.txw-sidebar-webinars-title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #151937;
}

.txw-sidebar-webinars-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.txw-sidebar-webinar-link {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 10px;
	border-radius: 14px;
	text-decoration: none !important;
	color: inherit;
	background: #f7f9fc;
	border: 1px solid transparent;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.txw-sidebar-webinar-link:hover,
.txw-sidebar-webinar-link:focus {
	background: #fff;
	border-color: #d8dde8;
	transform: translateY(-1px);
}

.txw-sidebar-webinar.is-upcoming .txw-sidebar-webinar-link {
	background: linear-gradient(180deg, #f4f6ff 0%, #eef2ff 100%);
	border-color: rgba(9, 19, 255, 0.12);
}

.txw-sidebar-webinar-thumb {
	display: block;
	width: 72px;
	height: 54px;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(135deg, #0c1a7a 0%, #0913ff 100%);
}

.txw-sidebar-webinar-thumb img,
.txw-sidebar-webinar-thumb-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.txw-sidebar-webinar-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.txw-sidebar-webinar-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 8px;
}

.txw-sidebar-webinar-badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.txw-sidebar-webinar-badge--upcoming {
	background: #e8ecff;
	color: #0913ff;
}

.txw-sidebar-webinar-badge--replay {
	background: #eef2f7;
	color: #475569;
}

.txw-sidebar-webinar-date {
	font-size: 12px;
	color: var(--txw-muted);
}

.txw-sidebar-webinar-name {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #151937;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.txw-btn-sm {
	padding: 9px 18px;
	font-size: 14px;
	min-height: 42px;
	box-shadow: none;
}

.txw-ended-card {
	background: #fff;
	border-radius: 18px;
	padding: 24px;
}

.txw-ended-card .txw-btn {
	margin-top: 16px;
}

.txw-meta-ico {
	display: inline-flex;
	color: var(--txw-primary);
	margin-top: 1px;
	flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
	.txw-related-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	.txw-single--has-aside .txw-single-top {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.txw-single-hero,
	.txw-single-hero--image,
	.txw-single--has-aside .txw-single-hero--image,
	.txw-single-hero--copy-only {
		min-height: 0;
	}

	.txw-single-hero--image {
		aspect-ratio: 16 / 9;
	}

	.txw-single-hero--image .txw-single-hero-img,
	.txw-single-hero--image .txw-single-hero-media img {
		min-height: 0;
		max-height: none;
	}

	.txw-single-hero--copy-only .txw-single-hero-inner {
		padding: 28px 22px;
		min-height: 0;
	}

	.txw-single-hero-img,
	.txw-single-hero-visual img {
		max-height: 220px;
	}

	.txw-single-countdown {
		margin-top: 16px;
		padding: 14px 16px;
	}

	.txw-countdown--single .txw-cd-block {
		padding: 0 14px;
	}

	.txw-countdown--single .txw-cd-num {
		font-size: 26px;
	}

	.txw-single-body {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: 24px;
	}

	.txw-single-learn {
		padding-top: 8px;
		border-top: 1px solid #e5e7eb;
	}

	.txw-single-speakers {
		padding-top: 8px;
	}

	.txw-single-speaker-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	.txw-page-wrap {
		padding-top: 88px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.txw-access-denied {
		padding: 22px 20px 24px;
	}

	.txw-access-denied__title {
		font-size: 20px;
	}

	.txw-access-denied__actions .txw-btn {
		width: 100%;
	}

	.txw-room-main {
		grid-template-columns: 1fr;
	}
	.txw-room-header {
		flex-direction: column;
	}
	.txw-register-body {
		padding: 22px;
	}
	.txw-room {
		padding: 16px;
	}
}

.txw-single-hero--ended.txw-single-hero--image,
.txw-single-hero--natural.txw-single-hero--image {
	height: 420px;
	min-height: 420px;
}

.txw-single-hero--ended .txw-single-hero-media,
.txw-single-hero--natural .txw-single-hero-media {
	height: 100%;
	min-height: 420px;
}

.txw-single-hero--ended.txw-single-hero--image .txw-single-hero-img,
.txw-single-hero--ended.txw-single-hero--image .txw-single-hero-media img,
.txw-single-hero--natural.txw-single-hero--image .txw-single-hero-img,
.txw-single-hero--natural.txw-single-hero--image .txw-single-hero-media img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	object-position: 50% 50%;
}

.txw-single-hero--copy-only.txw-single-hero--ended {
	background: #1f2937;
	color: #fff;
}

.txw-single-hero--copy-only.txw-single-hero--ended .txw-single-hero-inner {
	padding-bottom: 92px;
}

.txw-single-ended-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 28px;
	background-color: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(24px) saturate(160%);
	-webkit-backdrop-filter: blur(24px) saturate(160%);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.txw-single-ended-bar__label {
	display: block;
	margin: 0;
	min-width: 0;
	color: #fff;
	font-size: 28px;
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.txw-single-ended-bar__replay {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 44px;
	padding: 10px 22px;
	border-radius: 999px;
	background-color: #fff;
	color: #0000ff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
}

.txw-single-ended-bar__replay:hover,
.txw-single-ended-bar__replay:focus {
	color: #0000cc;
	text-decoration: none;
}

@media (max-width: 991.98px) {
	.txw-single-ended-bar {
		padding: 14px 20px;
	}

	.txw-single-ended-bar__label {
		font-size: 22px;
	}

	.txw-single-ended-bar__replay {
		min-height: 40px;
		padding: 8px 18px;
		font-size: 14px;
	}
}

@media (max-width: 960px) {
	.txw-single-hero--ended.txw-single-hero--image,
	.txw-single-hero--natural.txw-single-hero--image {
		aspect-ratio: auto;
		height: 420px;
		min-height: 420px;
	}

	.txw-single-hero--ended.txw-single-hero--image .txw-single-hero-img,
	.txw-single-hero--ended.txw-single-hero--image .txw-single-hero-media img,
	.txw-single-hero--natural.txw-single-hero--image .txw-single-hero-img,
	.txw-single-hero--natural.txw-single-hero--image .txw-single-hero-media img {
		max-height: none;
		height: 100%;
		min-height: 420px;
	}
}

@media (max-width: 575.98px) {
	.txw-single-ended-bar {
		padding: 10px 16px;
		gap: 12px;
	}

	.txw-single-ended-bar__label {
		font-size: 18px;
	}

	.txw-single-ended-bar__replay {
		min-height: 36px;
		padding: 8px 16px;
		font-size: 13px;
	}

	.txw-single-hero--copy-only.txw-single-hero--ended .txw-single-hero-inner {
		padding-bottom: 76px;
	}
}
