/* ── Video Watch Page ────────────────────────────────────────────────────── */

.myio-watch-page {
	padding: 24px 0 60px;
}

/* ── Breadcrumb ── */
.myio-watch-breadcrumb {
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
.myio-watch-breadcrumb a {
	color: #555;
	text-decoration: none;
}
.myio-watch-breadcrumb a:hover {
	color: #FF7396;
	text-decoration: underline;
}
.myio-watch-breadcrumb span[aria-hidden] {
	margin: 0 6px;
	color: #aaa;
}

/* ── Single-column layout — video first, content below ── */
.myio-watch-layout {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

/* ── Player column — portrait (9:16) constrained, centered ── */
.myio-watch-player-col {
	width: 100%;
	max-width: 380px;
}

/* Override the inline-player to use portrait aspect ratio and no black bars */
.myio-watch-player-col .wvp-inline-player {
	border-radius: 16px;
	overflow: hidden;
	line-height: 0;
	aspect-ratio: 9 / 16;
	background: #f4f4f4;
}

.myio-watch-player-col .wvp-inline-player video.wvp-inline-video,
.myio-watch-player-col .wvp-inline-player .plyr {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	background: transparent;
}

.myio-watch-poster-fallback {
	width: 100%;
	aspect-ratio: 9 / 16;
	object-fit: cover;
	display: block;
	border-radius: 16px;
}

/* ── Meta column — full width, centered text on desktop ── */
.myio-watch-meta-col {
	width: 100%;
	min-width: 0;
	text-align: center;
}

.myio-watch-title {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px;
	line-height: 1.3;
}

.myio-watch-desc {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 28px;
}
.myio-watch-desc p {
	margin: 0 0 10px;
}
.myio-watch-desc p:last-child {
	margin-bottom: 0;
}

/* ── CTAs — matching site's .button_section a + popup-edit-button style ── */
.myio-watch-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.myio-watch-cta {
	display: inline-block;
	padding: 12px 36px;
	border-radius: 200px;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	line-height: normal;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	border: 1px solid #FF7396;
}

/* Primary — "Customize Now" */
.myio-watch-cta--primary {
	background: #FF7396;
	color: #fff;
}
.myio-watch-cta--primary:hover,
.myio-watch-cta--primary:focus {
	background: transparent;
	color: #000;
	border-color: #000;
}

/* Secondary — "View Details" */
.myio-watch-cta--secondary {
	background: #fff;
	color: #FF7396;
}
.myio-watch-cta--secondary:hover,
.myio-watch-cta--secondary:focus {
	background: transparent;
	color: #000;
	border-color: #000;
}

/* ── Responsive ── */
@media ( max-width: 480px ) {
	.myio-watch-player-col {
		max-width: 100%;
	}
}

@media ( max-width: 480px ) {
	.myio-watch-ctas {
		flex-direction: column;
	}
	.myio-watch-cta {
		text-align: center;
		padding: 12px 24px;
	}
}
