/* ── Section wrapper – full width ── */
.podcast-section {
	width: 100%;
	background: linear-gradient(135deg, #0b2540 0%, #12506d 45%, #038f6a 100%);
	padding: 35px 18vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	position: relative;
	overflow: hidden;
	background-image: url(https://www.fgcu.edu/your-university/podcast/images/podcast-bg2.jpg); 
	background-size: cover;	
}

/* Radial glow */
.podcast-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 80% at 20% 50%, rgba(26,107,114,0.22) 0%, transparent 70%),
		radial-gradient(ellipse 40% 60% at 80% 50%, rgba(42,170,108,0.12) 0%, transparent 70%);
	pointer-events: none;
}

/* ── Left column ── */
.left {
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.headline {
	color: #fff;
	font-family: 'rig-sans';
	font-weight: 400;
	margin-bottom: 18px;
	font-size: 40px;		
}


.subtext {
	font-size: 23px;
	color: #fff;
	max-width: 730px;
	margin-bottom: 30px;
}

.img-platform {
	margin: 0 auto; 
	width: 30px;
}

/* ── Right column – thumbnail ── */
.right {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.right img {
	border-radius: 20px;
	filter: drop-shadow(0 0 0.75rem #0b2540);		
}

.thumbnail::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%);
	pointer-events: none;
}

.thumb-title {
	font-family: 'Playfair Display', serif;
	color: var(--white);
	font-size: 28px;
	line-height: 1.15;
	position: relative;
	z-index: 1;
}

.thumb-title em {
	font-style: italic;
	display: block;
}

.thumb-footer {
	display: flex;
	align-items: center;
	gap: 7px;
	position: relative;
	z-index: 1;
}

.thumb-logo {
	display: flex;
	align-items: center;
	gap: 7px;
}

.thumb-logo-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.thumb-logo-icon svg {
	width: 18px;
	height: 18px;
	fill: white;
}

.thumb-logo-text {
	color: white;
	font-size: 9.5px;
	font-weight: 600;
	line-height: 1.3;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

#outline-btn {
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;		
}	

#outline-btn:hover {
	color: #004785;
	border: 1px solid #004785;
	background-color: #fff;	
}	

a.button, input[type="submit"].button, button.button {
	text-transform: none;
	border-radius: 10px;
	margin-left: 0px;
}	

a.button:hover, .close-policy.button:hover {
	background-color: #fff;	
	color: #00794c;
}


/*listen on*/

.listen-on {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 15px 0px;	
}

.listen-label {
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.platforms {
	display: flex;
	align-items: center;
	gap: 25px;
	flex-wrap: wrap;
}

.platform-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--white);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	opacity: 0.85;
	transition: opacity 0.15s;
}		



/* ── Responsive ── */
@media (max-width: 900px) {
	.podcast-section {
		flex-direction: column;
		padding: 52px 6vw;
		gap: 40px;
		align-items: flex-start;
		padding-top:10px;	
	}
	.right { align-self: center; }
	.left {text-align: center; }

	.img-platform {
		margin: 0 auto; 
		width: 40px;
	}

	.img-podcast {
		display: none;
	}

	.headline {
		margin-top: 0px;
		font-size: 35px;
	}

	.subtext {
		margin-bottom: 15px;
		font-size: 18px; 
	}

	.podcast-section { 
		background-image: url(https://www.fgcu.edu/your-university/images/podcast-bg-mobile2v.jpg); 
		background-position: bottom;
	}


	.listen-on {
		display: inline;
		padding: 15px 0px;
		max-width: 100%;
	}

	.platforms {
		display: flex;
		align-items: center;
		gap: 30px;
		flex-wrap: wrap;
		justify-content: center;		
	}	

}	

/*end podcast */	
.video-modal {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.video-wrapper {
	width: 90%;
	max-width: 900px;
	aspect-ratio: 16/9;
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
}

.video-card {
	height: 100%;
	cursor: pointer;
}


.video-card {
	position: relative;
	height: 100%;
	cursor: pointer;
}


.video-card::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 72px;
	height: 72px;

	background-color: rgba(255, 255, 255, 0.25);

	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpolygon points='26,20 26,44 46,32' fill='white'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-position: 56% 50%;


	border: 4px solid #fff;
	border-radius: 50%;

	pointer-events: none;
}


.video-card:hover::after {
	transform: translate(-50%, -50%) scale(1.08);
}








.carousel {
	overflow: hidden;
	width: 100%;
	position: relative;
	outline: none;
	z-index: 1;
	touch-action: pan-y;
}

.carousel-track {
	display: flex;
	transition: transform 0.6s ease-in-out;
	will-change: transform;
}




.carousel.dragging .carousel-track {
	transition: none !important;
}


.slide {
	min-width: 100%;
	box-sizing: border-box;
	padding: 4rem 2rem;
	scale: .98;
	background-size: cover !important;

	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Standard property */
}



.carousel:focus {
	outline: 3px solid #00794c;
	outline-offset: 4px;
}


.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: -1rem;
	margin-bottom: 0rem;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #c7c7c7;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.25s ease;
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
	background: #6b6b6b;
}

.carousel-dot.active {
	width: 24px;
	background: #00794c; /* FGCU green */
}

.carousel-dot:focus-visible {
	outline: 2px solid #00794c;
	outline-offset: 3px;
}



@media (prefers-reduced-motion: reduce) {
	.carousel-track {
		transition: none;
	}
}


.carousel-buttons {
	display: flex;
	gap: 0.5rem;
	justify-content: space-between;
	top: -210px;
	margin: 0 -65px;
	position: relative;
}



.slide h2, .slide h3 {
	color: #fff;
	background: none;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: unset;
	line-height: 1.1;
}

.slide {
	color: #fff;
	background-color: #004785;
	padding-right: 52%;
	padding-left: 12%;
	box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 8%);
	border-radius: 8px;
}

.slide:hover {
	cursor: move; /* fallback if grab cursor is unsupported */
	cursor: grab;
	cursor: -moz-grab;
	cursor: -webkit-grab;
}

@media (max-width: 768px) {	
	.slide {
		padding: 10%;
		padding-top: 50%;
		background-size: cover !important;
		background-position: center;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		scale: .95;
	}

	.slide h2, .slide h3 {
		font-size: 1.6rem;
		margin-bottom: 0;
	}
}
