.mv-video-single {
	--mv-video-single-heading-size: clamp(1.75rem, 3vw, 2.35rem);
	--mv-video-single-heading-line-height: 1.05;
	background: linear-gradient(180deg, var(--color-surface-soft) 0%, rgba(247, 246, 251, 0.92) 16%, var(--color-white) 100%);
	color: var(--color-text);
}

.mv-video-single--shell {
	width: min(calc(100% - 2rem), var(--content-max-width));
	margin: 0 auto;
}

.mv-video-single--hero {
	position: relative;
	overflow: hidden;
	padding: calc(var(--space-6xl) - var(--custom-hero-top-trim)) 0 var(--space-5xl);
	background: linear-gradient(to right, rgba(48, 48, 48, 1) 35%, rgba(22, 22, 22, 1) 100%);
	color: var(--color-white);
}

.mv-video-single--hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
	grid-template-areas:
		"intro media"
		"intro actions";
	gap: var(--space-3xl);
	align-items: start;
}

.mv-video-single--intro,
.mv-video-single--hero-media,
.mv-video-single--hero-actions,
.mv-video-single--summary-leading,
	.mv-video-single--summary-heading {
	display: grid;
	gap: var(--space-lg);
	align-content: start;
}

.mv-video-single--intro {
	grid-area: intro;
	padding-top: var(--space-md-plus);
}

.mv-video-single--hero-media {
	grid-area: media;
}

.mv-video-single--hero-actions {
	grid-area: actions;
}

.mv-video-single--summary-heading {
	gap: var(--space-md);
}

.mv-video-single--title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-md);
}

.mv-video-single--backlink {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	margin-bottom: 0;
	font-size: var(--text-sm);
	font-weight: var(--font-weight-black);
	color: var(--link-dark-color);
	text-decoration-line: underline;
	text-decoration-color: transparent;
	text-underline-offset: 0.18em;
	transition:
		color 180ms ease,
		text-decoration-color 180ms ease,
		box-shadow 180ms ease;
}

.mv-video-single--backlink::before {
	content: "";
	width: 0.7rem;
	height: 0.7rem;
	border-left: 0.125rem solid currentColor;
	border-bottom: 0.125rem solid currentColor;
	transform: rotate(45deg);
}

.mv-video-single--backlink:hover,
.mv-video-single--backlink:focus-visible {
	color: var(--link-dark-hover-color);
	text-decoration-color: var(--link-dark-underline);
}

.mv-video-single--backlink:focus-visible {
	box-shadow: 0 0 0 0.22rem var(--link-dark-focus-ring);
}

.mv-video-single--chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
	margin-bottom: 0;
}

.mv-video-single--chip {
	margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 0.55rem;
	border-radius: var(--radius-base);
	background: rgba(255, 255, 255, 0.12);
	font-size: var(--text-xs);
	font-weight: var(--font-weight-bold);
	color: rgba(255, 255, 255, 0.94);
}

.mv-video-single--title {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 34rem;
	font-size: clamp(2.2rem, 4vw, 2.75rem);
	font-weight: var(--font-weight-black);
	line-height: 1.1;
	letter-spacing: var(--tracking-black);
	text-wrap: balance;
	color: var(--color-white);
	text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.22);
}

.mv-video-single--meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1rem;
}

.mv-video-single--meta-item {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-size: var(--text-base);
	font-weight: var(--font-weight-regular);
	color: rgba(255, 255, 255, 0.86);
}

.mv-video-single--meta-item::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-radius: var(--radius-full);
	background: var(--color-brand-peach);
	box-shadow: 0 0 0 0.22rem rgba(233, 161, 120, 0.14);
}

.mv-video-single--summary-toggle {
	appearance: none;
	padding: 0;
	border: 0;
	background: none;
	color: rgba(255, 255, 255, 0.92);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs-plus);
	font: inherit;
	font-size: var(--text-sm);
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	justify-self: start;
	transition: color 180ms ease;
}

.mv-video-single--summary-toggle::after {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-right: 0.125rem solid currentColor;
	border-bottom: 0.125rem solid currentColor;
	transform: rotate(45deg) translateY(-0.08rem);
	transform-origin: center;
	transition: transform 180ms ease;
}

.mv-video-single--intro.is-expanded .mv-video-single--summary-toggle::after {
	transform: rotate(-135deg) translateY(-0.04rem);
}

.mv-video-single--summary-toggle:hover,
.mv-video-single--summary-toggle:focus-visible {
	color: var(--color-white);
}

@media (min-width: 681px) {
	.mv-video-single--summary-toggle {
		display: none;
	}
}

.mv-video-single--action-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	align-items: center;
}

