/* =========================================================
 * YouTube Gallery List UI
 * ========================================================= */
.yt-gallery-card{
	border:1px solid #e9ecef;
	border-radius:16px;
	overflow:hidden;
	background:#fff;
	box-shadow:0 10px 30px rgba(0,0,0,.05);
	transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	height:100%;
}
.yt-gallery-link:hover .yt-gallery-card{
	transform:translateY(-4px);
	box-shadow:0 18px 40px rgba(0,0,0,.10);
	border-color:#dfe3e8;
}
.yt-thumb-wrap{
	position:relative;
	display:block;
	background:#111;
	overflow:hidden;
}
.yt-thumb-wrap::before{
	content:"";
	display:block;
	padding-top:56.25%;
}
.yt-thumb-wrap img{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .35s ease;
}
.yt-gallery-link:hover .yt-thumb-wrap img{
	transform:scale(1.05);
}
.yt-play-badge{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	width:68px;
	height:48px;
	border-radius:14px;
	background:rgba(255,0,0,.90);
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow:0 10px 24px rgba(0,0,0,.25);
	transition:transform .2s ease, background .2s ease;
}
.yt-gallery-link:hover .yt-play-badge{
	transform:translate(-50%,-50%) scale(1.08);
	background:rgba(230,0,0,.95);
}
.yt-play-badge i{
	color:#fff;
	font-size:24px;
	margin-left:3px;
}
.yt-type-badge{
	position:absolute;
	left:12px;
	top:12px;
	z-index:2;
	display:inline-flex;
	align-items:center;
	gap:6px;
	padding:6px 10px;
	border-radius:999px;
	font-size:12px;
	font-weight:700;
	line-height:1;
	background:rgba(17,17,17,.82);
	color:#fff;
	backdrop-filter:blur(6px);
}
.yt-type-badge.yt-shorts{
	background:linear-gradient(135deg,#ff2d55,#ff5f6d);
}
.yt-open-badge{
	position:absolute;
	right:12px;
	bottom:12px;
	z-index:2;
	padding:6px 10px;
	border-radius:999px;
	font-size:12px;
	font-weight:700;
	line-height:1;
	background:rgba(255,255,255,.92);
	color:#111;
}
.yt-card-body{
	padding:16px 16px 14px 16px;
}
.yt-title{
	font-size:1.05rem;
	font-weight:700;
	line-height:1.45;
	margin:0 0 10px 0;
	word-break:break-word;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	min-height:3.0em;
}
.yt-desc{
	font-size:.94rem;
	line-height:1.6;
	color:#6c757d;
	margin:0 0 12px 0;
	word-break:break-word;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	min-height:3.0em;
}
.yt-meta{
	font-size:.86rem;
	color:#6c757d;
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	align-items:center;
}
.yt-meta i{
	opacity:.85;
}
.yt-empty-text{
	color:#8a8f94;
}
.board-notice-item{
	border-radius:14px;
}
@media (max-width: 767.98px){
	.yt-card-body{
		padding:14px;
	}
	.yt-title{
		font-size:1rem;
	}
	.yt-play-badge{
		width:62px;
		height:44px;
	}
}
.yt-view-box{
	margin:0 0 28px 0;
	border:1px solid #e9ecef;
	border-radius:18px;
	overflow:hidden;
	background:#fff;
	box-shadow:0 12px 34px rgba(0,0,0,.06);
}
.yt-view-head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	padding:14px 18px;
	background:#111;
	color:#fff;
}
.yt-view-head-left{
	display:flex;
	align-items:center;
	gap:10px;
	font-weight:700;
}
.yt-view-head-left .badge{
	font-size:12px;
	padding:7px 10px;
	border-radius:999px;
}
.yt-badge-normal{
	background:#dc2626;
	color:#fff;
}
.yt-badge-shorts{
	background:linear-gradient(135deg,#ff2d55,#ff5f6d);
	color:#fff;
}
.yt-view-open{
	color:#fff;
	text-decoration:none;
	font-size:13px;
	opacity:.92;
}
.yt-view-open:hover{
	color:#fff;
	opacity:1;
}
.yt-view-player{
	position:relative;
	width:100%;
	background:#000;
}
.yt-view-player::before{
	content:"";
	display:block;
	padding-top:56.25%;
}
.yt-view-player iframe{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	border:0;
}
.yt-view-thumb{
	position:relative;
	display:block;
	background:#000;
}
.yt-view-thumb::before{
	content:"";
	display:block;
	padding-top:56.25%;
}
.yt-view-thumb img{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.yt-view-thumb-play{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	width:84px;
	height:58px;
	border-radius:16px;
	background:rgba(255,0,0,.92);
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow:0 14px 30px rgba(0,0,0,.28);
}
.yt-view-thumb-play i{
	color:#fff;
	font-size:28px;
	margin-left:4px;
}
.yt-view-foot{
	padding:12px 18px;
	background:#fafafa;
	border-top:1px solid #eee;
	font-size:13px;
	color:#6c757d;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	flex-wrap:wrap;
}
.post-content .youtube-url-hidden{
	display:none !important;
}
@media (max-width: 767.98px){
	.yt-view-head{
		padding:12px 14px;
	}
	.yt-view-foot{
		padding:10px 14px;
	}
	.yt-view-thumb-play{
		width:72px;
		height:50px;
	}
}
.post-nav-container {margin-top: 40px;border-top: 1px solid #ddd;padding-top: 15px;font-size: 14px;color: #666;}
.post-nav-wrap {display: flex;justify-content: space-between;align-items: center;}
/* ¿ÞÂÊ(ÀÌÀü±Û), ¿À¸¥ÂÊ(´ÙÀ½±Û) ¿µ¿ª */
.post-nav-wrap > div {flex: 1;}
/* ¿À¸¥ÂÊ ¿µ¿ªÀº ±âº»ÀûÀ¸·Î ¿À¸¥ÂÊ Á¤·Ä */
.post-nav-wrap .next {text-align: right;}
/* ¸µÅ© ±âº» ½ºÅ¸ÀÏ */
.post-nav-wrap a {color: #666;text-decoration: none;display: inline-flex;align-items: center;transition: color 0.2s ease;}
.post-nav-wrap a:hover {color: #222;}
/* ¾ÆÀÌÄÜ °£°Ý */
.post-nav-wrap i {font-size: 15px;}
.post-nav-wrap .prev i {margin-right: 5px;}
.post-nav-wrap .next i {margin-left: 5px;}
/* ÀÌÀü/´ÙÀ½±Û ¾øÀ½ »óÅÂ */
.post-nav-wrap span {color: #aaa;}
/* ======================================