/* =============================================================
   GCRN Coming Soon — front-end styles
   Designed to match the GCRN Podcast Manager show page aesthetic:
   dark backgrounds, purple left-bar section headings, sidebar cards.
   ============================================================= */

/* ── Shared widget/shortcode list ── */
.gcrn-cs-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gcrn-cs-item {
	margin: 0 0 0.75em;
}

.gcrn-cs-link {
	display: flex;
	align-items: center;
	gap: 0.75em;
	text-decoration: none;
	color: inherit;
}

.gcrn-cs-link:hover .gcrn-cs-title {
	text-decoration: underline;
}

.gcrn-cs-thumb {
	flex: 0 0 auto;
	width: 50px;
	line-height: 0;
}

.gcrn-cs-thumb img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
}

.gcrn-cs-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.gcrn-cs-title {
	font-weight: 600;
	line-height: 1.3;
}

.gcrn-cs-date {
	font-size: 0.85em;
	opacity: 0.7;
}

/* Archive grid */
.gcrn-cs-archive {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 1.5em;
}

.gcrn-cs-archive .gcrn-cs-link {
	flex-direction: column;
	align-items: flex-start;
}

.gcrn-cs-archive .gcrn-cs-thumb {
	width: 100%;
}

.gcrn-cs-archive .gcrn-cs-thumb img {
	aspect-ratio: 2 / 3;
	object-fit: cover;
}

/* ── Widget / shortcode card wrapper ── */
.gcrn-cs-widget-card {
	background: #1c1c28;
	border: 1px solid rgba(123,47,232,0.35);
	border-radius: 8px;
	padding: 1.1em 1.2em 1.3em;
	box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.gcrn-cs-widget-title {
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.95em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	margin: 0 0 1em;
	padding: 0;
}

.gcrn-cs-widget-icon {
	width: 10px;
	height: 10px;
	background: #7b2fe8;
	border-radius: 2px;
	flex: 0 0 auto;
}

.gcrn-cs-widget-card .gcrn-cs-list {
	margin-bottom: 0.8em;
}

.gcrn-cs-widget-card .gcrn-cs-item {
	padding-bottom: 0.75em;
	margin-bottom: 0.75em;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gcrn-cs-widget-card .gcrn-cs-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.gcrn-cs-widget-card .gcrn-cs-thumb {
	width: 56px;
}

.gcrn-cs-widget-card .gcrn-cs-title {
	font-size: 0.92em;
	color: #fff;
}

.gcrn-cs-widget-card .gcrn-cs-date {
	color: rgba(255,255,255,0.55);
}

/* Optional "See More" link — add class="gcrn-cs-see-more" to a link
   inside a Custom HTML block below the widget, or use the archive link. */
.gcrn-cs-see-more {
	display: block;
	text-align: center;
	background: #7b2fe8;
	color: #fff !important;
	font-weight: 700;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.65em 0;
	border-radius: 4px;
	text-decoration: none !important;
	margin-top: 0.4em;
	transition: background 0.2s ease;
}

.gcrn-cs-see-more:hover {
	background: #9b4fff;
}

/* ── Archive hero (no poster background, just brand treatment) ── */
.gcrn-anticipated-archive-header {
	margin-bottom: 1.5em;
}

.gcrn-anticipated-archive-title {
	font-size: 2em;
	font-weight: 800;
	margin: 0.2em 0 0.3em;
	line-height: 1.1;
}

.gcrn-anticipated-archive-intro {
	color: rgba(255,255,255,0.7);
	font-size: 1em;
	margin: 0 0 1em;
}

.gcrn-anticipated-section {
	margin-bottom: 2em;
}

.gcrn-anticipated-section .gcrn-section-heading {
	font-size: 1.2em;
	margin-top: 0;
}

/* Missing-poster placeholder so the grid never has a gap */
.gcrn-cs-thumb-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	background: linear-gradient(135deg, #2a2a3e 0%, #1c1c28 100%);
	border-radius: 4px;
	border: 1px dashed rgba(255,255,255,0.15);
}

.gcrn-anticipated-wrap {
	width: 100%;
}

/* ── Hero banner ── */
.gcrn-anticipated-hero {
	position: relative;
	width: 100%;
	min-height: 200px;
	background-color: #1a1a2e;
	overflow: hidden;
	display: flex;
	align-items: stretch;
}

/* Blurred poster as background */
.gcrn-anticipated-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: center top;
	filter: blur(18px) brightness(0.3);
	transform: scale(1.08);
	z-index: 0;
}

/* Dark gradient overlay on top of blur */
.gcrn-anticipated-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(0,0,0,0.85) 0%,
		rgba(0,0,0,0.4) 60%,
		rgba(0,0,0,0.65) 100%
	);
	z-index: 1;
}

