.mv-home {
	background: linear-gradient(180deg, var(--color-surface-soft) 0%, var(--color-white) 20%, var(--color-surface-muted) 100%);
	color: var(--color-text);
}

.home.page-id-6 .ct-footer {
	display: none;
}

.mv-home--shell {
	width: min(calc(100% - 2.5rem), var(--content-max-width));
	margin: 0 auto;
}

.mv-home--shell-narrow {
	width: min(calc(100% - 2.5rem), var(--content-narrow-width));
	margin: 0 auto;
}

.mv-home--intro {
	position: relative;
	z-index: 4;
	padding-block: clamp(var(--space-xl), 2.25vw, var(--space-2xl));
	padding-inline: 0;
	background: var(--color-white);
}

.mv-home--intro .mv-home--intro-text {
	margin: 0;
	margin-block: 0;
	font-size: clamp(1.4rem, 2vw, var(--text-2xl));
	font-weight: var(--font-weight-bold);
	line-height: calc(var(--leading-copy) - 0.04);
	text-align: center;
	color: var(--color-heading);
}

.mv-home--hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: clamp(36rem, 58vw, 51rem);
	padding: clamp(6.5rem, 11vw, 8rem) 0 clamp(6.25rem, 10vw, 8rem);
	background: var(--color-ink-deep);
	color: var(--color-white);
}

.mv-home--hero::before,
.mv-home--hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2.75rem;
	background: var(--color-white);
	pointer-events: none;
	z-index: 3;
}

.mv-home--hero::before {
	top: -1px;
	clip-path: polygon(0 0, 100% 0, 100% 24%, 93% 42%, 86% 33%, 78% 51%, 71% 39%, 62% 58%, 54% 44%, 46% 60%, 37% 42%, 29% 57%, 20% 41%, 12% 52%, 6% 36%, 0 48%);
}

.mv-home--hero::after {
	bottom: -1px;
	clip-path: polygon(0 56%, 7% 41%, 14% 54%, 22% 38%, 30% 57%, 39% 43%, 47% 61%, 56% 45%, 65% 59%, 74% 40%, 83% 53%, 91% 37%, 100% 52%, 100% 100%, 0 100%);
}

.mv-home--hero-media,
.mv-home--hero-overlay {
	position: absolute;
	inset: 0;
}

.mv-home--hero-media {
	z-index: 0;
}

.mv-home--hero-frame {
	position: absolute;
	border: 0;
	opacity: 0.72;
	filter: saturate(0.72) brightness(0.78);
	pointer-events: none;
	z-index: 1;
}

.mv-home--hero-frame-video {
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	filter: saturate(0.72) brightness(0.72);
}

.mv-home--hero-frame-embed {
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.7778vh;
	min-height: 100%;
	transform: translate(-50%, -50%);
}

.mv-home--hero-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.78;
	filter: saturate(0.78) brightness(0.9);
	z-index: 0;
}

.mv-home--hero-overlay {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(124, 93, 65, 0.22) 28%, rgba(18, 18, 18, 0.36) 100%),
		linear-gradient(90deg, rgba(247, 246, 251, 0.16) 0%, rgba(22, 22, 22, 0.08) 100%);
	z-index: 2;
}

.mv-home--hero-content {
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: clamp(20rem, 34vw, 29rem);
	text-align: center;
}

.mv-home--hero-title {
	margin: 0;
	max-width: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	font-size: clamp(3rem, 5.8vw, 5rem);
	font-weight: var(--font-weight-black);
	line-height: 0.92;
	letter-spacing: var(--tracking-black);
	text-transform: uppercase;
	color: var(--color-white);
	text-shadow: 0 0.1875rem 1.125rem rgba(0, 0, 0, 0.42);
}

.mv-home--hero-content > .mv-home--hero-title {
	margin-block-end: 0;
}

.mv-home--hero-title-line {
	display: block;
}

.mv-home--hero-body {
	max-width: 45rem;
	margin: var(--space-2xl) 0 0;
	font-size: clamp(1.35rem, 2vw, 1.5rem);
	font-weight: var(--font-weight-regular);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.94);
	text-shadow: 0 0.125rem 0.875rem rgba(0, 0, 0, 0.35);
}

.mv-home--hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-xl);
	margin-top: var(--space-2xl);
}