.mv-video-single--action-button {
	appearance: none;
	border: 0;
	border-radius: var(--radius-full);
	background: var(--color-brand-peach);
	color: var(--color-heading);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.15rem;
	font-family: "Source Sans 3", sans-serif;
	font-size: var(--text-sm);
	font-weight: var(--font-weight-black);
	letter-spacing: var(--tracking-black);
	line-height: 1;
	text-decoration: none;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		color 180ms ease,
		box-shadow 180ms ease;
	box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.18);
}

.mv-video-single--action-button:hover,
.mv-video-single--action-button:focus-visible,
.mv-video-single--panel-link:hover,
.mv-video-single--panel-link:focus-visible,
.mv-video-single--dialog-close:hover,
.mv-video-single--dialog-close:focus-visible,
.mv-video-single--comment-submit:hover,
.mv-video-single--comment-submit:focus-visible {
	transform: translateY(-1px);
}

.mv-video-single--action-button-secondary {
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
	color: var(--color-white);
}

.mv-video-single--favorite-button {
	appearance: none;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0.75rem 1.65rem rgba(0, 0, 0, 0.2);
	color: var(--color-white);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.35rem;
	height: 3.35rem;
	padding: 0;
	flex: 0 0 auto;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease,
		color 180ms ease;
}

.mv-video-single--favorite-button-mobile {
	display: none;
}

.mv-video-single--favorite-button-desktop {
	display: inline-flex;
}

.mv-video-single--favorite-button:hover,
.mv-video-single--favorite-button:focus-visible {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(233, 161, 120, 0.56);
	box-shadow: 0 0 0 0.22rem rgba(233, 161, 120, 0.16), 0 0.95rem 1.85rem rgba(0, 0, 0, 0.24);
}

.mv-video-single--favorite-button:focus-visible {
	outline: 0;
}

.mv-video-single--favorite-button.is-favorited {
	background: var(--color-brand-peach);
	border-color: rgba(233, 161, 120, 0.95);
	box-shadow: 0 0.85rem 1.8rem rgba(233, 161, 120, 0.28);
	color: var(--color-heading);
}

.mv-video-single--favorite-button.is-favorited:hover,
.mv-video-single--favorite-button.is-favorited:focus-visible {
	background: var(--color-brand-apricot);
	border-color: rgba(241, 137, 119, 0.92);
	color: var(--color-ink-deep);
	box-shadow: 0 0 0 0.22rem rgba(241, 137, 119, 0.2), 0 1rem 1.9rem rgba(241, 137, 119, 0.32);
}

.mv-video-single--favorite-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.mv-video-single--favorite-icon::before {
	content: "♡";
	font-size: 1.5rem;
	font-weight: var(--font-weight-regular);
}

.mv-video-single--favorite-button.is-favorited .mv-video-single--favorite-icon::before {
	content: "♥";
	font-size: 1.35rem;
}

.mv-video-single--favorite-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.mv-video-single--favorite-button.is-pending {
	opacity: 0.72;
	pointer-events: none;
	cursor: progress;
}

.mv-video-single--body {
	padding: var(--space-5xl) 0 var(--space-6xl);
}

.mv-video-single--body-shell {
	width: min(calc(100% - 2rem), 70rem);
	margin: 0 auto;
	display: grid;
	gap: var(--space-3xl);
}

.mv-video-single--body-shell > * {
	min-width: 0;
}

.mv-video-single--player-card,
.mv-video-single--section,
	.mv-video-single--panel,
	.mv-video-single--comments-card {
	border-radius: var(--radius-md);
	box-shadow: 0 1rem 2rem rgba(25, 42, 61, 0.08);
	overflow: hidden;
}

.mv-video-single--player-card {
	background: #fff;
	border-radius: var(--radius-base);
	padding: var(--space-lg);
	box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.24);
}

.mv-video-single--player,
.mv-video-single--poster-fallback {
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--color-ink-deep);
}

.mv-video-single--player {
	aspect-ratio: 16 / 9;
	line-height: 0;
	min-height: 0;
}

.mv-video-single--poster-fallback {
	aspect-ratio: 16 / 9;
	min-height: 0;
}

.mv-video-single--player > *,
.mv-video-single--player iframe,
.mv-video-single--player video,
.mv-video-single--poster-fallback > *,
.mv-video-single--poster-fallback img {
	display: block;
	width: 100%;
	height: 100%;
}

.mv-video-single--poster-fallback img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.mv-video-single--section,
	.mv-video-single--panel,
	.mv-video-single--comments-card {
	background: rgba(255, 255, 255, 0.88);
	border: 2px solid rgba(25, 42, 61, 0.08);
	padding: var(--space-2xl);
		box-sizing: border-box;
		max-width: 100%;
}

.mv-video-single--description-section {
	background: var(--color-brand-peach);
	border-color: var(--color-text);
}

.mv-video-single--reading-wrap {
	width: min(100%, 45rem);
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}

