﻿/* ▼▼▼▼▼ 세팅 ▼▼▼▼▼ */
.cs_pointer {
	cursor: pointer;
}



/* ▼▼▼▼▼ 상단 영상 ▼▼▼▼▼ */
.shorts-wrapper {
	width: 100%;
	aspect-ratio: 9 / 16;
	position: relative;
	overflow: hidden;
}

.shorts_iframe_M {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.shorts-bg-video-wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background: url('/UploadFile/event/realmodel_H250523/intro.jpg') no-repeat top center / contain;
	aspect-ratio: 9 / 12; /* Shorts 비율 유지 */
}



.shorts_iframe_down {
	width: 380px;
	height: 675px;
	margin-top: 320px;
	border-radius: 20px;
	overflow: hidden;
	border: 0;
}



@media screen and (max-width: 767px) {
	.shorts-bg-video-wrap {
		background: url('/UploadFile/event/realmodel_H250523/mo_intro.jpg') no-repeat top center / contain;
	}


	.shorts_iframe_down {
		width: 86%;
		height: 114.5%;
		margin: 40vw 0 10vw 0;
		border-radius: 20px;
		overflow: hidden;
	}
}


/*원조현 메인 영상 비율이 다른 거 같아 이것만 클래스명 M28로 설정*/
.shorts_iframe_M28 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 95%;
	border: 0;
}


/* ▼▼▼▼▼ before 슬라이드 ▼▼▼▼▼ */

.slide_wrap_5 {
	background-color: #464451;
	border-radius: 20px;
	padding: 40px 30px;
	overflow: hidden;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}


.slide_container_5 {
	/*display: flex;*/
	/*transition: transform 0.4s ease;*/
	/*width: 300%; */ /* 슬라이드 3개 */

	display: flex;
	gap: 20px;
	transition: transform 0.4s ease;
	width: max-content;
}

.slide_item_5 {
	/*width: 180px;*/
	/*height: 200px;*/
	/*margin-right: 10px; */ /* ✅ 이미지 사이 여백 */
	/*flex-shrink: 0;*/

	width: 300px;
	flex-shrink: 0;
}

	.slide_item_5:last-child {
		margin-right: 0; /* 마지막은 여백 없음 */
	}

	.slide_item_5 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 10px;
	}

/* 페이지 점 (dot) */
.slide_pagination_5 {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 10px;
}

.dot_5 {
	width: 8px;
	height: 8px;
	border: 1px solid #fff;
	background: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
}

	.dot_5.active {
		background: #fff;
	}


/* ▼▼▼▼▼ after 슬라이드 ▼▼▼▼▼ */

.slide_wrap_sec5 {
	background-color: #503AB6;
	border-radius: 20px;
	padding: 40px 30px;
	overflow: hidden;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.slide_container_sec5 {
	display: flex;
	transition: transform 0.4s ease;
	gap: 20px;
	width: fit-content;
}

.slide_item_sec5 {
	width: 300px;
	margin-right: 10px;
	flex-shrink: 0;
}

	.slide_item_sec5 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 10px;
	}

.slide_pagination_sec5 {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 10px;
}

.dot_sec5 {
	width: 8px;
	height: 8px;
	background: none;
	border: 1px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
}

	.dot_sec5.active {
		background: #fff;
	}




/* ▼▼▼▼▼ 원더체인지 미리보기 ▼▼▼▼▼ */

.section_last {
	background-color: #333333;
	padding: 0 0 40px 0;
	text-align: center;
}

.section_img {
	width: 100%;
	max-width: 800px;
	display: block;
	margin: 0 auto;
}

.section_img_70 {
	width: 70%;
	max-width: 800px;
	display: block;
	margin: 0 auto;
}

.next_preview_wrap {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.preview_thumb {
	width: 30%;
	border-radius: 12px;
	object-fit: cover;
}



/* ▼▼▼▼▼ 네비 ▼▼▼▼▼ */
.nav_box {
	display: flex;
	justify-content: space-between;
	background-color: rgb(0 0 0 / 80%);
	border-radius: 15px;
	padding: 20px;
	gap: 5px;
}

.nav_btn {
	flex: 1;
	text-align: center;
	padding: 10px 0;
	color: white;
	/*font-weight: 500;*/
	border-radius: 15px;
	transition: 0.3s;
	text-decoration: none;
	font-size: 16px;
}

	.nav_btn.active {
		background-color: white;
		color: black;
		border-radius: 40px;
		font-weight: 700;
	}


.nav_box.fixed {
	position: fixed;
	/*bottom: 0;*/
	top: 0;
	width: 90%;
	max-width: 800px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	transition: opacity 1s ease;
	opacity: 1;
}

	.nav_box.fixed.hidden {
		opacity: 0;
	}





@media screen and (max-width: 767px) {

	.slide_wrap_5,
	.slide_wrap_sec5 {
		max-width: 360px;
		padding: 20px 10px;
	}


	.slide_item_5,
	.slide_item_sec5 {
		width: 180px;
	}

	.slide_pagination_5,
	.slide_pagination_sec5 {
		margin-top: 10px;
		gap: 6px;
	}

	.slide_container_5,
	.slide_container_sec5 {
		gap: 10px;
	}

	.preview_thumb {
		width: 110px;
	}


	.nav_box {
		padding: 10px;
	}

	.nav_btn {
		padding: 6px 0;
		font-size: 12px;
	}

}
