@charset "UTF-8";

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans KR', sans-serif;
	color: #333;
	line-height: 1.6;
	background-color: #fff;
}

.vt-container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 10px;
}

/* 1. Header Area */
.vt-header {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
	padding: 0 50px;
}

.vt-header-left {
	flex: 0 0 540px;
	flex-shrink: 1;
	max-width: 100%;
}

.vt-header-img {
	width: 100%;
	height: auto;
	display: block;
}

.vt-header-right {
	flex: 1;
	padding-left: 60px;
	position: relative;
}

.vt-header-title {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
	text-align: center;
	width: fit-content;
}

.vt-header-title .green {
	color: #008e62;
	font-size: 44px;
	margin-left: 5px;
}

.vt-header-list {
	list-style: none;
	margin-bottom: 25px;
}

.vt-header-list li {
	font-size: 16px;
	color: #444;
	margin-bottom: 6px;
	padding-left: 20px;
	position: relative;
}

.vt-header-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 12px;
	height: 12px;
	border: 2px solid #008e62;
	border-radius: 50%;
}

.vt-header-conclusion {
	margin-top: 30px;
}

.vt-header-conclusion .small-text {
	font-size: 18px;
	color: #666;
	margin-bottom: -5px;
}

.vt-header-conclusion .brush-text {
	font-family: 'Nanum Brush Script', cursive;
	font-size: 48px;
	color: #f37021;
	line-height: 1;
}

/* 2. Main Contents Area */
.vt-contents {
	padding: 0 50px;
}

.vt-section {
	margin-bottom: 50px;
}

.vt-section-title {
	font-size: 20px;
	font-weight: 700;
	color: #222;
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.vt-section-title .bullet {
	color: #444;
	font-size: 14px;
	margin-right: 10px;
	margin-top: 5px;
}

.vt-gray-box {
	background-color: #f8f8f8;
	border: 1px solid #eeeeee;
	padding: 35px 30px;
	border-radius: 4px;
}

.vt-text {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	word-break: keep-all;
}

.vt-alert-box {
	background-color: #ffffff;
	border: 1px solid #dddddd;
	margin-top: 25px;
	padding: 12px 20px;
	display: flex;
	align-items: center;
}

.vt-alert-icon {
	width: 24px;
	height: 24px;
	background-color: #e74c3c;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	margin-right: 15px;
	flex-shrink: 0;
}

.vt-alert-text {
	font-size: 17px;
	color: #444;
	word-break: keep-all;
}

.vt-alert-text .orange-bold {
	color: #f37021;
	font-weight: 700;
	margin: 0 3px;
}

/* ── Responsive: Tablet (max-width: 1100px) ── */
@media screen and (max-width: 1100px) {
	.vt-header-left {
		display: none;
	}
	.vt-header-right {
		padding-left: 0;
	}
}

/* ── Responsive: Mobile (max-width: 800px) ── */
@media screen and (max-width: 800px) {
	.vt-header {
		flex-direction: column;
		padding: 0 20px;
		text-align: center;
	}

	.vt-header-title {
		margin: 0 auto 20px;
	}

	.vt-header-list {
		text-align: left;
		display: inline-block;
	}

	.vt-contents {
		padding: 0 20px;
	}

	.vt-gray-box {
		padding: 20px;
	}

	.vt-alert-text {
		font-size: 15px;
	}
}

/* ── Responsive: Small Mobile (max-width: 480px) ── */
@media screen and (max-width: 480px) {
	.vt-header-title {
		font-size: 28px;
	}
	.vt-header-title .green {
		font-size: 32px;
	}
	.vt-header-conclusion .brush-text {
		font-size: 36px;
	}
}