.mv-video-single--comments-wrap {
	width: min(100%, 48rem);
	margin-left: auto;
	margin-right: auto;
	display: grid;
	gap: var(--space-2xl);
	min-width: 0;
}

.mv-video-single--section-header {
	display: grid;
	gap: var(--space-xs);
	margin-bottom: var(--space-xl);
}

.mv-video-single--section-title,
.mv-video-single--panel-title,
.mv-video-single--taxonomy-group-title {
	margin: 0;
	color: var(--color-heading);
}


.mv-video-single--section-title {
	font-size: var(--mv-video-single-heading-size);
	font-weight: var(--font-weight-black);
	letter-spacing: var(--tracking-black);
	line-height: var(--mv-video-single-heading-line-height);
}

.mv-video-single--panel-title {
	font-size: var(--text-2xl);
	font-weight: var(--font-weight-bold);
	line-height: 1.08;
}

.mv-video-single--panel-copy {
	margin: 0;
	font-size: var(--text-sm);
	line-height: 1.7;
	color: var(--color-ink-muted);
}

.mv-video-single--copy {
	display: grid;
	gap: var(--space-lg);
	font-size: var(--text-lg);
	line-height: 1.5;
	color: var(--color-text-strong);
}

.mv-video-single--copy > * {
	margin: 0;
}

.mv-video-single--copy ul,
.mv-video-single--copy ol,
.mv-video-single--dialog-copy ul,
.mv-video-single--dialog-copy ol,
.mv-video-single--comment-content ul,
.mv-video-single--comment-content ol {
	margin: 0;
	padding-left: 1.25rem;
}

.mv-video-single--description {
	display: grid;
	gap: var(--space-lg);
}

.mv-video-single--description-copy {
	position: relative;
	--collapsed-height: 10rem;
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.mv-video-single--copy a,
.mv-video-single--description-copy a,
.mv-video-single--dialog-copy a {
	color: var(--link-light-color);
	text-decoration-line: underline;
	text-decoration-color: var(--link-light-underline);
	text-decoration-thickness: var(--link-underline-thickness);
	text-underline-offset: var(--link-copy-underline-offset);
}

.mv-video-single--copy a:hover,
.mv-video-single--copy a:focus-visible,
.mv-video-single--description-copy a:hover,
.mv-video-single--description-copy a:focus-visible,
.mv-video-single--dialog-copy a:hover,
.mv-video-single--dialog-copy a:focus-visible {
	color: var(--link-light-hover-color);
	text-decoration-color: currentColor;
}

.mv-video-single--copy a:focus-visible,
.mv-video-single--description-copy a:focus-visible,
.mv-video-single--dialog-copy a:focus-visible {
	box-shadow: 0 0 0 0.22rem var(--link-light-focus-ring);
}

.mv-video-single--description-copy.is-collapsed {
	max-height: var(--collapsed-height);
	overflow: hidden;
}

.mv-video-single--description-copy.is-collapsed::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4rem;
	background: linear-gradient(180deg, rgba(233, 161, 120, 0) 0%, rgba(233, 161, 120, 0.94) 68%, rgba(233, 161, 120, 1) 100%);
	pointer-events: none;
}

.mv-video-single--description-toggle {
	appearance: none;
	padding: 0;
	border: 0;
	background: none;
	color: var(--color-heading);
	cursor: pointer;
	font: inherit;
	font-size: var(--text-sm);
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.22em;
	justify-self: start;
}

.mv-video-single--stats {
	display: grid;
	gap: var(--space-md);
	margin: 0;
}

.mv-video-single--stat {
	display: grid;
	gap: var(--space-2xs);
	padding-bottom: var(--space-md);
	border-bottom: 2px solid rgba(25, 42, 61, 0.08);
}

.mv-video-single--stat:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.mv-video-single--stat-label,
.mv-video-single--stat-value {
	margin: 0;
}

.mv-video-single--stat-label {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-ui-muted);
}

.mv-video-single--stat-value {
	font-size: var(--text-lg);
	font-weight: var(--font-weight-black);
	color: var(--color-heading);
}

.mv-video-single--taxonomy-group + .mv-video-single--taxonomy-group {
	margin-top: var(--space-xl);
	padding-top: var(--space-xl);
	border-top: 2px solid rgba(25, 42, 61, 0.08);
}

.mv-video-single--taxonomy-group-title {
	font-size: var(--text-lg);
	font-weight: var(--font-weight-black);
	margin-bottom: var(--space-sm);
}

.mv-video-single--taxonomy-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
	margin: 0;
	padding: 0;
	list-style: none;
}

.mv-video-single--taxonomy-pill {
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-full);
	background: var(--color-surface-soft-alt);
	font-size: 0.875rem;
	font-weight: var(--font-weight-black);
	color: var(--color-heading);
}

