/* =====================================================================
   Media Reel — Magazine Spread (Option C, simplified)
   Full-bleed two-column. Light text column on the left, YouTube reel
   running ceiling-to-floor on the right. Native Poppins, no italics.
   Loaded automatically via assets/css/*.css.
   ===================================================================== */

#media-reel.reel-section {
	position: relative;
	background: #dedbd2; /* matches body cream */
	color: #000;
	overflow: hidden;
}

#media-reel .reel-grid {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
	#media-reel .reel-grid {
		grid-template-columns: 1.1fr 1fr;
		min-height: clamp(560px, 80vh, 820px);
	}
}

/* ======= LEFT — TEXT ======= */
#media-reel .reel-text {
	background: #dedbd2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
	#media-reel .reel-text {
		padding: 5rem 3rem;
	}
}

@media (min-width: 1024px) {
	#media-reel .reel-text {
		padding: 5rem 4rem 5rem 5rem;
	}
}

@media (min-width: 1280px) {
	#media-reel .reel-text {
		padding: 6rem 5rem 6rem 7rem;
	}
}

@media (min-width: 1536px) {
	#media-reel .reel-text {
		padding: 7rem 6rem 7rem 9rem;
	}
}

#media-reel .reel-text-inner {
	max-width: 600px;
}

#media-reel h2.reel-title,
#media-reel .reel-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: clamp(1.75rem, 4.5vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: 0;
	color: #000;
	margin: 0 0 1.5rem 0 !important;
	padding: 0 !important;
	background: transparent !important;
	text-transform: uppercase;
	font-style: normal !important;
}

#media-reel .reel-description {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.78);
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	#media-reel .reel-description {
		font-size: 1.05rem;
	}
}

#media-reel .reel-description p {
	margin: 0 0 1rem 0;
}

#media-reel .reel-description p:last-child {
	margin-bottom: 0;
}

#media-reel .reel-cta {
	align-self: flex-start;
}

/* ======= RIGHT — REEL =======
   Plays inline with native YouTube controls. No wrapping <a>, no
   pointer-events trickery: clicks go straight to the iframe so the
   user can hit play / unmute / fullscreen in place. */

/* DESKTOP (default): reel runs ceiling-to-floor in its column, no
   padding, dark bg lives on the card itself. */
#media-reel .reel-card {
	position: relative;
	display: block;
	background: #000;
	overflow: hidden;
	min-height: 480px;
}

#media-reel .reel-frame {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 0;
}

@media (min-width: 1024px) {
	#media-reel .reel-card {
		min-height: 0;
		height: 100%;
	}
}

#media-reel .reel-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
	object-position: center;
}

#media-reel .reel-empty {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.8rem;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
	text-align: center;
	padding: 1.5rem;
}

/* =====================================================================
   Media Reel — HOME PAGE TEASER
   Compact CTA card that lives between ABOUT and TESTIMONIALS on the
   home page and routes to /buy#media-reel.
   ===================================================================== */

#media-reel-teaser.reel-teaser-section {
	background: transparent;
	color: #000;
}

#media-reel-teaser .reel-teaser-card {
	background: #fff;
	box-shadow: 0 25px 50px -25px rgba(0, 0, 0, 0.18);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	color: inherit;
	text-decoration: none;
}

#media-reel-teaser .reel-teaser-card:hover,
#media-reel-teaser .reel-teaser-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 35px 70px -25px rgba(0, 0, 0, 0.28);
}

/* Thumbnail */
#media-reel-teaser .reel-teaser-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

@media (min-width: 768px) {
	#media-reel-teaser .reel-teaser-thumb {
		width: 45%;
		flex-shrink: 0;
		aspect-ratio: auto;
		min-height: 280px;
	}
}

#media-reel-teaser .reel-teaser-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease;
}

#media-reel-teaser .reel-teaser-card:hover .reel-teaser-thumb img,
#media-reel-teaser .reel-teaser-card:focus-visible .reel-teaser-thumb img {
	transform: scale(1.04);
}

#media-reel-teaser .reel-teaser-thumb-empty {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.75rem;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
}

#media-reel-teaser .reel-teaser-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.95);
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, background-color 0.3s ease;
}

@media (min-width: 768px) {
	#media-reel-teaser .reel-teaser-play {
		width: 72px;
		height: 72px;
	}
}

#media-reel-teaser .reel-teaser-play i {
	transform: translateX(2px);
	font-size: 1.2rem;
}

#media-reel-teaser .reel-teaser-card:hover .reel-teaser-play,
#media-reel-teaser .reel-teaser-card:focus-visible .reel-teaser-play {
	transform: translate(-50%, -50%) scale(1.08);
	background: #fff;
}

/* Text side */
#media-reel-teaser .reel-teaser-text {
	padding: 1.75rem 1.5rem 2rem;
	flex: 1;
}

@media (min-width: 768px) {
	#media-reel-teaser .reel-teaser-text {
		padding: 2.25rem 2.5rem;
	}
}

@media (min-width: 1280px) {
	#media-reel-teaser .reel-teaser-text {
		padding: 2.75rem 3.5rem;
	}
}

#media-reel-teaser .reel-teaser-eyebrow {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.25em;
	font-size: 0.7rem;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.6);
	margin-bottom: 0.85rem;
}

#media-reel-teaser .reel-teaser-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	line-height: 1.1;
	letter-spacing: 0;
	color: #000;
	margin: 0 0 0.85rem 0;
	text-transform: uppercase;
}

#media-reel-teaser .reel-teaser-lede {
	font-family: 'Poppins', sans-serif;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.72);
	margin: 0 0 1.5rem 0;
	max-width: 460px;
}

#media-reel-teaser .reel-teaser-cta {
	align-self: flex-start;
}

@media (max-width: 767px) {
	#media-reel-teaser .reel-teaser-text {
		text-align: left;
	}
}

/* =====================================================================
   Media Reel — full section mobile padding (kept from earlier)
   ===================================================================== */

/* ======= MOBILE / TABLET =======
   Inset the reel from the section edges so it doesn't sit edge-to-edge.
   The cream section bg shows around the rounded video frame. */
@media (max-width: 1023px) {
	#media-reel .reel-card {
		aspect-ratio: 16 / 9;
		min-height: 0;
		height: auto;
		background: transparent; /* let the section cream show in the padding */
		padding: 0 1rem 1.5rem 1rem;
	}
	#media-reel .reel-frame {
		position: absolute;
		inset: 0 1rem 1.5rem 1rem;
		border-radius: 16px;
		background: #000;
		box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);
	}
}

@media (max-width: 640px) {
	#media-reel .reel-card {
		padding: 0 0.75rem 1rem 0.75rem;
	}
	#media-reel .reel-frame {
		inset: 0 0.75rem 1rem 0.75rem;
		border-radius: 14px;
	}
}
