/* MODERN LAYOUT - Responsive & Clean */

.wrapper-st {
	width: 100%;
	min-width: 320px;
	margin: 0;
	padding: 0;
	background-color: #f8f9fa;
}

.wrapper-content {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	flex-flow: row wrap;
	gap: 20px;
	position: relative;
}

.wrap-content {
	flex: 1;
	min-width: 0;
}

.wrap-side {
	width: 320px;
	min-width: 280px;
}

/* Responsive Layout */
@media (max-width: 1024px) {
	.wrapper-content {
		padding: 15px;
		gap: 15px;
	}
	
	.wrap-side {
		width: 100%;
		min-width: 100%;
	}
}

@media (max-width: 768px) {
	.wrapper-content {
		padding: 10px;
		gap: 15px;
	}
}

/* MODERN HEADER - Blue Theme */
.vm3-header {
	width: 100%;
	position: relative;
	background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.vm3-width {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.vm3-hrow2 {
	height: 70px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.vm3-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	transition: opacity 0.2s ease;
}

.vm3-logo:hover {
	opacity: 0.9;
}

.vm3-logo a {
	color: inherit;
	display: inline-block;
	line-height: 0;
}

.vm3-logo .logo-img {
	height: 50px;
	width: 180px;
	display: block;
	object-fit: contain;
}

.vm3-col {
	color: #ffffff !important;
}

.vm3-hrow1 {
	display: flex;
	align-items: center;
	gap: 15px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	flex-shrink: 0;
	white-space: nowrap;
}

.vm3-hrow1 a {
	color: rgba(255, 255, 255, 0.9);
	padding: 6px 12px;
	border-radius: 6px;
	transition: all 0.2s ease;
	font-weight: 500;
}

.vm3-hrow1 a:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	text-decoration: none;
}

.vm3-search {
	position: relative;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 400px;
	margin: 0 auto;
}

.vm3-schbox {
	position: relative;
	display: flex;
	align-items: center;
}

.vm3-sch {
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	outline: none;
	width: 250px;
	font-size: 0.9rem;
	padding: 10px 45px 10px 18px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	color: #ffffff;
	transition: all 0.3s ease;
}

.vm3-sch::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.vm3-sch:focus {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.25);
	width: 300px;
}

.vm3-schbtn {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.vm3-schbtn:hover {
	opacity: 1;
}

.vm3-hrow3 {
	width: 100%;
	background: rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vm3-nav2 {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-size: 0.95rem;
	letter-spacing: -0.3px;
}

.vm3-nav2 a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 500;
	transition: all 0.2s ease;
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.vm3-nav2 a:last-child {
	border-right: none;
}

.vm3-nav2 a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	text-decoration: none;
}

.vm3-nav2 a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #ffffff;
	transition: width 0.3s ease;
}

.vm3-nav2 a:hover::after {
	width: 100%;
}

.nmt {
	cursor: default;
}

#hamburger-wrapper {
	display: none;
	position: relative;
	z-index: 1001;
}

#close-sidenav {
	display: none;
}

#sidenav {
	display: none;
}

.htFixed {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	transition: all 0.3s ease;
}

