/**
 * Podcast Landing Page - Custom Styles
 * Radio Tel Aviv 102 & Sylla LXP
 */

/* =========================================
   Liebling Font Faces
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
	font-family: 'Liebling';
	src: url('../../fonts/Liebling/Liebling-Thin.woff2') format('woff2'),
		 url('../../fonts/Liebling/Liebling-Thin.woff') format('woff');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Liebling';
	src: url('../../fonts/Liebling/Liebling-Light.woff2') format('woff2'),
		 url('../../fonts/Liebling/Liebling-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Liebling';
	src: url('../../fonts/Liebling/Liebling-Regular.woff2') format('woff2'),
		 url('../../fonts/Liebling/Liebling-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Liebling';
	src: url('../../fonts/Liebling/Liebling-Medium.woff2') format('woff2'),
		 url('../../fonts/Liebling/Liebling-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Liebling';
	src: url('../../fonts/Liebling/Liebling-Bold.woff2') format('woff2'),
		 url('../../fonts/Liebling/Liebling-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Liebling';
	src: url('../../fonts/Liebling/Liebling-Heavy.woff2') format('woff2'),
		 url('../../fonts/Liebling/Liebling-Heavy.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Liebling';
	src: url('../../fonts/Liebling/Liebling-Black.woff2') format('woff2'),
		 url('../../fonts/Liebling/Liebling-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* =========================================
   Page Loader
   ========================================= */
.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #171717;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
	opacity: 0;
	visibility: hidden;
}

.page-loader-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.page-loader-spinner {
	position: relative;
	width: 80px;
	height: 80px;
}

.spinner-ring {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 4px solid transparent;
	border-top-color: #031FF4;
	border-radius: 50%;
	animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
	animation-delay: -0.45s;
	border-top-color: #031FF4;
}

.spinner-ring:nth-child(2) {
	animation-delay: -0.3s;
	border-top-color: #CE5BCB;
	width: 70px;
	height: 70px;
	top: 5px;
	left: 5px;
}