.mv-home--button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: 0.9375rem var(--space-2xl);
	border: 2px solid transparent;
	border-radius: var(--radius-full);
	font-size: var(--text-base);
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mv-home--button::before {
	content: "";
	width: 1.25rem;
	height: 1.25rem;
	flex: 0 0 1.25rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.mv-home--button:hover,
.mv-home--button:focus-visible {
	transform: translateY(-1px);
}

.mv-home--button-primary {
	border-color: rgba(255, 255, 255, 0.88);
	background: var(--color-ink-deep);
	color: var(--color-white);
}

.mv-home--button-primary::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23ffffff' fill-opacity='0.96'/%3E%3Cpath d='M10 8.2v7.6l6-3.8z' fill='%231c1c1c'/%3E%3C/svg%3E");
}

.mv-home--button-secondary {
	border-color: rgba(28, 28, 28, 0.18);
	background: rgba(255, 255, 255, 0.94);
	color: var(--color-ink-deep);
}

.mv-home--button-secondary::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' fill='none' stroke='%231c1c1c' stroke-width='2'/%3E%3Cpath d='m4.5 7.5 7.5 5 7.5-5' fill='none' stroke='%231c1c1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mv-home--resources {
	position: relative;
	z-index: 2;
	margin-top: calc(var(--space-6xl) * -1);
	padding-bottom: var(--space-5xl);
}

.mv-home--resources-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-lg);
}

.mv-home--resource-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 8.75rem;
	padding: var(--space-2xl) var(--space-xl);
	border: 2px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	background: linear-gradient(180deg, rgba(53, 53, 53, 0.98) 0%, rgba(43, 43, 43, 0.98) 100%);
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
	text-decoration: none;
	text-align: center;
	color: var(--color-white);
	transition: color 0.5s linear, background 0.5s linear, border-color 0.5s linear, box-shadow 0.5s linear, filter 0.5s linear;
}

.mv-home--resource-card:hover,
.mv-home--resource-card:focus-visible {
	border-color: rgba(255, 255, 255, 0.22);
	background: linear-gradient(180deg, rgba(61, 61, 61, 0.98) 0%, rgba(49, 49, 49, 0.98) 100%);
	box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.22);
	filter: brightness(1.05);
}

.mv-home--resource-card::before,
.mv-home--resource-card::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2rem;
	font-weight: var(--font-weight-regular);
	line-height: 1;
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.5s linear;
}

.mv-home--resource-card:hover::before,
.mv-home--resource-card:hover::after,
.mv-home--resource-card:focus-visible::before,
.mv-home--resource-card:focus-visible::after {
	color: rgba(255, 255, 255, 0.92);
}

.mv-home--resource-card::before {
	content: "[";
	left: var(--space-lg);
}

.mv-home--resource-card::after {
	content: "]";
	right: var(--space-lg);
}

.mv-home--resource-title {
	margin: 0;
	max-width: 15rem;
	font-size: 1.55rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.3;
	color: var(--color-white);
	transition: color 0.5s linear;
}

.mv-home--section {
	padding: var(--space-6xl) 0;
}

.mv-home--section-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: var(--space-xl);
	margin-bottom: var(--space-3xl);
}

.mv-home--section-title {
	margin: 0;
	max-width: 36rem;
	font-size: clamp(2rem, 3vw, var(--text-4xl));
	font-weight: var(--font-weight-black);
	line-height: 1;
	letter-spacing: var(--tracking-black);
	color: var(--color-heading);
}

.mv-home--section-link {
	font-size: var(--text-sm);
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
	letter-spacing: var(--tracking-wide);
	text-decoration: none;
	color: var(--color-brand-santa-fe);
}

.mv-home--latest-videos {
	padding-top: var(--space-3xl);
}

.mv-home--comments .mv-home--section-header,
.mv-home--platforms .mv-home--section-header {
	justify-content: center;
	text-align: center;
}

.mv-home--comments .mv-home--section-title,
.mv-home--platforms .mv-home--section-title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	margin: 0 auto;
	max-width: none;
}

.mv-home--latest-videos .mv-home--section-header {
	justify-content: center;
	margin-bottom: var(--space-4xl);
	text-align: center;
}

.mv-home--latest-videos .mv-home--section-title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	margin: 0 auto;
	max-width: none;
	font-size: clamp(2rem, 3vw, 3.1rem);
}

