:root {
	--inactive-slide-width: 25vw;
	--active-slide-width: 50vw;
	--inactive-slide-height: 45vh;
	--active-slide-height: 60vh;
	--next-prev-size: 50px;
}

.od-podcast-slider.slider-container {
	width: 100vw;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
}

.od-podcast-slider .slider-wrapper {
	display: flex;
	align-items: flex-start;
	height: var(--active-slide-height);
	position: absolute;
	left: 0;
	transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.od-podcast-slider .slide {
	flex-shrink: 0;
	width: var(--inactive-slide-width);
	height: var(--inactive-slide-height);
	position: relative;
	transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1),
	height 0.6s cubic-bezier(0.77, 0, 0.175, 1);
	cursor: pointer;
	margin: 0;
	border-radius: 0;
}

.od-podcast-slider .slide.active {
	width: var(--active-slide-width);
	height: var(--active-slide-height);
	cursor: default;
}

.od-podcast-slider .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.od-podcast-slider .slide .text-block {
	position: absolute;
	width: 100px;
	top: 80%;
	right: 100%;
	margin-right: 20px;
	opacity: 0;
	transform: translateX(20px);
	pointer-events: none;
	transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
	transition-delay: 0.3s;
	color: #333;
	font-size: 12px;
	line-height: 1.5;
	font-style: italic;
	text-align: right;
	background: none;
}

.od-podcast-slider .slide.active .text-block {
	opacity: 1;
	transform: translateX(0);
}

.od-podcast-slider .prev-btn, .next-btn {
	position: absolute;
	top: 65%;
	background-color: orangered;
	color: white;
	border: none;
	width: var(--next-prev-size);
	height: var(--next-prev-size);
	line-height: var(--next-prev-size);
	text-align: center;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
}

.od-podcast-slider .prev-btn {
	left: 75%;
	transform: translate(-100%, calc(-50% + calc(var(--next-prev-size) / 2)));
}

.od-podcast-slider .next-btn {
	right: 25%;
	transform: translate(100%, calc(-50% - calc(var(--next-prev-size) / 2)));
}

.od-podcast-slider .prev-btn:disabled,
.od-podcast-slider .next-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.od-podcast-slider .slide-indicator {
	position: absolute;
	top: 66%;
	left: calc(75% + 25px);
	transform: translateX(-50%);
	padding: 5px 15px;
	font-size: 18px;
	font-weight: 700;
	z-index: 10;
}


@media (max-width: 768px) {
	.od-podcast-slider .slide .text-block {
		width: 100%;
		bottom: 0;
		left: 0;
		top: unset;
		right: unset;
		margin-right: 0;
		color: #fff;
		background-color: rgba(0, 0, 0, .75);
		padding: 10px;
		text-align: left;
		transform: unset;
	}

	.od-podcast-slider .slide-indicator {
		position: absolute;
		top: 85%;
		left: 50%;
		transform: translateX(-50%);
		background-color: orangered;
		color: #ffffff;
	}

	.od-podcast-slider .prev-btn, .next-btn {
		top: 50%;
		transform: translate(0, -50%) !important;
	}

	.od-podcast-slider .prev-btn {
		left: 0;
	}

	.od-podcast-slider .next-btn {
		right: 0;
	}

}