.mv-video-single--panel-link,
.mv-video-single--panel-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--space-lg);
	padding: 0.72rem var(--space-xl);
	border-radius: var(--radius-sm);
	background: var(--color-heading);
	border: 0;
	cursor: pointer;
	font: inherit;
	font-size: var(--text-sm);
	font-weight: var(--font-weight-bold);
	color: var(--color-white);
	text-decoration: none;
}

.mv-video-single--conversation {
	margin-top: 0;
}

.mv-video-single--comments-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 252, 0.98) 100%);
	border: 2px solid var(--color-text);
	border-radius: var(--radius-base);
	box-shadow: none;
	font-family: "Source Sans 3", sans-serif;
}

.mv-video-single--comments-card :where(*) {
	font-family: inherit;
}

.mv-video-single--comments-card .comment-respond {
	display: grid;
	gap: var(--space-md-plus);
	width: 100%;
	padding: 0;
}

.mv-video-single--comment-item > .comment-respond {
	margin-top: var(--space-lg);
	padding-top: var(--space-lg);
	border-top: 1px solid rgba(25, 42, 61, 0.12);
}

.mv-video-single--comment-item > .comment-respond #reply-title.comment-reply-title.mv-video-single--comment-form-title {
	gap: var(--space-sm);
	margin-bottom: var(--space-sm);
	font-size: 1rem;
	line-height: 1.35;
}

.mv-video-single--comments-card .comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-md);
	padding: 1.15rem;
	border-radius: var(--radius-base);
	background: transparent;
	border: 0;
	box-shadow: none;
}

.mv-video-single--comments-card .comment-form > * {
	margin: 0;
	min-width: 0;
}

.mv-video-single--comments-card .comment-form-field-input-author,
.mv-video-single--comments-card .comment-form-field-input-email,
.mv-video-single--comments-card .comment-form-author,
.mv-video-single--comments-card .comment-form-email {
	grid-column: span 1;
	width: 100%;
	max-width: none;
	flex: 1 1 auto;
}

.mv-video-single--comments-card .comment-notes,
.mv-video-single--comments-card .logged-in-as,
.mv-video-single--comments-card .must-log-in,
.mv-video-single--comments-card .comment-form-comment,
.mv-video-single--comments-card .comment-form-url,
.mv-video-single--comments-card .comment-form-cookies-consent,
.mv-video-single--comments-card .mv-video-single--composer-actions {
	grid-column: 1 / -1;
}

.mv-video-single--comments-card .comment-notes,
.mv-video-single--comments-card .logged-in-as,
.mv-video-single--comments-card .must-log-in {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--color-ink-muted);
}

.mv-video-single--comments-card .comment-form-comment textarea {
	min-height: 7.5rem;
	padding: 1rem 1.05rem;
	background: rgba(255, 255, 255, 0.96);
	border: 2px solid var(--color-text);
	border-radius: var(--radius-base);
	box-shadow: none;
}

.mv-video-single--comments-card label {
	display: block;
	margin-bottom: var(--space-xs);
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-ui-muted);
}

.mv-video-single--comments-card input[type="text"],
.mv-video-single--comments-card input[type="email"],
.mv-video-single--comments-card input[type="url"],
.mv-video-single--comments-card textarea {
	width: 100%;
	border: var(--form-field-border);
	border-radius: var(--radius-base);
	background: var(--form-field-bg);
	padding: 0.85rem 1rem;
	font: inherit;
	font-size: var(--text-lg);
	line-height: 1.5;
	color: var(--form-field-text);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		background-color 180ms ease;
	box-sizing: border-box;
}

.mv-video-single--comments-card input[type="text"]:focus,
.mv-video-single--comments-card input[type="email"]:focus,
.mv-video-single--comments-card input[type="url"]:focus,
.mv-video-single--comments-card textarea:focus {
	outline: 0;
	border-color: var(--form-field-focus-border);
	background: var(--form-field-focus-bg);
	box-shadow: var(--form-field-focus-ring);
}

.mv-video-single--comments-card .comment-form-comment textarea:active,
.mv-video-single--comments-card .comment-form-comment textarea:focus,
.mv-video-single--comments-card .comment-form-comment textarea:focus-visible {
	border-color: var(--form-field-focus-border);
	background: var(--form-field-focus-bg);
	box-shadow: var(--form-field-focus-ring);
}

.mv-video-single--composer-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: var(--space-md);
	padding-top: var(--space-xs-plus);
}

.mv-video-single--comments-divider {
	width: 100%;
	height: 1px;
	margin: 0;
	background: linear-gradient(90deg, rgba(25, 42, 61, 0) 0%, rgba(25, 42, 61, 0.12) 14%, rgba(25, 42, 61, 0.12) 86%, rgba(25, 42, 61, 0) 100%);
}