/* MOBILE MENU */
@media (max-width: 768px) {
	.vm3-hrow2 {
		height: 60px;
		padding: 0 15px;
	}
	
	.vm3-logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	
	.vm3-logo .logo-img {
		height: 35px;
		width: 140px;
	}
	
	.vm3-hrow1 {
		display: none;
	}
	
	.vm3-schview {
		display: none;
	}
	
	.vm3-search {
		display: none;
	}
	
	.vm3-hrow3 {
		display: none;
	}
	
	#hamburger-wrapper {
		display: flex !important;
		visibility: visible !important;
		position: absolute;
		right: 15px;
		top: 0;
		height: 60px;
		align-items: center;
		justify-content: center;
		z-index: 10002;
		width: 40px;
		background: transparent;
	}
	
	.spinner-master {
		position: relative;
		width: 30px;
		height: 24px;
		cursor: pointer;
		display: block;
		margin: 0;
		padding: 0;
	}
	
	.spinner-master * {
		transition: all 0.3s ease;
		box-sizing: border-box;
	}
	
	.spinner {
		position: absolute;
		height: 3px;
		width: 100%;
		background-color: #ffffff !important;
		border-radius: 2px;
		left: 0;
		display: block;
		opacity: 1 !important;
		visibility: visible !important;
	}
	
	.spinner-master .diagonal.part-1 {
		top: 0;
		transform: rotate(0deg);
	}
	
	.spinner-master .horizontal {
		top: 10px;
		opacity: 1;
	}
	
	.spinner-master .diagonal.part-2 {
		top: 20px;
		transform: rotate(0deg);
	}
	
	.spinner-master.active .diagonal.part-1 {
		top: 10px;
		transform: rotate(45deg);
	}
	
	.spinner-master.active .horizontal {
		opacity: 0;
	}
	
	.spinner-master.active .diagonal.part-2 {
		top: 10px;
		transform: rotate(-45deg);
	}
	
	/* 모바일 메뉴 오버레이 */
	#sidenav-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 280px;
		height: 100vh;
		background: rgba(0, 0, 0, 0.5);
		z-index: 9998;
		opacity: 0;
		transition: opacity 0.3s ease, right 0.3s ease;
		pointer-events: none;
	}
	
	#sidenav-overlay.active {
		display: block;
		opacity: 1;
		pointer-events: auto;
		right: 280px;
	}
	
	#sidenav {
		display: block;
		position: fixed;
		top: 0;
		right: -280px;
		width: 280px;
		height: 100vh;
		background: #ffffff;
		box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
		transition: right 0.3s ease;
		z-index: 10002;
		overflow-y: auto;
		pointer-events: auto;
		-webkit-overflow-scrolling: touch;
		will-change: right;
	}
	
	#sidenav.active,
	#sidenav[style*="right: 0"] {
		right: 0 !important;
	}
	
	#sidenav header {
		display: block;
		padding: 20px 50px 20px 20px;
		height: 60px;
		font-size: 1.2rem;
		font-weight: 700;
		background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
		color: #ffffff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		position: relative;
		line-height: 20px;
		display: flex;
		align-items: center;
	}
	
	#close-sidenav {
		display: block;
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
		width: 32px;
		height: 32px;
		cursor: pointer;
		color: #ffffff;
		font-size: 1.8rem;
		line-height: 32px;
		text-align: center;
		border-radius: 50%;
		transition: all 0.2s ease;
		z-index: 10001;
		background: rgba(255, 255, 255, 0.1);
	}
	
	#close-sidenav:hover {
		background: rgba(255, 255, 255, 0.2);
		color: #ffffff;
	}
	
	#sidenav .sidelist {
		padding: 0;
		margin: 0;
	}
	
	.sidelist li {
		display: block;
		padding: 0;
		border-bottom: 1px solid #e2e8f0;
	}
	
	.sidelist li a {
		display: block;
		padding: 16px 20px;
		color: #2d3748;
		font-size: 1rem;
		font-weight: 500;
		transition: all 0.2s ease;
	}
	
	.sidelist li:hover {
		background: #f7fafc;
	}
	
	.sidelist li a:hover {
		color: #4299e1;
		text-decoration: none;
		padding-left: 25px;
	}
	
	.sidelist li .vm3-search {
		display: block;
		padding: 15px 20px;
	}
	
	.sidelist li .vm3-sch {
		width: 100%;
		background: #f7fafc;
		border: 1px solid #e2e8f0;
		color: #2d3748;
		padding: 10px 40px 10px 15px;
	}
	
	.sidelist li .vm3-sch::placeholder {
		color: #a0aec0;
	}
	
	.sidelist li .vm3-sch:focus {
		background: #ffffff;
		border-color: #4299e1;
		width: 100%;
	}
}

