/* ==========================================================================
   Single Webinar Page
   ========================================================================== */

/* Hero Section Content */
.webinar-hero {
	background: linear-gradient(180deg, #001e2d 0%, #00293a 50%, #003143 100%);
	position: relative;
}

.hero-bg-overlay {
	overflow: hidden;
}

.radial-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.15;
	z-index: 1;
}

.radial-blob--1 {
	top: -10%;
	left: 10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
}

.radial-blob--2 {
	bottom: 10%;
	right: 15%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, var(--color-primary-light-1) 0%, transparent 70%);
}

.webinar-hero__title {
	font-family: var(--font-heading) !important;
	font-weight: 800 !important;
	font-size: clamp(3rem, 8vw, 6rem) !important; /* Dynamic sizing up to 96px+ */
	line-height: 0.95 !important;
	letter-spacing: -0.04em !important;
	color: #ffffff !important;
	text-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	margin-top: 1.5rem !important;
	margin-bottom: 2rem !important;
}

/* Badge Styles - Flat & Sophisticated */
.webinar-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 1.5rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(12px);
	border: none !important; /* Flat style */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease;
}

.webinar-hero__badge:hover {
	transform: translateY(-1px);
}

.status-upcoming {
	background-color: rgba(150, 243, 129, 0.15) !important;
	color: var(--color-accent) !important;
}

.status-live {
	background-color: rgba(239, 68, 68, 0.15) !important;
	color: #ff5252 !important;
}

.status-past {
	background-color: rgba(255, 255, 255, 0.1) !important;
	color: rgba(255, 255, 255, 0.95) !important;
}

/* Pulse for live */
.pulsing-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ff3e3e;
	box-shadow: 0 0 12px #ff3e3e;
}

/* Speaker Block - Flat & Depth Style */
.webinar-speaker {
	background-color: rgba(245, 248, 250, 0.6) !important;
	backdrop-filter: blur(10px);
	border: none !important;
	box-shadow: 
		0 10px 30px -10px rgba(0, 49, 67, 0.08),
		inset 0 1px 2px rgba(255, 255, 255, 0.8) !important;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.webinar-speaker:hover {
	transform: translateY(-8px);
	background-color: rgba(245, 248, 250, 0.9) !important;
	box-shadow: 
		0 30px 60px -12px rgba(0, 49, 67, 0.12),
		inset 0 1px 3px rgba(255, 255, 255, 1) !important;
}

.speaker-photo {
	box-shadow: 0 15px 35px -5px rgba(0, 49, 67, 0.2);
}

.speaker-photo img {
	transition: transform 0.3s ease;
}

.webinar-speaker:hover .speaker-photo img {
	transform: scale(1.05);
}

/* Sidebar Styling - Depth & Glassmorphism */
.webinar-sidebar .sticky {
	top: 120px;
	border: none !important;
	background-color: rgba(255, 255, 255, 0.85) !important;
	backdrop-filter: blur(15px);
	box-shadow: 
		0 40px 100px -20px rgba(0, 49, 67, 0.1),
		inset 0 1px 2px rgba(255, 255, 255, 0.5) !important;
	transition: all 0.4s ease;
}

.webinar-sidebar .sticky:hover {
	transform: translateY(-4px);
	box-shadow: 0 50px 120px -30px rgba(0, 49, 67, 0.15);
}

.webinar-sidebar .cypro-btn--accent {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.webinar-sidebar .cypro-btn--accent::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: -1;
}

.webinar-sidebar .cypro-btn--accent:hover::after {
	opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 1023px) {
	.webinar-hero__title {
		font-size: 3.5rem !important;
	}
	
	.hero-edge-divider {
		height: 60px;
	}
}

@media (max-width: 767px) {
	.webinar-hero__title {
		font-size: 2.5rem !important;
	}
	
	.webinar-grid {
		gap: 4rem;
	}
	
	.webinar-sidebar .sticky {
		position: relative;
		top: 0;
	}
}

/* --- Content Typography (Prose) --- */
.webinar-content .prose {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--color-primary-dark-2);
}

.webinar-content .prose p {
	margin-bottom: 2rem;
}

.webinar-content .prose h2, 
.webinar-content .prose h3 {
	color: var(--color-primary-dark-1);
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	font-weight: 800;
}

.webinar-content .prose ul {
	margin: 2rem 0;
	padding-left: 0;
	list-style: none;
}

.webinar-content .prose li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1rem;
	font-weight: 500;
}

/* Custom Cyber-Arrow Bullets */
.webinar-content .prose li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: 900;
	transition: transform 0.2s ease;
}

.webinar-content .prose li:hover::before {
	transform: translateX(3px);
}