.mv-video-single--comments-header {
	display: grid;
	gap: var(--space-xs);
	width: 100%;
	margin-bottom: 0;
}

.mv-video-single--comments-heading {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	flex-wrap: wrap;
}

.mv-video-single--comments-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	padding: 0.22rem 0.55rem;
	border-radius: var(--radius-full);
	background: transparent;
	border: 2px solid var(--color-text);
	font-size: var(--text-base);
	font-weight: var(--font-weight-bold);
	line-height: 1;
	color: var(--color-text);
}

.mv-video-single--comments-title,
.mv-video-single--dialog-title,
.mv-video-single--comment-form-title,
.mv-video-single--comments-card .comment-reply-title {
	margin: 0;
	color: var(--color-heading);
	font-size: var(--mv-video-single-heading-size);
	font-weight: var(--font-weight-black);
	letter-spacing: var(--tracking-black);
	line-height: var(--mv-video-single-heading-line-height);
}

.mv-video-single--comments-copy,
.mv-video-single--comments-empty {
	margin: 0;
	width: 100%;
	font-size: var(--text-base);
	line-height: 1.7;
	color: var(--color-ink-muted);
}

.mv-video-single--comment-list,
.mv-video-single .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mv-video-single--comment-list {
	display: grid;
	width: 100%;
	gap: var(--space-xl);
}

.mv-video-single--comment-item {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.mv-video-single .children {
	display: grid;
	gap: var(--space-md-plus);
	width: calc(100% - clamp(1.4rem, 4vw, 3.5rem));
	margin-top: var(--space-md-plus);
	margin-left: clamp(1.4rem, 4vw, 3.5rem);
	padding-left: 0;
	border-left: 0;
}

.mv-video-single .children .children {
	width: 100%;
	margin-left: 0;
}

.mv-video-single--comment-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: var(--space-md);
	width: 100%;
	max-width: none;
	margin-inline: 0;
	padding: 1.15rem 1.25rem;
	border-radius: var(--radius-base);
	background: rgba(255, 255, 255, 0.99);
	border: 2px solid var(--color-text);
	box-shadow: none;
}

.mv-video-single--comment-card-staff {
	background: var(--color-text);
	border-color: var(--color-text);
	color: rgba(255, 255, 255, 0.94);
}

.mv-video-single .children .mv-video-single--comment-card {
	background: rgba(255, 250, 245, 0.99);
	border-color: rgba(233, 161, 120, 0.78);
}

.mv-video-single .children .mv-video-single--comment-card-staff {
	background: #333333;
	border-color: var(--color-brand-peach);
}

.mv-video-single--comment-avatar img {
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	padding: 0.16rem;
	border-radius: var(--radius-full);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 248, 0.98) 100%);
	border: 2px solid rgba(25, 42, 61, 0.16);
	box-shadow: none;
	object-fit: cover;
}

.mv-video-single--comment-card-staff .mv-video-single--comment-avatar img {
	background: rgba(255, 255, 255, 0.12);
	border-color: #e9a178;
}

.mv-video-single--comment-main,
.mv-video-single--comment-heading,
.mv-video-single--comment-content {
	display: grid;
	gap: var(--space-sm);
	min-width: 0;
}

.mv-video-single--comment-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
}

.mv-video-single--comment-author {
	margin: 0;
	font-size: var(--text-sm);
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	color: var(--color-heading);
}

.mv-video-single--comment-author-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.mv-video-single--comment-card-staff .mv-video-single--comment-author {
	color: var(--color-white);
}

.mv-video-single--comment-badge {
	display: inline-flex;
	align-items: center;
	min-height: 1.7rem;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-full);
	background: rgba(25, 42, 61, 0.08);
	color: var(--color-heading);
	font-size: 0.74rem;
	font-weight: var(--font-weight-black);
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.mv-video-single--comment-card-staff .mv-video-single--comment-badge {
	background: rgba(233, 161, 120, 0.18);
	box-shadow: inset 0 0 0 2px #e9a178;
	color: var(--color-white);
}

.mv-video-single--comment-permalink {
	font-size: 0.9125rem;
	font-weight: var(--font-weight-black);
	line-height: 1.35;
	color: var(--color-ui-muted);
	text-decoration: none;
}

.mv-video-single--comment-card-staff .mv-video-single--comment-permalink {
	color: rgba(255, 255, 255, 0.72);
}

.mv-video-single--comment-pending {
	margin: 0;
	font-size: 0.875rem;
	font-weight: var(--font-weight-black);
	color: var(--color-alert);
}

.mv-video-single--comment-context {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	padding: 0.28rem 0.6rem;
	border-radius: var(--radius-full);
	background: rgba(25, 42, 61, 0.06);
	color: var(--color-ui-muted);
	font-size: 0.78rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.25;
}

.mv-video-single--comment-context a {
	color: var(--color-heading);
	text-decoration: none;
}