.mv-home--latest-videos .mv-home--section-title::after {
	content: "";
	width: 1.6rem;
	height: 1.6rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='6' width='13' height='12' rx='2.2' fill='%23303030'/%3E%3Cpath d='M16 10.1 21 7v10l-5-3.1z' fill='%23534468'/%3E%3Ccircle cx='8.4' cy='10.7' r='2.2' fill='%23f18977'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.mv-home--comments .mv-home--section-title::after {
	content: "";
	width: 1.55rem;
	height: 1.55rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f18977' d='M4.5 5.5h15a1.5 1.5 0 0 1 1.5 1.5v8a1.5 1.5 0 0 1-1.5 1.5H10l-4.75 3.5c-.48.35-1.15.01-1.15-.58V16A1.5 1.5 0 0 1 3 14.5V7a1.5 1.5 0 0 1 1.5-1.5Z'/%3E%3Ccircle cx='8' cy='11' r='1.1' fill='%23161616'/%3E%3Ccircle cx='12' cy='11' r='1.1' fill='%23161616'/%3E%3Ccircle cx='16' cy='11' r='1.1' fill='%23161616'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.mv-home--platforms .mv-home--section-title::after {
	content: "";
	width: 1.6rem;
	height: 1.6rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%23f18977' stroke-width='2'/%3E%3Cpath d='M3.5 12h17' fill='none' stroke='%23f18977' stroke-width='2'/%3E%3Cpath d='M12 3a13.7 13.7 0 0 1 0 18' fill='none' stroke='%23f18977' stroke-width='2'/%3E%3Cpath d='M12 3a13.7 13.7 0 0 0 0 18' fill='none' stroke='%23f18977' stroke-width='2'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.mv-home--section-footer {
	display: flex;
	justify-content: flex-end;
	margin-top: var(--space-2xl);
}

.mv-home--section-button {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	padding: 0.8125rem var(--space-lg);
	border: 2px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--radius-full);
	background: var(--color-ink-deep);
	font-size: var(--text-sm);
	font-weight: var(--font-weight-bold);
	line-height: 1;
	text-decoration: none;
	color: var(--color-white);
}

.mv-home--section-button::after {
	content: "";
	width: 1rem;
	height: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.78);
	border-radius: var(--radius-full);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M3 2.2 6.6 5 3 7.8' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 0.5rem;
}

.mv-home--videos-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-xl);
	align-items: start;
}

.mv-home--videos-grid .mv-video-card {
	margin-bottom: 0;
}

.mv-home--comments {
	background: linear-gradient(180deg, rgba(249, 246, 242, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.mv-home--comments-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: var(--space-xl);
	row-gap: var(--space-2xl);
	align-items: start;
}

.mv-home--comment-card {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	height: 100%;
	padding: calc(var(--space-2xl) + 0.125rem);
	border-radius: 1.25rem;
	border: 1px solid rgba(25, 42, 61, 0.08);
	background:
		radial-gradient(circle at top right, rgba(241, 137, 119, 0.18), transparent 32%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 240, 0.96) 100%);
	box-shadow: 0 1.2rem 2.8rem rgba(25, 42, 61, 0.09);
	color: var(--color-text-strong);
	font-family: var(--font-body);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mv-home--comment-card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 0.3rem;
	background: linear-gradient(90deg, rgba(241, 137, 119, 0.95), rgba(185, 113, 102, 0.78));
	z-index: -1;
}

.mv-home--comment-card::after {
	content: "\201C";
	position: absolute;
	top: 0.9rem;
	right: 1.15rem;
	font-size: 4.75rem;
	line-height: 1;
	font-weight: var(--font-weight-black);
	color: rgba(25, 42, 61, 0.07);
	pointer-events: none;
}

.mv-home--comment-card:hover,
.mv-home--comment-card:focus-within {
	transform: translateY(-0.18rem);
	border-color: rgba(241, 137, 119, 0.22);
	box-shadow: 0 1.5rem 3rem rgba(25, 42, 61, 0.12);
}

.mv-home--comment-card.is-admin-comment {
	border-color: rgba(233, 161, 120, 0.3);
	background:
		radial-gradient(circle at top right, rgba(241, 137, 119, 0.3), transparent 38%),
		linear-gradient(135deg, var(--color-text) 0%, rgba(48, 48, 48, 0.98) 100%);
	box-shadow: 0 1.35rem 3rem rgba(25, 42, 61, 0.2);
	color: rgba(255, 255, 255, 0.96);
}

.mv-home--comment-card.is-admin-comment::before {
	background: var(--color-brand-peach);
}

.mv-home--comment-card.is-admin-comment::after {
	color: rgba(255, 255, 255, 0.11);
}

.mv-home--comment-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-lg);
}

.mv-home--comment-identity {
	display: flex;
	align-items: flex-start;
	gap: var(--space-md-plus);
	min-width: 0;
}

.mv-home--comment-avatar {
	width: 3rem;
	height: 3rem;
	flex: 0 0 3rem;
	border-radius: 999px;
	overflow: hidden;
}