.gcrn-anticipated-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5em 2em 2em;
	box-sizing: border-box;
}

/* Breadcrumb */
.gcrn-anticipated-breadcrumb {
	font-size: 0.82em;
	color: rgba(255,255,255,0.65);
	margin-bottom: 1.5em;
}

.gcrn-anticipated-breadcrumb a {
	color: rgba(255,255,255,0.65);
	text-decoration: none;
}

.gcrn-anticipated-breadcrumb a:hover {
	color: #fff;
	text-decoration: underline;
}

.gcrn-anticipated-breadcrumb span[aria-hidden] {
	margin: 0 0.3em;
}

/* Hero content: poster + text side by side */
.gcrn-anticipated-hero-content {
	display: flex;
	align-items: flex-start;
	gap: 2em;
}

.gcrn-anticipated-hero-poster {
	flex: 0 0 auto;
	width: 160px;
}

.gcrn-anticipated-hero-poster img {
	width: 100%;
	border-radius: 6px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.7);
	display: block;
}

.gcrn-anticipated-hero-text {
	flex: 1;
	color: #fff;
}

.gcrn-anticipated-title {
	font-size: 2.2em;
	font-weight: 700;
	margin: 0 0 0.3em;
	line-height: 1.2;
	color: #fff;
}

.gcrn-anticipated-release-label {
	font-size: 1em;
	color: rgba(255,255,255,0.8);
	margin: 0 0 0.75em;
}

.gcrn-anticipated-release-label strong {
	color: #fff;
	margin-left: 0.3em;
}

/* Genre tags */
.gcrn-anticipated-genre-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
	margin-bottom: 1.2em;
}

.gcrn-genre-tag {
	display: inline-block;
	padding: 0.2em 0.7em;
	border-radius: 20px;
	font-size: 0.78em;
	font-weight: 600;
	background: rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.9);
	border: 1px solid rgba(255,255,255,0.2);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* "Hear Our Take" CTA button */
.gcrn-cs-episode-cta {
	display: inline-block;
	padding: 0.55em 1.4em;
	background: #7b2fe8;
	color: #fff !important;
	font-weight: 700;
	font-size: 0.9em;
	border-radius: 4px;
	text-decoration: none !important;
	transition: background 0.2s ease;
}

.gcrn-cs-episode-cta:hover {
	background: #9b4fff;
}

/* ── Content area (single column within Jannah's layout) ── */
.gcrn-anticipated-content {
	margin-top: 1.5em;
}

/* Two-column body layout: details left, content right */
.gcrn-anticipated-two-col {
	display: flex;
	align-items: flex-start;
	gap: 2em;
}

.gcrn-anticipated-details-col {
	flex: 0 0 240px;
	width: 240px;
	position: sticky;
	top: 2em;
}

.gcrn-anticipated-poster-full {
	margin-bottom: 1em;
}

.gcrn-anticipated-poster-full img {
	width: 100%;
	border-radius: 6px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.5);
	display: block;
}

.gcrn-anticipated-main-col {
	flex: 1 1 0;
	min-width: 0;
}

/* Film details card inline */
.gcrn-film-details-card {
	margin-bottom: 1.5em;
}

.gcrn-film-details-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 200px, 1fr ) );
	gap: 0.75em 1.5em;
}

/* Comments section */
.gcrn-anticipated-comments {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 1.5em;
	margin-top: 1em;
}

@media ( max-width: 768px ) {
	.gcrn-anticipated-two-col {
		flex-direction: column;
	}

	.gcrn-anticipated-details-col {
		flex: none;
		width: 100%;
		position: static;
	}

	.gcrn-anticipated-poster-full {
		max-width: 200px;
	}
}

/* ── Section headings — purple left-bar accent ── */
.gcrn-section-heading {
	font-size: 1.15em;
	font-weight: 700;
	margin: 0 0 0.75em;
	padding-left: 0.75em;
	border-left: 4px solid #7b2fe8;
	color: inherit;
	line-height: 1.3;
}

.gcrn-anticipated-section {
	margin-bottom: 2em;
}

.gcrn-anticipated-plot {
	line-height: 1.7;
	margin: 0;
}

.gcrn-anticipated-hype-content {
	line-height: 1.7;
}

/* ── Trailer video ── */
.gcrn-video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	overflow: hidden;
	background: #000;
}