.mv-video-single--comment-context a:hover,
.mv-video-single--comment-context a:focus-visible {
	text-decoration: underline;
}

.mv-video-single--comment-card-staff .mv-video-single--comment-context {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.74);
}

.mv-video-single--comment-card-staff .mv-video-single--comment-context a {
	color: var(--color-white);
}

.mv-video-single--comment-content {
	background: #f9f9f9;
    border-radius: var(--radius-base);
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--color-text-strong);
	padding: 10px;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.mv-video-single--comment-content a {
	color: var(--link-light-color);
	text-decoration-line: underline;
	text-decoration-color: var(--link-light-underline);
	text-decoration-thickness: var(--link-underline-thickness);
	text-underline-offset: var(--link-copy-underline-offset);
}

.mv-video-single--comment-content a:hover,
.mv-video-single--comment-content a:focus-visible {
	color: var(--link-light-hover-color);
	text-decoration-color: currentColor;
}

.mv-video-single--comment-content a:focus-visible {
	box-shadow: 0 0 0 0.22rem var(--link-light-focus-ring);
}

.mv-video-single--comment-card-staff .mv-video-single--comment-content,
.mv-video-single--comment-card-staff .mv-video-single--comment-pending {
	color: rgba(255, 255, 255, 0.94);
}

.mv-video-single--comment-card-staff .mv-video-single--comment-content {
	background: #303030;
    border-radius: var(--radius-base);
	padding: 10px;
}

.mv-video-single--comment-card-staff .mv-video-single--comment-content a {
	color: var(--link-dark-color);
	text-decoration-color: var(--link-dark-underline);
}

.mv-video-single--comment-card-staff .mv-video-single--comment-content a:hover,
.mv-video-single--comment-card-staff .mv-video-single--comment-content a:focus-visible {
	color: var(--link-dark-hover-color);
	text-decoration-color: var(--link-dark-underline);
}

.mv-video-single--comment-card-staff .mv-video-single--comment-content a:focus-visible {
	box-shadow: 0 0 0 0.22rem var(--link-dark-focus-ring);
}

.mv-video-single--comment-content > * {
	margin: 0;
	max-width: 100%;
}

.mv-video-single--copy :where(img, iframe, video, embed, object),
.mv-video-single--comment-content :where(img, iframe, video, embed, object) {
	max-width: 100%;
	height: auto;
}

.mv-video-single--copy table,
.mv-video-single--comment-content table {
	width: 100%;
	max-width: 100%;
	table-layout: fixed;
}

.mv-video-single--comment-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
}

.mv-video-single--comment-action,
.mv-video-single--comment-action a,
.mv-video-single--comment-actions a {
	color: var(--color-ui-muted);
	text-decoration: none;
}

.mv-video-single--comment-action,
.mv-video-single--comment-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.3rem 0.55rem;
	border-radius: var(--radius-full);
	line-height: 1;
	transition:
		background-color 180ms ease,
		color 180ms ease;
}

.mv-video-single--comment-action a {
	border: 2px solid #303030;
}

.mv-video-single--comment-card-staff .mv-video-single--comment-action,
.mv-video-single--comment-card-staff .mv-video-single--comment-action a,
.mv-video-single--comment-card-staff .mv-video-single--comment-actions a {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.88);
}

.mv-video-single--comment-action:hover,
.mv-video-single--comment-action a:hover,
.mv-video-single--comment-actions a:hover,
.mv-video-single--comment-action:focus-within {
	background: rgba(25, 42, 61, 0.09);
	color: var(--color-heading);
}

.mv-video-single--comment-card-staff .mv-video-single--comment-action:hover,
.mv-video-single--comment-card-staff .mv-video-single--comment-action a:hover,
.mv-video-single--comment-card-staff .mv-video-single--comment-actions a:hover,
.mv-video-single--comment-card-staff .mv-video-single--comment-action:focus-within {
	background: rgba(233, 161, 120, 0.18);
	color: var(--color-white);
}

.mv-video-single--comment-form-title,
.mv-video-single--comments-card .comment-reply-title {
	margin: 0 0 var(--space-md-plus);
	letter-spacing: normal;
	text-transform: none;
}

#reply-title.comment-reply-title.mv-video-single--comment-form-title {
	display: grid;
	gap: var(--space-xs);
	justify-items: start;
	margin: 0 0 var(--space-md-plus);
	color: var(--color-heading);
	font-size: var(--mv-video-single-heading-size);
	font-weight: var(--font-weight-black);
	letter-spacing: var(--tracking-black);
	line-height: var(--mv-video-single-heading-line-height);
	text-transform: none;
}

.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .logged-in-as {
	font-size: var(--text-base);
}

