/* Shared styles for replay / video player pages */

html {
	box-sizing: border-box;
}

*, *::before, *::after {
	box-sizing: inherit;
}

html, body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #1a1a1a;
	background: #f5f5f5;
}

.replay-page {
	max-width: 900px;
	margin: 0 auto;
	padding: 1.5rem;
	background: #fff;
	min-height: 100vh;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.replay-page__header {
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e5e5e5;
}

.replay-page__title {
	margin: 0;
	font-size: 1.375rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.replay-page__main {
	position: relative;
}

/* Wistia responsive container – wrapper only; aspect ratio stays in Wistia markup */
.video-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #111;
	border-radius: 6px;
}

.replay-page__footer {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #e5e5e5;
	font-size: 0.8125rem;
	color: #666;
}

.replay-page__footer a {
	color: #333;
	text-decoration: none;
}

.replay-page__footer a:hover {
	text-decoration: underline;
}