.mv-home--comment-avatar :where(img, .avatar) {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0.16rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(241, 137, 119, 0.2), rgba(185, 113, 102, 0.34));
	border: 2px solid rgba(25, 42, 61, 0.12);
	object-fit: cover;
	box-sizing: border-box;
}

.mv-home--comment-card.is-admin-comment .mv-home--comment-avatar :where(img, .avatar) {
	background: linear-gradient(135deg, rgba(233, 161, 120, 0.95), rgba(61, 191, 232, 0.75));
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.mv-home--comment-authoring {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.mv-home--comment-author-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.mv-home--comment-author,
.mv-home--comment-date,
.mv-home--comment-meta,
.mv-home--comment-excerpt {
	margin: 0;
}

.mv-home--comment-author {
	font-size: 1.08rem;
	font-weight: var(--font-weight-bold);
	color: var(--color-heading);
}

.mv-home--comment-badge {
	display: inline-flex;
	align-items: center;
	min-height: 1.7rem;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	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;
	text-transform: uppercase;
}

.mv-home--comment-card.is-admin-comment .mv-home--comment-author,
.mv-home--comment-card.is-admin-comment .mv-home--comment-badge {
	color: var(--color-white);
}

.mv-home--comment-card.is-admin-comment .mv-home--comment-badge {
	background: rgba(233, 161, 120, 0.18);
	box-shadow: inset 0 0 0 1px rgba(233, 161, 120, 0.28);
}

.mv-home--comment-date {
	font-size: 0.875rem;
	font-weight: var(--font-weight-semibold);
	color: var(--color-ui-muted);
}

.mv-home--comment-card.is-admin-comment .mv-home--comment-date {
	color: rgba(255, 255, 255, 0.72);
}

.mv-home--comment-meta {
	font-size: 1.1rem;
	font-weight: var(--font-weight-semibold);
	color: var(--color-ink-muted);
	line-height: 1.65;
}

.mv-home--comment-meta a,
.mv-home--comment-link {
	color: var(--color-brand-santa-fe);
	text-decoration: none;
}

.mv-home--comment-card.is-admin-comment .mv-home--comment-meta,
.mv-home--comment-card.is-admin-comment .mv-home--comment-meta a {
	color: rgba(255, 255, 255, 0.8);
}

.mv-home--comment-card.is-admin-comment .mv-home--comment-meta a {
	color: var(--color-brand-peach);
	text-decoration: underline;
	text-decoration-color: rgba(233, 161, 120, 0.65);
}

.mv-home--comment-card.is-admin-comment .mv-home--comment-meta a:hover,
.mv-home--comment-card.is-admin-comment .mv-home--comment-meta a:focus-visible {
	color: var(--color-white);
	text-decoration-color: rgba(255, 255, 255, 0.78);
}

.mv-home--comment-meta a {
	text-decoration-line: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.15em;
}

.mv-home--comment-meta a:hover,
.mv-home--comment-meta a:focus-visible {
	color: var(--color-brand-apricot);
	text-decoration: underline;
}

.mv-home--comment-excerpt {
	margin-top: 0.45rem;
	margin-bottom: 0.55rem;
	padding: 1rem 1.05rem;
	background: rgba(241, 137, 119, 0.08);
	border-left: 4px solid rgba(241, 137, 119, 0.56);
	font-size: var(--text-base);
	line-height: 1.75;
	color: var(--color-text-strong);
	text-wrap: pretty;
}

.mv-home--comment-card.is-admin-comment .mv-home--comment-excerpt {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(233, 161, 120, 0.18);
	border-left-color: var(--color-brand-peach);
	color: rgba(255, 255, 255, 0.92);
}

.mv-home--comment-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: auto;
	font-size: 0.92rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.02em;
}

.mv-home--comment-link::after {
	content: "\2192";
	font-size: 1rem;
	transition: transform 180ms ease;
}

.mv-home--comment-link:hover,
.mv-home--comment-link:focus-visible {
	color: var(--color-brand-apricot);
	text-decoration: none;
}

.mv-home--comment-link:hover::after,
.mv-home--comment-link:focus-visible::after {
	transform: translateX(0.16rem);
}

.mv-home--comment-card.is-admin-comment .mv-home--comment-link {
	color: var(--color-brand-peach);
}

.mv-home--platforms {
	padding: var(--space-6xl) 0;
	background: var(--gradient-footer);
	color: var(--color-white);
}

.mv-home--platforms .mv-home--section-title {
	color: var(--color-white);
}

.mv-home--platform-groups {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-2xl);
	padding-bottom: var(--space-4xl);
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.mv-home--platform-group-title {
	margin: 0 0 var(--space-lg);
	font-size: var(--text-lg);
	font-weight: var(--font-weight-semibold);
	color: var(--color-brand-peach);
}

.mv-home--platform-group {
	min-width: 0;
}

.mv-home--platform-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mv-home--platform-links li + li {
	margin-top: var(--space-sm);
}

.mv-home--platform-links li {
	display: flex;
}

.mv-home--platform-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
}