.mv-video-single--comments-card .comment-reply-title small,
.mv-video-single--comments-card .comment-reply-title .ct-cancel-reply {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	font-size: 0.8125rem;
	font-weight: var(--font-weight-black);
	line-height: 1.4;
	color: var(--color-ui-muted);
	margin: 0;
}

.mv-video-single--comments-card #cancel-comment-reply-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.85rem;
	padding: 0.28rem 0.7rem;
	border-radius: var(--radius-full);
	background: rgba(25, 42, 61, 0.06);
	border: 1px solid rgba(25, 42, 61, 0.12);
	color: var(--color-ui-muted);
	font-size: 0.8125rem;
	font-weight: var(--font-weight-black);
	line-height: 1.2;
	text-decoration: none;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease;
}

.mv-video-single--comments-card #cancel-comment-reply-link:hover,
.mv-video-single--comments-card #cancel-comment-reply-link:focus-visible {
	background: rgba(25, 42, 61, 0.1);
	border-color: rgba(25, 42, 61, 0.2);
	color: var(--color-heading);
}

.mv-video-single--comments-card .comment-form-cookies-consent {
	display: flex;
	gap: var(--space-sm);
	align-items: flex-start;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--color-ink-muted);
}

.mv-video-single--comments-card .comment-form-cookies-consent input {
	margin-top: 0.25rem;
	width: auto;
	flex: 0 0 auto;
}

.mv-video-single--comment-submit,
.mv-video-single--dialog-close {
	appearance: none;
	border: 0;
	border-radius: var(--radius-full);
	background: linear-gradient(180deg, var(--color-brand-peach) 0%, var(--color-brand-santa-fe) 100%);
	color: var(--color-white);
	cursor: pointer;
	padding: 0.82rem 1.35rem;
	font: inherit;
	font-size: var(--text-regular);
	font-weight: var(--font-weight-black);
	letter-spacing: var(--tracking-black);
	line-height: 1;
	text-decoration: none;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		box-shadow 180ms ease;
	box-shadow: 0 0.75rem 1.6rem rgba(185, 113, 102, 0.22);
}

.mv-video-single--comment-submit {
	background: transparent;
	border: 2px solid var(--color-text);
	color: var(--color-text);
	box-shadow: none;
}

.mv-video-single--dialog-close {
	background: var(--color-heading);
	box-shadow: 0 0.75rem 1.6rem rgba(25, 42, 61, 0.14);
}

body.mv-video-single--dialog-open {
	overflow: hidden;
}

.mv-video-single--dialog {
	width: min(calc(100% - 1.5rem), 46rem);
	max-width: 46rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-text);
}

.mv-video-single--dialog::backdrop {
	background: rgba(10, 16, 22, 0.72);
	backdrop-filter: blur(6px);
}

.mv-video-single--dialog-card {
	border-radius: var(--radius-base);
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 247, 238, 0.98) 0%, rgba(255, 255, 255, 0.99) 100%);
	border: 2px solid rgba(25, 42, 61, 0.08);
	box-shadow: 0 1.8rem 3rem rgba(0, 0, 0, 0.24);
}

.mv-video-single--dialog-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-lg);
	padding: var(--space-2xl);
	border-bottom: 2px solid rgba(25, 42, 61, 0.08);
}

.mv-video-single--dialog-copy {
	display: grid;
	gap: var(--space-lg);
	padding: var(--space-2xl);
	font-size: var(--text-base);
	line-height: 1.5;
	color: var(--color-text-strong);
}

.mv-video-single--dialog-copy > * {
	margin: 0;
}

.mv-video-single--dialog-empty {
	margin: 0;
	font-size: var(--text-sm);
	line-height: 1.7;
	color: var(--color-ink-muted);
}

.mv-video-single--empty {
	margin: 0;
	padding: var(--space-4xl) var(--space-2xl);
	border-radius: var(--radius-sm);
	background: linear-gradient(135deg, rgba(233, 161, 120, 0.16) 0%, rgba(22, 22, 22, 0.72) 100%);
	font-size: var(--text-base);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
}

@media (max-width: 1100px) {
	.mv-video-single--hero-layout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"intro"
			"media"
			"actions";
	}
}

@media (max-width: 900px) {
	.mv-video-single--hero {
		padding: var(--space-5xl) 0 var(--space-4xl);
	}

	.mv-video-single--hero-layout {
		gap: var(--space-2xl);
	}

	.mv-video-single--intro {
		padding-top: 0;
	}

	.mv-video-single--title {
		font-size: clamp(2rem, 7vw, 2.45rem);
	}

	.mv-video-single--body {
		padding: var(--space-4xl) 0 var(--space-5xl);
	}

	.mv-video-single--body-shell {
		width: min(calc(100% - 2rem), 70rem);
	}
}

