/* [gnls_last_call_row] — full-width homepage row for the latest recorded live call.
   Faithfully implements the design handoff: LastLiveCallRow.css
   Classes prefixed llc- to avoid collisions. */

/* ── Band ─────────────────────────────────────────────────────────────────── */

.llc-band {
	background: #F5F0EC;
	padding: 96px 0;
}

.llc-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem);
	box-sizing: border-box;
}

/* ── Header (centred) ─────────────────────────────────────────────────────── */

.llc-head {
	text-align: center;
	margin-bottom: 48px;
}

.llc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #E85D54;
	text-decoration: none;
}

.llc-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #E85D54;
	flex-shrink: 0;
	box-shadow: 0 0 0 0 rgba(232, 93, 84, 0.55);
	animation: llc-pulse 1.8s infinite;
}

@keyframes llc-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(232, 93, 84, 0.55); }
	70%  { box-shadow: 0 0 0 8px rgba(232, 93, 84, 0); }
	100% { box-shadow: 0 0 0 0 rgba(232, 93, 84, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.llc-live-dot { animation: none; }
}

.llc-title {
	font-size: clamp(26px, 5vw, 34px);
	font-weight: 400;
	color: #5A2C5C;
	margin: 8px 0 0;
	line-height: 1.2;
}

.llc-date {
	font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: 18px;
	color: #D63B7A;
	margin: 6px 0 0;
}

/* ── Two-column grid ─────────────────────────────────────────────────────────
   CRITICAL: align-items: start. If stretch, the video width blows out.
   Both columns need min-width: 0.
   ─────────────────────────────────────────────────────────────────────────── */

.llc-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.95fr;
	gap: 32px;
	align-items: start;
}

/* ── Video column ─────────────────────────────────────────────────────────── */

.llc-video {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	width: 100%;
	align-self: start;
	min-width: 0;
	aspect-ratio: 16 / 9;
	background: #2A1530;
	box-shadow: 0 30px 70px -36px rgba(58, 27, 67, 0.55);
}

/* Poster: sunset gradient background + play button */
.llc-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	cursor: pointer;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.llc-poster-bg {
	position: absolute;
	inset: 0;
}

.llc-poster-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.llc-poster-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(42, 21, 48, 0) 40%, rgba(42, 21, 48, 0.5) 100%);
}

.llc-play {
	position: relative;
	z-index: 1;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: #2BD9D0;
	color: #2A1530;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 4px;
	box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.5);
	transition: transform 160ms cubic-bezier(0.4, 0, 0.2, 1), filter 160ms;
}

.llc-poster:hover .llc-play {
	transform: scale(1.06);
	filter: brightness(1.05);
}

.llc-poster:focus-visible {
	outline: 2px solid #2BD9D0;
	outline-offset: 3px;
}

.llc-poster-meta {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
}

.llc-poster-dur {
	font-weight: 700;
	font-size: 12px;
	color: #2A1530;
	background: rgba(255, 255, 255, 0.92);
	padding: 4px 10px;
	border-radius: 999px;
}

.llc-poster-label {
	font-weight: 600;
	font-size: 14px;
	color: #fff;
}

/* Iframe fills the container once the poster is clicked */
.llc-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ── Side column ──────────────────────────────────────────────────────────── */

.llc-side {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.llc-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #3A2A3E;
	margin: 0;
}

.llc-watch-note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: #6B5970;
	margin-top: 12px;
}

.llc-watch-tick {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	flex-shrink: 0;
	background: rgba(43, 217, 208, 0.18);
	color: #1a8a85;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
}

.llc-divider { margin: 20px 0; }
.llc-divider span { display: block; height: 1px; background: rgba(90, 44, 92, 0.14); }

/* ── Bonus PDF card ───────────────────────────────────────────────────────── */

.llc-bonus {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid rgba(90, 44, 92, 0.12);
	border-radius: 16px;
	padding: 16px;
}

.llc-bonus.is-locked {
	background: rgba(90, 44, 92, 0.035);
	border-style: dashed;
}

/* PDF cover: CSS mini-card (5D→3D) unless a preview image is set */
.llc-bonus-cover {
	flex-shrink: 0;
	width: 58px;
	height: 76px;
	border-radius: 8px;
	background: linear-gradient(160deg, #fff 0%, #f3ecf2 100%);
	border: 1px solid rgba(90, 44, 92, 0.14);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	box-shadow: 0 8px 18px -10px rgba(58, 27, 67, 0.4);
	overflow: hidden;
}

.llc-bonus-cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 7px;
}

.llc-bonus-5d    { font-weight: 700; font-size: 17px; color: #F39A2B; line-height: 1; }
.llc-bonus-arrow { font-size: 11px; color: #E85D54; line-height: 1; }
.llc-bonus-3d    { font-weight: 700; font-size: 17px; color: #5A2C5C; line-height: 1; }

.llc-bonus-text { flex: 1; min-width: 0; }

.llc-bonus-kicker {
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #E85D54;
	white-space: nowrap;
}

.llc-bonus-locklabel {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6B5970;
}

.llc-bonus-title {
	font-size: 17px;
	font-weight: 600;
	color: #5A2C5C;
	margin-top: 3px;
	line-height: 1.2;
}

.llc-bonus-sub {
	font-size: 12.5px;
	color: #6B5970;
	margin-top: 2px;
}

.llc-bonus-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 42px;
	padding: 0 18px;
	border-radius: 999px;
	background: #2BD9D0;
	color: #2A1530;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	text-decoration: none;
	transition: filter 150ms, transform 120ms;
}

.llc-bonus-btn:hover {
	filter: brightness(1.05);
	color: #2A1530;
	text-decoration: none;
}

.llc-bonus-btn:active { transform: scale(0.98); }

.llc-bonus-btn-locked {
	background: #5A2C5C;
	color: #fff;
}

.llc-bonus-btn-locked:hover { color: #fff; }

/* ── Footer note ──────────────────────────────────────────────────────────── */

.llc-foot {
	font-size: 13.5px;
	color: #6B5970;
	margin-top: 16px;
}

.llc-foot a {
	color: #E85D54;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.llc-foot a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 860px) {
	.llc-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 460px) {
	.llc-band { padding: 64px 0; }
	.llc-bonus { flex-wrap: wrap; }
	.llc-bonus-btn { width: 100%; justify-content: center; }
}