/* CONTENT MAIN */
.contr3-tit {
	font-size: 1.5rem;
	padding: 20px 0 15px;
	color: #2d3748;
	font-weight: 700;
	letter-spacing: -0.5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contr3-tit i {
	color: #4299e1;
}

.content-row3 {
	width: 100%;
	margin: 20px 0;
	display: flex;
	flex-flow: row wrap;
	gap: 20px;
}

.content-row3 ul:first-child {
	margin-right: 0;
}

.content-row3 ul:last-child {
	margin-left: 0;
}

.contim02 {
	flex: 1;
	min-width: 300px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contim02:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.contim02 li:first-child {
	display: block;
	position: relative;
	padding-top: 60%;
	overflow: hidden;
	background: #e2e8f0;
}

.contim02 li:first-child img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.3s ease;
}

.contim02:hover li:first-child img {
	transform: scale(1.05);
}

.contim02 li:last-child {
	color: #ffffff;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

.content-row4 {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin: 15px 0;
}

.comtim01-wid {
	width: 100%;
	min-width: 0;
}

.contim01 {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #ffffff;
}

.contim01:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contim01:last-child {
	margin-right: 0;
}

.contim01 li:first-child {
	display: block;
	position: relative;
	padding-top: 75%;
	overflow: hidden;
	background: #e2e8f0;
}

.contim01 li:first-child img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.3s ease;
}

.contim01:hover li:first-child img {
	transform: scale(1.08);
}

.contim01 li:last-child {
	font-size: 0.95rem;
	line-height: 1.5;
	padding: 12px;
	text-align: center;
	color: #2d3748;
	font-weight: 500;
	min-height: 60px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

.content-row5 {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	gap: 20px;
}

.mtop-wid {
	flex: 1;
	min-width: 300px;
}

/* CONTENT LIST */
.content-row2 {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	gap: 20px;
	margin: 25px 0;
}

.cont-wid {
	flex: 1;
	min-width: 300px;
}

.cont-box {
	margin: 0;
	font-size: 0.9rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.cont-box:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cont-box h3 {
	font-size: 1.2rem;
	padding: 15px 20px;
	background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
	color: #ffffff;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cont-box h3 span {
	color: #ffffff;
}

.more-btn {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.9) !important;
	padding: 4px 10px;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.more-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff !important;
	text-decoration: none;
}

.cont-box p {
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

.cont-box p a {
	display: block;
	padding: 12px 20px;
	border-bottom: 1px solid #f7fafc;
	color: #4a5568;
	transition: all 0.2s ease;
	font-weight: 500;
}

.cont-box p a:last-child {
	border-bottom: none;
}

.cont-box p {
	counter-reset: cont-box-item;
}

.cont-box p a {
	position: relative;
	padding-left: 35px;
}

.cont-box p a:before {
	content: attr(data-number);
	font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', sans-serif;
	font-weight: 600;
	font-style: normal;
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e2e8f0;
	color: #718096;
	border-radius: 4px;
	font-size: 0.75rem;
	transition: all 0.2s ease;
	line-height: 1;
}

.cont-box p a:hover {
	background: #f7fafc;
	color: #4299e1;
	padding-left: 35px;
	text-decoration: none;
}

.cont-box p a:hover:before {
	background: #4299e1;
	color: #ffffff;
	transform: translateY(-50%) scale(1.1);
}

/* ADx-Box */
.abx-aw {
	display: block;
	text-align: center;
	margin: 20px auto;
}

.aw-pc {
	display: block;
}

.aw-mo {
	display: none;
}

@media (max-width: 768px) {
	.aw-pc {
		display: none;
	}
	
	.aw-mo {
		display: block;
	}
}

/* VIEW PAGE */
.wrap-vwpage {
	width: 100%;
	padding: 0;
	margin-bottom: 30px;
	font-size: 1rem;
	line-height: 1.7;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wrap-vwpage li {
	box-sizing: border-box;
}

.wrap-vwpage h3 {
	font-size: 1.5rem;
	color: #2d3748;
	padding: 20px;
	font-weight: 700;
	letter-spacing: -0.5px;
	border-bottom: 2px solid #e2e8f0;
	background: #f7fafc;
}

.vwcol1 {
	font-size: 0.9rem;
	color: #718096;
	padding: 15px 20px;
	background: #f7fafc;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vwcol1 span {
	display: inline-block;
}

.vwcol1 span:first-child {
	text-align: left;
	font-weight: 500;
	color: #2d3748;
}

.vwcol1 span:last-child {
	text-align: right;
	color: #718096;
}

.vwcol2 {
	padding: 20px;
	color: #2d3748;
	font-size: 1.05rem;
	line-height: 1.8;
}

.vwcol2 img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 15px auto;
	border-radius: 8px;
}

.vwcol3 {
	padding: 20px;
	text-align: center;
}

.vwcol3 a {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.vwcol3 a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(66, 153, 225, 0.4);
	text-decoration: none;
}

.vwcol4 {
	text-align: center;
	margin: 20px auto;
	padding: 20px;
	border-bottom: 1px solid #e2e8f0;
}

.vwcol4 a {
	margin: 5px;
	display: inline-block;
	transition: transform 0.2s ease;
}

.vwcol4 a:hover {
	transform: scale(1.1);
}

.vwcol4 a img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}

.vwcol5 {
	padding: 15px 20px;
	text-align: right;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex-wrap: nowrap;
}

.vwcol5 a {
	padding: 8px 16px;
	background: #f7fafc;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	color: #4a5568;
	font-weight: 500;
	transition: all 0.2s ease;
	display: inline-block;
	white-space: nowrap;
	flex-shrink: 0;
}

.vwcol5 a:hover {
	background: #edf2f7;
	border-color: #cbd5e0;
	color: #2d3748;
	text-decoration: none;
}

.vwcol6 {
	padding: 20px;
	box-sizing: border-box;
}

.vwcol6 li {
	border-bottom: 1px solid #e2e8f0;
	padding: 12px 0;
}

.vwcol6 li:last-child {
	border-bottom: none;
}

.vwcol6 li span {
	display: block;
	margin-bottom: 8px;
	color: #2d3748;
	font-weight: 600;
	font-size: 1.05rem;
}

.vwcol6 li span:before {
	content: '\f2bd';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-style: normal;
	margin-right: 8px;
	color: #4299e1;
	display: inline-block;
}

.vwcol6 li span font {
	display: inline-block;
	font-weight: 400;
	color: #718096;
	font-size: 0.9rem;
	padding-left: 10px;
	margin-left: 10px;
	border-left: 1px solid #e2e8f0;
}

.vwcol6 li p {
	color: #4a5568;
	padding: 5px 0;
	line-height: 1.6;
}

/* VIEW LIST */
.wrap-vwlist {
	width: 100%;
	font-size: 0.95rem;
	line-height: 1.6;
	padding: 0;
	box-sizing: border-box;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wrap-vwlist > * {
	box-sizing: border-box;
}

.wrap-vwlist h3 {
	font-size: 1.3rem;
	letter-spacing: -0.5px;
	padding: 20px;
	font-weight: 700;
	color: #2d3748;
	background: #f7fafc;
	border-bottom: 2px solid #e2e8f0;
}

.box-vwlist {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}

.box-vwlist th {
	height: 45px;
	vertical-align: middle;
	background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
	font-weight: 600;
	color: #ffffff;
	padding: 0 15px;
	text-align: center;
	font-size: 0.9rem;
}

.box-vwlist tr {
	border-bottom: 1px solid #e2e8f0;
	transition: background 0.2s ease;
}

.box-vwlist tr:hover {
	background: #f7fafc;
}

.box-vwlist tr:nth-child(2n+1) {
	background: #fafbfc;
}

.box-vwlist tr:nth-child(2n+1):hover {
	background: #f0f4f8;
}

.box-vwlist tr:last-child {
	border-bottom: 2px solid #cbd5e0;
}

.box-vwlist td {
	text-align: center;
	vertical-align: middle;
	padding: 12px 15px;
	height: auto;
}

.vlt-c1 {
	width: 10%;
}

.vlt-c3 {
	width: 10%;
	min-width: 60px;
	white-space: nowrap;
}

.vlt-c4 {
	width: 12%;
}

.box-vwlist td:nth-of-type(2) {
	width: auto;
	font-size: 1rem;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.box-vwlist td:nth-of-type(2) a {
	color: #4a5568;
	font-weight: 500;
	transition: color 0.2s ease;
}

.box-vwlist td:nth-of-type(2) a:hover {
	color: #4299e1;
	text-decoration: none;
}

.box-vwlist td:first-child,
.box-vwlist td:nth-of-type(3),
.box-vwlist td:last-child {
	font-size: 0.9rem;
	color: #718096;
}

/* PAGE COUNT */
.vwl-count {
	text-align: center;
	padding: 25px 15px;
	background: #f7fafc;
}

.vwl-count ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

.vwl-count li {
	display: inline-block;
}

.vwl-count a,
.vwl-count .pg_page {
	font-size: 0.9rem;
	padding: 6px 10px;
	border-radius: 6px;
	border: 1px solid #e2e8f0;
	color: #4a5568;
	display: inline-block;
	transition: all 0.2s ease;
	background: #ffffff;
	min-width: 36px;
	text-align: center;
	line-height: 1.4;
	text-decoration: none;
}

.vwl-count li.active a,
.vwl-count a.pg_active {
	border-color: #4299e1;
	background: #4299e1;
	color: #ffffff;
	font-weight: 600;
	cursor: default;
}

.vwl-count li.active a:hover,
.vwl-count a.pg_active:hover {
	border-color: #4299e1;
	background: #4299e1;
	color: #ffffff;
	text-decoration: none;
}

.vwl-count a:hover:not(.pg_active) {
	border-color: #4299e1;
	background: #4299e1;
	color: #ffffff;
	text-decoration: none;
}

.pg-sch {
	display: block;
	margin: 20px auto;
	text-align: center;
	font-size: 0.95rem;
}

.pg-sch .pg-btn {
	width: 70px;
	height: 38px;
	background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
	color: #ffffff;
	line-height: 38px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	margin-left: 5px;
	font-weight: 600;
	transition: all 0.2s ease;
	box-shadow: 0 2px 6px rgba(66, 153, 225, 0.3);
}

.pg-sch .pg-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(66, 153, 225, 0.4);
}

.pg-sch .pg-txt {
	padding: 0 12px;
	width: 220px;
	height: 38px;
	border: 2px solid #e2e8f0;
	border-radius: 6px;
	background: #ffffff;
	transition: border-color 0.2s ease;
}

.pg-sch .pg-txt:focus {
	outline: none;
	border-color: #4299e1;
}

/* VIEW SIDE */
.wrap-vwside {
	width: 100%;
	padding: 0;
	box-sizing: border-box;
	text-align: center;
}

.side-wid {
	width: 100%;
	background: #ffffff;
	text-align: left;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vw-gat {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
	margin: 15px 0;
	font-size: 0.9rem;
}

.vwg-wid {
	flex: 1;
	min-width: 140px;
}

/* FOOTER */
.vm3-footer {
	width: 100%;
	background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
	padding: 40px 20px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 40px;
}

.vm3-footerline {
	display: flex;
	margin: 15px auto;
	padding: 15px 0;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.vm3-footerline a {
	flex: 0 0 auto;
	padding: 8px 20px;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	transition: color 0.2s ease;
}

.vm3-footerline a:last-child {
	border-right: none;
}

.vm3-footerline a:hover {
	color: #ffffff;
	text-decoration: none;
}

.vm3-cominfo {
	text-align: center;
	margin: 20px auto;
	line-height: 1.8;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	max-width: 900px;
}

.jem-flines {
	display: block;
	width: 60%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin: 20px auto;
}

/* MOBILE BANNER */
.mba-f320 {
	display: none;
}

.mba-320 {
	display: none;
}

@media (max-width: 768px) {
	.mba-f320 {
		display: block;
		width: 100%;
		height: 50px;
		position: fixed;
		bottom: 0;
		text-align: center;
		background: #1a202c;
		z-index: 100;
	}
	
	.mba-f320 img {
		height: auto;
		max-width: 100%;
	}
	
	.mba-320 {
		display: block;
		text-align: center;
		padding: 10px 0;
	}
	
	/* Responsive adjustments */
	.content-row3 {
		flex-flow: column;
	}
	
	.contim02 {
		width: 100%;
		min-width: 100%;
	}
	
	.content-row4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.comtim01-wid {
		width: 100%;
		min-width: 0;
	}
	
	.content-row5 {
		flex-flow: column;
	}
	
	.mtop-wid {
		width: 100%;
		min-width: 100%;
	}
	
	.content-row2 {
		flex-flow: column;
	}
	
	.cont-wid {
		width: 100%;
		min-width: 100%;
	}
	
	.vlt-c1 {
		width: 15%;
	}
	
	.box-vwlist td:nth-of-type(2) {
		width: 65%;
	}
	
	.vlt-c3 {
		width: 15%;
		min-width: 50px;
	}
	
	.vwl-count {
		padding: 20px 10px;
	}
	
	.vwl-count ul {
		gap: 3px;
	}
	
	.vwl-count a {
		font-size: 0.8rem;
		padding: 5px 8px;
		min-width: 32px;
	}
	
	.box-vwlist th:last-child,
	.box-vwlist td:last-child {
		display: none;
	}
	
	.vm3-width {
		padding: 0 15px;
	}
	
	.vm3-footer {
		padding: 30px 15px;
	}
	
	.vm3-footerline {
		flex-direction: column;
		gap: 0;
	}
	
	.vm3-footerline a {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding: 10px 0;
	}
	
	.vm3-footerline a:last-child {
		border-bottom: none;
	}
	
	.vm3-cominfo {
		padding: 0 10px;
		font-size: 0.85rem;
	}
	
	.wrap-vwside {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
}

/* ADx-Box */
.abx-float {
	display: none;
}

.abx-float img {
	display: none;
}

.abx-hide {
	display: none !important;
}

.abx-wing {
	position: absolute;
	top: 0;
}

.abx-wing1 {
	left: -170px;
}

.abx-wing2 {
	right: -170px;
}

@media (max-width: 768px) {
	.abx-float {
		display: block;
		width: 120px;
		height: 120px;
		position: fixed;
		bottom: 70px;
		right: 15px;
		transition: all 0.3s ease;
		z-index: 99;
	}
	
	.abx-float img {
		display: block;
		width: 100%;
		height: auto;
		border-radius: 12px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	}
	
	.abx-close {
		width: 28px;
		height: 28px;
		position: absolute;
		background: #ffffff;
		border-radius: 50%;
		right: -10px;
		top: -10px;
		z-index: 120;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
		cursor: pointer;
		font-size: 1.2rem;
		color: #4a5568;
		transition: all 0.2s ease;
	}
	
	.abx-close:hover {
		background: #f7fafc;
		color: #2d3748;
		transform: scale(1.1);
	}
	
	.abx-wing1,
	.abx-wing2 {
		display: none;
	}
}

/* Site Register/Edit */

.regi-wrap {
	width: 100%;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.regi-svw p {
	padding: 15px 20px;
	font-size: 1.05rem;
	color: #2d3748;
	font-weight: 600;
	background: #f7fafc;
	border-bottom: 2px solid #e2e8f0;
}

.regi-wrap ul {
	border: none;
	padding: 0;
	margin: 0;
	background: #ffffff;
}

.regi-wrap ul li {
	width: 100%;
	padding: 15px 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	align-items: center;
	gap: 15px;
}

.regi-wrap ul li:last-child {
	border-bottom: none;
	justify-content: flex-end;
	padding-top: 25px;
}

.regi-wrap ul li > label {
	display: inline-block;
	min-width: 150px;
	font-weight: 500;
	color: #4a5568;
	flex-shrink: 0;
}

.regi-wrap input[type="text"],
.regi-wrap textarea {
	border: 2px solid #e2e8f0;
	height: 42px;
	line-height: 42px;
	padding: 0 15px;
	box-sizing: border-box;
	border-radius: 8px;
	transition: all 0.2s ease;
	flex: 1;
	font-size: 0.95rem;
}

.regi-wrap textarea {
	height: auto;
	line-height: 1.6;
	padding: 12px 15px;
	resize: vertical;
	min-height: 120px;
}

.regi-wrap ul li input[type="text"]:focus,
.regi-wrap textarea:focus {
	border-color: #4299e1;
	outline: none;
	box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.regi-wrap textarea::placeholder {
	font-family: inherit;
	font-size: 0.95rem;
	color: #a0aec0;
}

.btn-vregi,
.cancel-vregi {
	display: inline-block;
	min-width: 100px;
	height: 42px;
	margin-left: 10px;
	padding: 0 20px;
	border-radius: 8px;
	border: 2px solid #e2e8f0;
	box-sizing: border-box;
	vertical-align: top;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 0.95rem;
}

.btn-vregi {
	background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
	color: #ffffff;
	border-color: transparent;
	box-shadow: 0 2px 6px rgba(66, 153, 225, 0.3);
}

.btn-vregi:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(66, 153, 225, 0.4);
}

.cancel-vregi {
	background: #ffffff;
	color: #4a5568;
}

.cancel-vregi:hover {
	background: #f7fafc;
	border-color: #cbd5e0;
	color: #2d3748;
}

@media (max-width: 768px) {
	.regi-wrap ul li {
		padding: 15px;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.regi-wrap ul li > label {
		display: block;
		width: 100%;
		min-width: 100%;
		margin-bottom: 5px;
	}
	
	.regi-wrap ul li:first-child > label {
		display: block;
	}
	
	.regi-wrap ul li input[type="text"],
	.regi-wrap textarea {
		width: 100%;
	}
	
	.regi-wrap ul li:last-child {
		justify-content: center;
		flex-direction: row;
		padding-top: 20px;
	}
	
	.btn-vregi,
	.cancel-vregi {
		width: calc(50% - 5px);
		margin: 0;
	}
}
