.single-container{
	position: relative;
	width: 100%;
	padding: 15vh 4vw;
	display: flex;
}

.single-left,
.single-right{
	width: 50%;
	position: relative;
	padding: 0 5vw;
}

.single-left .star{
	position: absolute;
	left: 80%;
	bottom: 90%;
	width: 15%;
	z-index: 10;
}
.single-festival .single-left .star svg path{
	fill: var(--yellow);
}



.slider_container{
	position: relative;
	width: 100%;
}
.slider_container .slider-item {
	position: absolute;
	width: 100%;
}
.slider_container .slider-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.single-content-tab.info{
	
}

.logo_container{
	width: 20%;
	max-width: 200px;
	margin-bottom: 2vh;
}
.logo_container img{
	width: 100%;
	height: auto;
}

.single-content-tab.info .title{
	font-size:  max(5vw,3rem);
	line-height: max(5vw,3rem);
	margin-bottom: 2vh;
}
.single-content-tab.info .subtitle{
	font-size: max(2vw,1.5rem);
	line-height:  max(2vw,1.5rem);
	margin-bottom: 2vh;
}
.single-content-tab.info .description{
	margin-top: 5vh;
	font-size: 16px;
	line-height: 18px;
}

.single-highlights-nav{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 2vw;
	margin-top: 10vh;
}
.single .highlight{
	position: relative;
	opacity: 0.8;
	width: 7%;
	min-width: 35px;
	aspect-ratio: 1;
	opacity: 0.7;
	cursor: pointer;
}
.single .highlight a{
	color: #fff;
}
.single .highlight .icon{
	width: 100%;
	text-align: center;
}
.single .highlight .icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	margin-bottom: 10px;
}
.single .highlight .icon .icon-title{
	font-size: 0.7rem;
}

.single .highlight:hover{
	opacity: 1;
}
.single .highlight .info{
	position: absolute;
	bottom: 110%;
	display: none;
	width: auto;
	white-space: nowrap;
	background-color: #fff;
	color: #000;
	border-radius: 10px;
	font-size: 0.8rem;
	padding: 10px;
}
.single .highlight:hover .info{
	display: block;
}


/* ===== SLIDER CONTAINER ===== */

.slider_container {
	width: 100%;
	position: relative;
}

/* ===== PHOTO AREA ===== */

.photo_container {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 10px;
	background: #111;
}

/* ===== SLIDES ===== */

.slider-item {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transform: translateX(0);
	z-index: 1;
	overflow: hidden;
}

.slider-item.active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.slider-item.animating {
	opacity: 1;
	z-index: 3;
	pointer-events: none;
	transition: transform 1200ms cubic-bezier(0.77, 0, 0.175, 1);
}

/* ===== IMAGE ===== */

.slider-cover {
	width: 115%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: translateX(0);
	transition: transform 1200ms cubic-bezier(0.77, 0, 0.175, 1);
	will-change: transform;
}

/* ===== POSITION STATES ===== */

.slider-item.enter-from-right {
	transform: translateX(100%);
}

.slider-item.enter-from-left {
	transform: translateX(-100%);
}

.slider-item.enter-to-center {
	transform: translateX(0);
}

.slider-item.leave-to-left {
	transform: translateX(-100%);
}

.slider-item.leave-to-right {
	transform: translateX(100%);
}

/* ===== PARALLAX EFFECT ===== */

.slider-item.enter-from-right .slider-cover {
	transform: translateX(-12%);
}

.slider-item.enter-from-left .slider-cover {
	transform: translateX(12%);
}

.slider-item.enter-to-center .slider-cover {
	transform: translateX(0);
}

.slider-item.leave-to-left .slider-cover {
	transform: translateX(12%);
}

.slider-item.leave-to-right .slider-cover {
	transform: translateX(-12%);
}

/* ===== CAPTIONS ===== */

.slider_captions {
	position: relative;
	margin-top: 24px;
	min-height: 36px;
	overflow: hidden;
}

.slider-caption {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}

.slider-caption.active {
	position: relative;
	opacity: 0.5;
	pointer-events: auto;
}

/* Title + subtitle blocks */
.slider-caption .title,
.slider-caption .subtitle {
	overflow: hidden;
}
.slider-caption .title{
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 5px;
}
.slider-caption .subtitle{
	font-size: 13px;
	line-height: 13px;
}

/* Word animation */
.slider-caption .caption-word {
	display: inline-block;
	transform: translateY(110%);
	opacity: 0;

	transition:
		transform 700ms cubic-bezier(0.77, 0, 0.175, 1),
		opacity 450ms ease;
}

/* Active state */
.slider-caption.active .caption-word {
	transform: translateY(0);
	opacity: 1;
}

/* Leaving state */
.slider-caption.leaving .caption-word {
	transform: translateY(-110%);
	opacity: 0;
}

/* ===== DOTS ===== */

.dots_container {
	position: absolute;
	right: 0;
	bottom: 16px;
	display: flex;
	gap: 5px;
	margin-top: 24px;
}

.slider-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: 0;
	background: #fff;
	opacity: 0.35;
	cursor: pointer;
	padding: 0;
	transition: opacity 0.3s ease;
}

.slider-dot.active {
	opacity: 1;
}

@media(max-width:992px){
	.single-container{
		flex-direction: column;
	}
	.single-left,
	.single-right{
		width: 100%;
	}
	.single-highlights-nav{
		gap: 15px;
	}
	.single .highlight .icon .icon-title {
		font-size: 0.6rem;
	}
	.single-content-tab.info .description{
		font-size: 14px;
		line-height: 16px;
	}

}