.gcrn-video-wrap iframe {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	border: 0 !important;
	aspect-ratio: unset !important;
}

/* ── Streaming list ── */
.gcrn-streaming-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}

.gcrn-streaming-list li {
	padding: 0.35em 0.9em;
	border-radius: 4px;
	font-size: 0.88em;
	font-weight: 600;
	background: rgba(123,47,232,0.15);
	border: 1px solid rgba(123,47,232,0.4);
	color: inherit;
}

/* ── Sidebar cards ── */
.gcrn-sidebar-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 6px;
	padding: 1.2em;
	margin-bottom: 1.5em;
}

.gcrn-sidebar-card-title {
	font-size: 0.82em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.5);
	margin: 0 0 1em;
	padding-bottom: 0.6em;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gcrn-sidebar-row {
	display: flex;
	flex-direction: column;
	margin-bottom: 0.85em;
}

.gcrn-sidebar-row:last-child {
	margin-bottom: 0;
}

.gcrn-sidebar-label {
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255,255,255,0.45);
	margin-bottom: 0.2em;
}

.gcrn-sidebar-value {
	font-size: 0.9em;
	line-height: 1.4;
}

.gcrn-sidebar-row--link {
	margin-top: 0.5em;
}

.gcrn-imdb-link {
	font-size: 0.88em;
	font-weight: 600;
	color: #f5c518;
	text-decoration: none;
}

.gcrn-imdb-link:hover {
	text-decoration: underline;
}

/* ── Responsive ── */
@media ( max-width: 768px ) {
	.gcrn-anticipated-hero-content {
		flex-direction: column;
	}

	.gcrn-anticipated-hero-poster {
		width: 120px;
	}

	.gcrn-anticipated-title {
		font-size: 1.6em;
	}

	.gcrn-anticipated-hero-inner {
		padding: 1em;
	}

	.gcrn-film-details-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Status badges ── */
.gcrn-cs-status-badge {
	display: inline-block;
	font-size: 0.7em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.2em 0.55em;
	border-radius: 3px;
	line-height: 1.4;
	white-space: nowrap;
}

.status-upcoming {
	background: #7b2fe8;
	color: #fff;
}

.status-released {
	background: #e8782f;
	color: #fff;
}

.status-streaming {
	background: #2f8fe8;
	color: #fff;
}

.status-coming-soon {
	background: rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.9);
}

/* Badge positioned over poster thumbnail on archive cards */
.gcrn-cs-thumb {
	position: relative;
}

.gcrn-cs-thumb .gcrn-cs-status-badge {
	position: absolute;
	bottom: 4px;
	left: 4px;
	right: 4px;
	text-align: center;
	font-size: 0.65em;
}

/* ── Hype score — archive card ── */
.gcrn-cs-hype-score {
	font-size: 0.8em;
	color: #f5c518;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 0.1em;
}

/* ── Hype score — single page ── */
.gcrn-hype-score-display {
	display: flex;
	align-items: center;
	gap: 0.6em;
	margin: 0.5em 0 0.75em;
}

.gcrn-hype-score-label {
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255,255,255,0.6);
	font-weight: 700;
}

.gcrn-hype-stars {
	font-size: 1.1em;
	color: #f5c518;
	letter-spacing: 0.05em;
}

/* ── Genre filter bar ── */
.gcrn-genre-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-bottom: 1.5em;
}

.gcrn-genre-btn {
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.15);
	color: inherit;
	padding: 0.35em 0.9em;
	border-radius: 4px;
	font-size: 0.85em;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.gcrn-genre-btn:hover,
.gcrn-genre-btn.active {
	background: #7b2fe8;
	border-color: #7b2fe8;
	color: #fff;
}

/* ── Past releases toggle ── */
.gcrn-past-toggle {
	display: flex;
	align-items: center;
	gap: 0.4em;
	background: none;
	border: none;
	border-left: 4px solid rgba(255,255,255,0.2);
	padding: 0 0 0 0.75em;
	font-size: 1.15em;
	font-weight: 700;
	color: rgba(255,255,255,0.6);
	cursor: pointer;
	margin-bottom: 0.75em;
	transition: color 0.15s ease;
}

.gcrn-past-toggle:hover {
	color: rgba(255,255,255,0.9);
}

.gcrn-past-count {
	font-size: 0.8em;
	font-weight: 400;
	opacity: 0.7;
}

.gcrn-toggle-icon {
	font-size: 0.9em;
	margin-left: auto;
}

.gcrn-past-list {
	opacity: 0.75;
}