@media (min-width: 681px) {
	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .comment-form-field-input-author,
	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .comment-form-field-input-email,
	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .comment-form-author,
	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .comment-form-email {
		grid-column: span 1;
	}

	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .comment-notes,
	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .logged-in-as,
	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .must-log-in,
	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .comment-form-comment,
	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .comment-form-cookies-consent,
	.mv-video-single--comments-card .comment-form.mv-video-single--comment-form .mv-video-single--composer-actions {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.mv-video-single {
		--mv-video-single-heading-size: clamp(1.35rem, 6vw, 1.85rem);
	}

	.mv-video-single--section-title,
	.mv-video-single--comments-title,
	.mv-video-single--comments-card .comment-reply-title,
	#reply-title.comment-reply-title.mv-video-single--comment-form-title {
		font-size: clamp(1.1rem, 5vw, 1.35rem);
		line-height: 1.15;
	}

	.mv-video-single--shell {
		width: min(calc(100% - 1rem), var(--content-max-width));
	}

	.mv-video-single--hero {
		padding: 0 0 var(--space-3xl);
	}

	.mv-video-single--hero-layout {
		grid-template-areas:
			"media"
			"intro"
			"actions";
		gap: var(--space-lg);
	}

	.mv-video-single--hero-media {
		width: calc(100% + 1rem);
		max-width: none;
		margin-inline: -0.5rem;
	}

	.mv-video-single--intro {
		gap: var(--space-md);
	}

	.mv-video-single--summary-heading {
		order: 1;
		gap: var(--space-xs-plus);
	}

	.mv-video-single--title-row {
		gap: var(--space-sm);
	}

	.mv-video-single--summary-toggle {
		order: 2;
	}

	.mv-video-single--summary-leading {
		order: 3;
		gap: var(--space-sm);
	}

	.mv-video-single--intro.is-summary-collapsible:not(.is-expanded) .mv-video-single--summary-leading {
		display: none;
	}

	.mv-video-single--intro.is-summary-collapsible:not(.is-expanded) .mv-video-single--title {
		display: -webkit-box;
		max-width: none;
		overflow: hidden;
		text-wrap: pretty;
		line-clamp: 2;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.mv-video-single--title {
		display: block;
		width: 100%;
		max-width: none;
		font-size: 1rem;
		line-height: 1.1;
		letter-spacing: 0.03125rem;
		text-wrap: pretty;
	}

	.mv-video-single--favorite-button-mobile {
		display: inline-flex;
		width: 2.7rem;
		height: 2.7rem;
	}

	.mv-video-single--favorite-button-mobile .mv-video-single--favorite-icon::before {
		font-size: 1.28rem;
	}

	.mv-video-single--favorite-button-mobile.is-favorited .mv-video-single--favorite-icon::before {
		font-size: 1.12rem;
	}

	.mv-video-single--favorite-button-desktop {
		display: none;
	}

	.mv-video-single--action-row-favorite-only {
		display: none;
	}

	.mv-video-single--action-row {
		display: grid;
		gap: var(--space-xs-plus);
	}

	.mv-video-single--section,
	.mv-video-single--panel,
	.mv-video-single--player-card,
	.mv-video-single--comments-card,
	.mv-video-single--dialog-header,
	.mv-video-single--dialog-copy {
		padding: var(--space-xl);
	}

	.mv-video-single--reading-wrap,
	.mv-video-single--comments-wrap {
		width: 100%;
	}

	.mv-video-single .children {
		width: calc(100% - var(--space-lg));
		margin-left: var(--space-lg);
	}

	.mv-video-single--comment-card {
		grid-template-columns: 1fr;
	}

	.mv-video-single--comment-avatar img {
		width: 3.1rem;
		height: 3.1rem;
	}

	.mv-video-single--comments-card .comment-form {
		grid-template-columns: 1fr;
		padding: 1rem;
	}

	.mv-video-single--meta {
		align-items: center;
		gap: var(--space-xs-plus) var(--space-lg);
	}

	.mv-video-single--player-card {
		padding: 0;
		border: 0;
		border-radius: var(--radius-none);
		background: transparent;
		box-shadow: none;
	}

	.mv-video-single--player,
	.mv-video-single--poster-fallback {
		border-radius: var(--radius-none);
	}

	.mv-video-single--action-button,
	.mv-video-single--panel-link,
	.mv-video-single--panel-button,
	.mv-video-single--comment-submit,
	.mv-video-single--dialog-close {
		width: 100%;
	}

	.mv-video-single--comment-header,
	.mv-video-single--dialog-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.mv-video-single--dialog {
		width: min(calc(100% - 1rem), 46rem);
	}
}

@media (prefers-reduced-motion: reduce), (max-width: 767px) {
	.mv-video-single--summary-toggle,
	.mv-video-single--action-button,
	.mv-video-single--panel-link,
	.mv-video-single--dialog-close,
	.mv-video-single--comment-submit {
		transition: none;
	}
}