.mv-home--platform-links a::before {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	flex: 0 0 0.55rem;
	border-radius: var(--radius-full);
	background: var(--color-brand-apricot);
	box-shadow: 0 0 0 0.2rem rgba(241, 137, 119, 0.14);
}

.mv-home--platform-footer {
	display: grid;
	gap: var(--space-xl);
	padding-top: var(--space-4xl);
}

.mv-home--platform-legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mv-home--platform-legal-links a,
.mv-home--platform-copyright a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.mv-home--platform-disclaimer,
.mv-home--platform-copyright {
	margin: 0;
	max-width: 68rem;
	text-align: center;
	justify-self: center;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.74);
}

.mv-home--empty {
	margin: 0;
	padding: var(--space-2xl);
	border: 2px solid rgba(25, 42, 61, 0.08);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.75);
	color: var(--color-ink-muted);
}

@media (max-width: 1100px) {
	.mv-home--videos-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mv-home--platform-groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mv-home--comments-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.mv-home--videos-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-lg);
	}

	.mv-home--hero,
	.mv-home--hero-content {
		min-height: auto;
	}

	.mv-home--hero {
		padding: 5.75rem 0 6rem;
	}

	.mv-home--hero-body {
		max-width: 38rem;
		font-size: var(--text-lg);
	}

	.mv-home--resource-title {
		font-size: 1.3rem;
	}

	.mv-home--resources-grid,
	.mv-home--comments-grid,
	.mv-home--platform-groups {
		grid-template-columns: 1fr;
	}

	.mv-home--section-header {
		align-items: start;
		flex-direction: column;
	}

	.mv-home--latest-videos .mv-home--section-header {
		align-items: center;
	}

	.mv-home--comment-head {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-xs);
	}

	.mv-home--comment-identity {
		width: 100%;
	}

	.mv-home--resources {
		margin-top: calc(var(--space-4xl) * -1);
	}

	.mv-home--section-footer {
		justify-content: center;
	}
}

@media (min-width: 681px) and (max-width: 900px) {
	.mv-home--hero-title {
		gap: var(--space-xl);
		font-size: clamp(2.2rem, calc(8vw - 0.5rem), 3.5rem);
	}
}

@media (max-width: 680px) {
	.mv-home--videos-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-md-plus);
	}

	.mv-home--hero {
		padding: 5rem 0 4rem;
	}

	.mv-home--resources {
		margin-top: calc(var(--space-2xl) * -1);
	}

	.mv-home--hero-title {
		flex-direction: column;
		gap: var(--space-xs);
		font-size: clamp(1.75rem, calc(13vw - 0.75rem), 2.75rem);
	}

	.mv-home--comment-card {
		padding: 1.35rem;
		border-radius: 1rem;
	}

	.mv-home--comment-identity {
		gap: 0.75rem;
	}

	.mv-home--comment-avatar {
		width: 2.6rem;
		height: 2.6rem;
		flex-basis: 2.6rem;
	}

	.mv-home--hero-body {
		font-size: var(--text-base);
	}

	.mv-home--resource-card::before,
	.mv-home--resource-card::after {
		display: none;
	}

	.mv-home--resource-title {
		max-width: none;
		font-size: var(--text-lg);
	}

	.mv-home--section-button {
		width: 100%;
	}

	.mv-home--platform-legal-links {
		justify-content: flex-start;
	}

	.mv-home--platform-disclaimer,
	.mv-home--platform-copyright {
		text-align: left;
		justify-self: stretch;
	}

	.mv-home--hero-actions {
		flex-direction: column;
	}

	.mv-home--button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.mv-home--hero {
		padding: 5.5rem 0 5.5rem;
	}

	.mv-home--hero-body {
		margin-top: calc(var(--space-2xl) + 0.5rem);
	}

	.mv-home--resources {
		margin-top: calc(var(--space-sm) + 30px);
	}

	.mv-home--videos-grid {
		gap: var(--space-sm);
	}
}

@media (max-width: 399px) {
	.mv-home--videos-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.mv-home--hero-frame-video {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mv-home--hero-frame {
		display: none;
	}

	.mv-home--button {
		transition: none;
	}
}