.spinner-ring:nth-child(3) {
	animation-delay: -0.15s;
	border-top-color: #031FF4;
	width: 60px;
	height: 60px;
	top: 10px;
	left: 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.page-loader-text {
	color: #fff;
	font-family: 'Liebling', 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 2px;
	animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

/* =========================================
   Base
   ========================================= */
.podcast-landing-page {
	font-family: 'Liebling', 'Open Sans', sans-serif;
	direction: rtl;
	text-align: right;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #171717;
	color: #fff;
	background-image: url('../../images/landing/body-bg.png');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.podcast-landing-page-hero{
	height: calc(100vh - 32px);
	max-height: 1200px;
	min-height: 700px;
	padding-top: 383px;
	padding-bottom: 2%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.podcast-landing-page-hero h1 strong{
	color: #FFF;
	text-align: center;
	font-family: Liebling;
	font-size: 100px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 6px;
}

.podcast-landing-page-hero h1 span{
	color: #FFF;
	font-family: Liebling;
	font-size: 92px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.podcast-landing-page-hero h2{
	color: #FFF;
	text-align: center;
	font-family: Liebling;
	font-size: 60px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 30px;
}

.podcast-landing-page-hero h3{
	color: #FFF;
	text-align: center;
	font-family: Liebling;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

/* Hero – responsive (standard breakpoints) */
@media (max-width: 1199px) {
	.podcast-landing-page {
		background-size: 100% auto;
	}
	.podcast-landing-page-hero {
		min-height: 600px;
		padding-top: 16%;
	}
	.podcast-landing-page-hero h1 strong {
		font-size: 80px;
		letter-spacing: 4px;
	}
	.podcast-landing-page-hero h1 span {
		font-size: 74px;
	}
	.podcast-landing-page-hero h2 {
		font-size: 48px;
		margin-top: 24px;
	}
	.podcast-landing-page-hero h3 {
		font-size: 32px;
	}
}

@media (max-width: 991px) {
	.podcast-landing-page {
		background-size: 120% auto;
		background-position: top center;
	}
	.podcast-landing-page-hero {
		min-height: 520px;
		padding-top: 14%;
		padding-bottom: 4%;
	}
	.podcast-landing-page-hero h1 strong {
		font-size: 60px;
		letter-spacing: 3px;
	}
	.podcast-landing-page-hero h1 span {
		font-size: 54px;
	}
	.podcast-landing-page-hero h2 {
		font-size: 36px;
		margin-top: 20px;
	}
	.podcast-landing-page-hero h3 {
		font-size: 26px;
	}
}

@media (max-width: 767px) {
	.podcast-landing-page {
		background-size: 150% auto;
	}
	.podcast-landing-page-hero {
		height: auto;
		min-height: 480px;
		padding-top: 100px;
		padding-bottom: 40px;
	}
	.podcast-landing-page-hero h1 strong {
		font-size: 42px;
		letter-spacing: 2px;
	}
	.podcast-landing-page-hero h1 span {
		font-size: 38px;
	}
	.podcast-landing-page-hero h2 {
		font-size: 28px;
		margin-top: 16px;
	}
	.podcast-landing-page-hero h3 {
		font-size: 20px;
	}
}

@media (max-width: 575px) {
	.podcast-landing-page {
		background-size: 180% auto;
	}
	.podcast-landing-page-hero {
		min-height: 400px;
		padding-top: 170px;
		padding-bottom: 32px;
	}
	.podcast-landing-page-hero h1 strong {
		font-size: 32px;
		letter-spacing: 1px;
	}
	.podcast-landing-page-hero h1 span {
		font-size: 28px;
	}
	.podcast-landing-page-hero h2 {
		font-size: 22px;
		margin-top: 12px;
	}
	.podcast-landing-page-hero h3 {
		font-size: 16px;
	}
}

.podcast-landing-page * {
	box-sizing: border-box;
}


.embla {
	max-width: 90%;
	margin: auto;
	--slide-height: 360px;
	--slide-spacing: 6px;
	--slide-size: 100%;
	--slide-spacing-sm: 6px;
	--slide-size-sm: 50%;
	--slide-spacing-lg: 6px;
	--slide-size-lg: calc(100% / 5);
  }
  .embla__viewport {
	overflow: hidden;
	padding-top: 40px;
	padding-bottom: 40px;
  }
  .embla__container {
	display: flex;
	touch-action: pan-y pinch-zoom;
	margin-left: calc(var(--slide-spacing) * -1);
  }
  @media (min-width: 750px) {
	.embla__container {
	  margin-left: calc(var(--slide-spacing-sm) * -1);
	}
  }
  @media (min-width: 1200px) {
	.embla__container {
	  margin-left: calc(var(--slide-spacing-lg) * -1);
	}
  }
  .embla__slide {
	min-width: 0;
	flex: 0 0 var(--slide-size);
	padding-left: var(--slide-spacing);
  }
  /* Mobile: one slide per view */
  @media (max-width: 749px) {
	.embla__slide {
	  flex: 0 0 100% !important;
	  padding-left: 0 !important;
	}
	.embla__container {
	  margin-left: 0 !important;
	}
  }
  @media (min-width: 750px) {
	.embla__slide {
	  flex: 0 0 var(--slide-size-sm);
	  padding-left: var(--slide-spacing-sm);
	}
  }
  @media (min-width: 1200px) {
	.embla__slide {
	  flex: 0 0 var(--slide-size-lg);
	  padding-left: 0;
	}
  }
  .embla__slide__number {
	border: 0.2rem solid var(--detail-medium-contrast);
	border-radius: 1.8rem;
	font-size: 4rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--slide-height);
	user-select: none;
  }
  .embla__controls {
	display: grid;
	grid-template-columns: auto 1fr;
	justify-content: space-between;
	gap: 1.2rem;
	margin-top: 1.8rem;
  }
  .embla__buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
	align-items: center;
  }
  .embla__button {
	-webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	touch-action: manipulation;
	display: inline-flex;
	text-decoration: none;
	cursor: pointer;
	border: 0;
	padding: 0;
	margin: 0;
	border: 0.2rem solid var(--detail-medium-contrast);
	width: 3.6rem;
	height: 3.6rem;
	z-index: 1;
	border-radius: 50%;
	color: var(--text-body);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(0deg);
  }
  .embla__button--disabled {
	color: var(--detail-high-contrast);
  }
  .embla__button__svg {
	width: 35%;
	height: 35%;
  }
  .embla__dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	margin-right: calc((2.6rem - 1.4rem) / 2 * -1);
  }
  .embla__dot {
	-webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	touch-action: manipulation;
	display: inline-flex;
	text-decoration: none;
	cursor: pointer;
	border: 0;
	padding: 0;
	margin: 0;
	width: 2.6rem;
	height: 2.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: relative;
  }
  .embla__dot:before,
  .embla__dot:after {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 50%;
	position: absolute;
	display: flex;
	align-items: center;
	content: '';
  }
  .embla__dot:before {
	border: 0.2rem solid var(--detail-medium-contrast);
  }
  .embla__dot:after {
	border: 0.2rem solid var(--text-body);
	opacity: 0;
  }
  .embla__dot--selected:after {
	opacity: 1;
  }
  .embla__slide{
	transition: all 0.3s ease-in-out;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .slide-inner {
	width: 96%;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .slide-inner {
	position: relative;
  }

  .slide-inner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	object-fit: contain;
  }

  /* Play button overlay on slider slides */
  .slide-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
  }

  .slide-inner[data-youtube-url]:hover .slide-play-btn {
	opacity: 1;
  }

  .slide-inner[data-youtube-url]:hover img {
	filter: brightness(0.7);
	transition: filter 0.3s ease;
  }

  .is-snapped{
	transform: scale(1.2)!important;
	z-index: 99999999;
  }

  .podcast-embla__prev,
  .podcast-embla__next{
	position: absolute;
	top: 50%;
	border: none;
  }

  .podcast-embla__prev:focus,
  .podcast-embla__next:focus,
  .podcast-embla__prev:hover,
  .podcast-embla__next:hover{
	background-color: transparent;
  }

  .podcast-embla__prev{
	left: 0;
  }

  .podcast-embla__next{
	right: 0;
  }

/* =========================================
   Embla slider – responsive
   ========================================= */
@media (max-width: 1199px) {
	.embla {
		--slide-height: 320px;
		--slide-size-lg: calc(100% / 4);
	}
	.embla__viewport {
		padding-top: 36px;
		padding-bottom: 36px;
	}
	.is-snapped {
		transform: scale(1.15) !important;
	}
}

@media (max-width: 991px) {
	.embla {
		--slide-height: 280px;
		--slide-size-sm: calc(100% / 3);
		max-width: 94%;
	}
	.embla__viewport {
		padding-top: 32px;
		padding-bottom: 32px;
	}
	.is-snapped {
		transform: scale(1.12) !important;
	}
	.podcast-embla__prev svg,
	.podcast-embla__next svg {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 767px) {
	.embla {
		--slide-height: 240px;
		--slide-size: 100%;
		--slide-spacing: 0px;
		max-width: 100%;
	}
	.embla__viewport {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.embla__slide {
		flex: 0 0 100% !important;
		padding-left: 0 !important;
	}
	.embla__container {
		margin-left: 0 !important;
	}
	.is-snapped {
		transform: scale(1) !important;
	}
	.podcast-embla__prev,
	.podcast-embla__next {
		top: auto;
		bottom: -36px;
	}
	.podcast-embla__prev {
		left: calc(50% - 40px);
	}
	.podcast-embla__next {
		right: calc(50% - 40px);
	}
	.podcast-embla__prev svg,
	.podcast-embla__next svg {
		width: 40px;
		height: 40px;
	}
	.podcast-landing-slider .container {
		padding-bottom: 48px;
	}
}

@media (max-width: 575px) {
	.embla {
		--slide-height: 200px;
		--slide-size: 100%;
		--slide-spacing: 0px;
		max-width: 100%;
	}
	.embla__viewport {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.embla__slide {
		flex: 0 0 100% !important;
		padding-left: 0 !important;
	}
	.embla__container {
		margin-left: 0 !important;
	}
	.is-snapped {
		transform: scale(1) !important;
	}
	.podcast-embla__prev,
	.podcast-embla__next {
		bottom: -32px;
	}
	.podcast-embla__prev {
		left: calc(50% - 69px);
	}
	.podcast-embla__next {
		right: calc(50% - 51px);
	}
	.podcast-embla__prev svg,
	.podcast-embla__next svg {
		
	}
	.podcast-landing-slider .container {
		padding-bottom: 40px;
	}
}

  .podcast-landing-about{
	margin-top: 146px;
	margin-bottom: 146px;
  }
  .podcast-landing-about h3,
  .podcast-landing-episodes h3,
  .landing-form	h5{
	color: #FFF;
	position: relative;
	text-align: center;
	font-family: Liebling;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 64.8px */
	letter-spacing: 1.8px;
  }
  .landing-form	h5{
	color: #FFF;
	text-align: center;
	font-family: Liebling;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
  }
  .podcast-landing-about h3::before,
  .podcast-landing-episodes h3::before,
  .landing-form	h5::before{
	content: '';
	position: absolute;
	top: 45%;
	left: calc(100% + 10px);
	width: 32px;
	height: 3px;
	border-radius: 100px;
	background: #FFF;
  }
  .podcast-landing-about h3::after,
  .podcast-landing-episodes h3::after,
  .landing-form	h5::after{
	content: '';
	position: absolute;
	top: 45%;
	right: calc(100% + 10px);
	width: 32px;
	height: 3px;
	border-radius: 100px;
	background: #FFF;
  }
  .podcast-about-row-overlay-row{
	padding-top: 65px;
	padding-bottom: 65px;
  }
  .podcast-about-row-overlay{
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(3, 31, 244, 0.50) 29.81%, rgba(3, 31, 244, 0.10) 100%);
	pointer-events: none;
	opacity: 0.2;
  }
  .podcast-about-row-overlay-content{
	color: #FFF;
	text-align: center;
	font-family: "Open Sans", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 32.4px */
  }
  .podcast-landing-episodes .container{
	max-width: 1288px;
  }

  .episode-card{
	border-radius: 17.544px;
	background: #000;
	padding: 14px 13px;
	position: relative;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
	            transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
  }

  .episode-card.animate-in {
	opacity: 1;
	transform: translateY(0) scale(1);
  }

  .card-image{
	border-radius: 10.965px;
	overflow: hidden;
	margin-bottom: 15px;
	position: relative;
  }

  .card-image img {
	transition: transform 0.6s ease, opacity 0.6s ease, filter 0.3s ease;
	opacity: 0;
	transform: scale(1.1);
  }

  /* Play button overlay on episode card images */
  .card-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
  }

  .card-image[data-youtube-url]:hover .card-play-btn {
	opacity: 1;
  }

  .card-image[data-youtube-url]:hover img {
	filter: brightness(0.7);
  }

  .episode-card.animate-in .card-image img {
	opacity: 1;
	transform: scale(1);
  }

  .podcast-landing-episodes .col-md-3{
	padding-right: 7px;
    padding-left: 7px;
	margin-bottom: 12px;
  }

  .card-content h4{
	color: #FFF;
	text-align: right;
	font-family: Liebling;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 18px */
  }

  .card-content h5{
	color: #FFF;
	text-align: right;
	font-family: Liebling;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
  }

  .card-content-inner p{
	color: #FFF;
	text-align: right;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 16.8px */
  }

  .card-content-inner p a{
	color: #FC51F8;
  }
  .height-wrap{
	min-height: 72px;
	margin-bottom: 14px;
  }

  /* Episode Popup Styles */
  .episode-popup {
	position: absolute;
	width: 345px;
	background: #fff;
	border-radius: 12px;
	padding: 22px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	border-radius: 12px;
	background: #FFF;
	box-shadow: 0 0 22px 0 #000;
	text-align: right;
	max-height: 80vh;
	overflow-y: auto;
  }

  .episode-popup h4 {
	color: #000;
	text-align: right;
	font-family: Liebling;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 18px */
  }

  .episode-popup h5 {
	color: #000;
	text-align: right;
	font-family: Liebling;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 18px */
	margin-bottom: 14px;
  }

  .episode-popup p {
	color: #000;
	text-align: right;
	font-family: Liebling;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 18.2px */
  }

  .episode-popup-close {
	position: absolute;
	top: 10px;
	left: 10px;
	background: transparent;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s;
  }

  .episode-popup-close:hover {
	opacity: 0.7;
	background-color: transparent;
  }
  .section-separator{
	margin-top: 14px;
	margin-bottom: 100px;
  }

  .episode-popup-link{
	color: var(--ce-5-bcb, #CE5BCB);
	text-align: right;
	font-family: Liebling;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	margin-top: 10px;;
  }

  /* YouTube Modal Styles */
  .youtube-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .youtube-modal.active {
	opacity: 1;
	visibility: visible;
  }

  .youtube-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(4px);
  }

  .youtube-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	width: 90%;
	max-width: 1200px;
	height: 90%;
	max-height: 675px;
	transition: transform 0.3s ease;
  }

  .youtube-modal.active .youtube-modal-content {
	transform: translate(-50%, -50%) scale(1);
  }

  .youtube-modal-iframe-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }

  .youtube-modal-iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }

  .youtube-modal-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 8px;
	z-index: 10001;
	transition: opacity 0.2s, transform 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .youtube-modal-close:hover {
	opacity: 0.7;
	transform: scale(1.1);
  }

  .landing-form .container{
	max-width: 1289px;
	background-image: url(../../images/landing/form-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	padding-top: 64px;
	padding-bottom: 64px;
  }

  .landing-form h6{
	color: #FFF;
	text-align: center;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
  }
  .landing-form{
	margin-bottom: 73px!important;
  }
  .podcast-landing-wrapper{
	margin-top: 25px!important;
  }
  .podcast-landing-wrapper input{
	border-radius: 8px;
	background-color: #171717!important;
	border: none!important;
	height: 52px;
  }
  .podcast-landing-wrapper label{
	color: #FFF!important;
	text-align: center!important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	font-family: "Open Sans", sans-serif;
  }
  .podcast-landing-wrapper button[type="submit"]{
	border-radius: 73.1px!important;
	border: none!important;
	background: linear-gradient(270deg, #031FF4 0%, #CE5BCB 95%)!important;
	width: 156px;
	height: 44px!important;
	color: #FFF;
	text-align: center!important;
	font-family: "Open Sans", sans-serif;
	font-size: 14px!important;
	font-style: normal;
	font-weight: 700!important;
	line-height: 100%; /* 14px */
	margin: 0 auto!important;
	box-shadow: none!important;
  }
  .podcast-landing-footer ul{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 17px;
	list-style: none;
  }
  .podcast-landing-footer{
	margin-bottom: 250px;
  }

/* =========================================
   Responsive text – About, Episodes, Form
   ========================================= */
@media (max-width: 1199px) {
	.podcast-landing-about h3,
	.podcast-landing-episodes h3,
	.landing-form h5 {
		font-size: 30px;
		letter-spacing: 1.5px;
	}
	.podcast-about-row-overlay-content {
		font-size: 17px;
	}
	.card-content h4 {
		font-size: 17px;
	}
	.card-content h5 {
		font-size: 13px;
	}
	.card-content-inner p {
		font-size: 13px;
	}
	.landing-form h6 {
		font-size: 15px;
	}
	.podcast-landing-about {
		margin-top: 100px;
		margin-bottom: 100px;
	}
	.podcast-about-row-overlay-row {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

@media (max-width: 991px) {
	.podcast-landing-about h3,
	.podcast-landing-episodes h3,
	.landing-form h5 {
		font-size: 26px;
		letter-spacing: 1.2px;
	}
	.podcast-landing-about h3::before,
	.podcast-landing-episodes h3::before,
	.landing-form h5::before,
	.podcast-landing-about h3::after,
	.podcast-landing-episodes h3::after,
	.landing-form h5::after {
		width: 24px;
	}
	.podcast-about-row-overlay-content {
		font-size: 16px;
	}
	.card-content h4 {
		font-size: 16px;
	}
	.card-content h5 {
		font-size: 13px;
	}
	.card-content-inner p {
		font-size: 13px;
	}
	.landing-form h6 {
		font-size: 14px;
	}
	.podcast-landing-wrapper label {
		font-size: 15px;
	}
	.podcast-landing-wrapper button[type="submit"] {
		font-size: 13px !important;
	}
	.podcast-landing-about {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	.podcast-about-row-overlay-row {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.landing-form .container {
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.height-wrap {
		min-height: 64px;
		margin-bottom: 12px;
	}
}

@media (max-width: 767px) {
	.podcast-landing-about h3,
	.podcast-landing-episodes h3,
	.landing-form h5 {
		font-size: 22px;
		letter-spacing: 1px;
	}
	.podcast-landing-about h3::before,
	.podcast-landing-episodes h3::before,
	.landing-form h5::before,
	.podcast-landing-about h3::after,
	.podcast-landing-episodes h3::after,
	.landing-form h5::after {
		width: 20px;
		left: calc(100% + 6px);
		right: calc(100% + 6px);
	}
	.podcast-about-row-overlay-content {
		font-size: 15px;
		line-height: 170%;
	}
	.card-content h4 {
		font-size: 15px;
	}
	.card-content h5 {
		font-size: 12px;
	}
	.card-content-inner p {
		font-size: 12px;
	}
	.landing-form h6 {
		font-size: 13px;
	}
	.podcast-landing-wrapper label {
		font-size: 14px;
	}
	.podcast-landing-wrapper button[type="submit"] {
		font-size: 12px !important;
	}
	.podcast-landing-about {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	.podcast-about-row-overlay-row {
		padding-top: 32px;
		padding-bottom: 32px;
	}
	.landing-form .container {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.podcast-landing-wrapper {
		margin-top: 20px !important;
	}
	.section-separator {
		margin-bottom: 60px;
	}
	.height-wrap {
		min-height: 56px;
		margin-bottom: 10px;
	}
	.podcast-landing-footer {
		margin-bottom: 160px;
	}
	.youtube-modal-content {
		width: 95%;
		height: 50%;
		max-height: 400px;
	}
	.youtube-modal-close {
		top: -40px;
	}
	.youtube-modal-close svg {
		width: 28px;
		height: 28px;
	}
	.page-loader-spinner {
		width: 60px;
		height: 60px;
	}
	.episode-card {
		transform: translateY(30px) scale(0.97);
		transition: opacity 0.6s ease, transform 0.6s ease;
	}
	.episode-card.animate-in {
		transform: translateY(0) scale(1);
	}
	.spinner-ring:nth-child(2) {
		width: 50px;
		height: 50px;
	}
	.spinner-ring:nth-child(3) {
		width: 40px;
		height: 40px;
	}
	.page-loader-text {
		font-size: 16px;
	}
}

@media (max-width: 575px) {
	.podcast-landing-about h3,
	.podcast-landing-episodes h3,
	.landing-form h5 {
		font-size: 18px;
		letter-spacing: 0.8px;
	}
	.podcast-landing-about h3::before,
	.podcast-landing-episodes h3::before,
	.landing-form h5::before,
	.podcast-landing-about h3::after,
	.podcast-landing-episodes h3::after,
	.landing-form h5::after {
		width: 16px;
		left: calc(100% + 4px);
		right: calc(100% + 4px);
	}
	.podcast-about-row-overlay-content {
		font-size: 14px;
		line-height: 165%;
	}
	.card-content h4 {
		font-size: 14px;
	}
	.card-content h5 {
		font-size: 11px;
	}
	.card-content-inner p {
		font-size: 11px;
	}
	.landing-form h6 {
		font-size: 12px;
	}
	.podcast-landing-wrapper label {
		font-size: 13px;
	}
	.podcast-landing-wrapper button[type="submit"] {
		font-size: 11px !important;
	}
	.podcast-landing-about {
		margin-top: 48px;
		margin-bottom: 48px;
	}
	.podcast-about-row-overlay-row {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.landing-form .container {
		padding-top: 32px;
		padding-bottom: 32px;
	}
	.podcast-landing-wrapper {
		margin-top: 16px !important;
	}
	.section-separator {
		margin-bottom: 40px;
		display: none;
	}
	.height-wrap {
		min-height: 48px;
		margin-bottom: 8px;
	}
	.podcast-landing-footer {
		margin-bottom: 120px;
	}
	.landing-form {
		margin-bottom: 48px !important;
	}
	.episode-popup {
		width: calc(100% - 20px);
		max-width: 345px;
		padding: 16px;
	}
	.episode-popup h4 {
		font-size: 16px;
	}
	.episode-popup h5 {
		font-size: 13px;
	}
	.episode-popup p {
		font-size: 13px;
	}
	.youtube-modal-content {
		width: 98%;
		height: 45%;
		max-height: 300px;
	}
	.youtube-modal-close {
		top: -35px;
	}
	.youtube-modal-close svg {
		width: 24px;
		height: 24px;
	}
	.page-loader-spinner {
		width: 50px;
		height: 50px;
	}
	.spinner-ring {
		border-width: 3px;
	}
	.spinner-ring:nth-child(2) {
		width: 42px;
		height: 42px;
		top: 4px;
		left: 4px;
	}
	.spinner-ring:nth-child(3) {
		width: 34px;
		height: 34px;
		top: 8px;
		left: 8px;
	}
	.page-loader-text {
		font-size: 14px;
		letter-spacing: 1px;
	}
	.page-loader-content {
		gap: 20px;
	}
	.episode-card {
		transform: translateY(25px) scale(0.98);
		transition: opacity 0.5s ease, transform 0.5s ease;
	}
	.episode-card.animate-in {
		transform: translateY(0) scale(1);
	}
	.card-image img {
		transition: transform 0.5s ease, opacity 0.5s ease;
	}
}