@charset "utf-8";

/* ========== Main Page Styles ========== */
/* 기본 스타일 */
body {
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background-color: #ffffff;
	color: #0f172a;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

/* 메인 콘텐츠 */
main {
	padding-top: 117px;
}

/* 헤더가 fixed이므로 메인 콘텐츠에 여백 추가 */
#main-header ~ main {
	padding-top: 117px;
}

@media (max-width: 920px) {
	main {
		padding-top: 92px;
	}
	
	#main-header ~ main {
		padding-top: 92px;
	}
}

/* Hero 섹션 */
.hero-section {
	position: relative;
	width: 100%;
	height: 85vh;
	min-height: 700px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #0f172a;
}

@media (max-width: 767px) {
	.hero-section {
		height: 60vh;
		min-height: 500px;
	}
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.05);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.4), transparent);
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
	width: 100%;
}

@media (max-width: 767px) {
	.hero-content {
		padding: 0 0.75rem;
	}
}

.hero-inner {
	max-width: 55rem;
}

@media (max-width: 1024px) {
	.hero-inner {
		max-width: 48rem;
	}
}

@media (max-width: 767px) {
	.hero-inner {
		max-width: 100%;
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	background-color: rgba(5, 150, 105, 0.3);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: #ffffff;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
	.hero-badge {
		padding: 0.25rem 0.75rem;
		font-size: 0.75rem;
		margin-bottom: 1rem;
	}
}

.hero-title {
	font-size: 2.5rem;
	line-height: 1.1;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.hero-title span {
	color: #4ade80;
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 5rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 6rem;
	}
}

@media (max-width: 767px) {
	.hero-title {
		font-size: 1.875rem;
		line-height: 1.2;
		margin-bottom: 1rem;
	}
}

.hero-description {
	font-size: 1.25rem;
	color: #cbd5e1;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
	.hero-description {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 1.25rem;
	}
}

@media (min-width: 768px) {
	.hero-description {
		font-size: 1.375rem;
	}
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding-top: 1rem;
}

@media (max-width: 767px) {
	.hero-buttons {
		gap: 0.75rem;
		padding-top: 0.5rem;
	}
}

.hero-btn-primary {
	padding: 1rem 2rem;
	background-color: #059669;
	color: #ffffff;
	border-radius: 9999px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	border: none;
	cursor: pointer;
	border: none;
	cursor: pointer;
	box-shadow: 0 20px 25px -5px rgba(5, 150, 105, 0.2);
	transition: all 0.2s;
	transform: translateY(0);
}

@media (max-width: 767px) {
	.hero-btn-primary {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}
}

.hero-btn-primary:hover {
	background-color: #047857;
	transform: translateY(-4px);
}

.hero-btn-secondary {
	padding: 1rem 2rem;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	border-radius: 9999px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
}

@media (max-width: 767px) {
	.hero-btn-secondary {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}
}

.hero-btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

/* Quick Nav 섹션 */
.quick-nav-section {
	padding: 4rem 0;
	position: relative;
	z-index: 20;
	background-color: #ffffff;
}

@media (max-width: 767px) {
	.quick-nav-section {
		padding: 3rem 0;
	}
}

.quick-nav-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (max-width: 1024px) {
	.quick-nav-container {
		padding: 0 1rem;
	}
}

@media (max-width: 767px) {
	.quick-nav-container {
		padding: 0 0.75rem;
	}
}

.quick-nav-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.quick-nav-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (min-width: 1024px) {
	.quick-nav-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
	}
}

.quick-nav-card {
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 4rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 1px solid #f8fafc;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
	transform: translateY(0);
}

@media (max-width: 1024px) {
	.quick-nav-card {
		padding: 2.5rem;
		border-radius: 3.5rem;
	}
}

@media (max-width: 767px) {
	.quick-nav-card {
		padding: 2rem;
		border-radius: 3rem;
	}
}

.quick-nav-card:hover {
	transform: translateY(-12px);
}

.quick-nav-icon {
	width: 80px;
	height: 80px;
	border-radius: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.25rem;
	margin: 0 auto 2rem;
	transition: all 0.3s ease;
}

@media (max-width: 767px) {
	.quick-nav-icon {
		width: 64px;
		height: 64px;
		font-size: 1.875rem;
		margin-bottom: 1.5rem;
	}
}

.quick-nav-icon.emerald {
	background-color: #d1fae5;
}

.quick-nav-icon.blue {
	background-color: #dbeafe;
}

.quick-nav-icon.amber {
	background-color: #fef3c7;
}

.quick-nav-icon.slate {
	background-color: #f1f5f9;
}

.quick-nav-card:hover .quick-nav-icon.emerald {
	background-color: #059669;
	color: #ffffff;
}

.quick-nav-card:hover .quick-nav-icon.blue {
	background-color: #2563eb;
	color: #ffffff;
}

.quick-nav-card:hover .quick-nav-icon.amber {
	background-color: #d97706;
	color: #ffffff;
}

.quick-nav-card:hover .quick-nav-icon.slate {
	background-color: #0f172a;
	color: #ffffff;
}

.quick-nav-card h3 {
	font-size: 1.25rem;
	font-weight: 900;
	color: #0f172a;
	margin-bottom: 1rem;
}

@media (max-width: 1024px) {
	.quick-nav-card h3 {
		font-size: 1.125rem;
		margin-bottom: 0.875rem;
	}
}

@media (max-width: 767px) {
	.quick-nav-card h3 {
		font-size: 1rem;
		margin-bottom: 0.75rem;
	}
}

.quick-nav-card p {
	color: #94a3b8;
	font-size: 0.875rem;
	line-height: 1.625;
	font-weight: 500;
	margin: 0;
}

@media (max-width: 767px) {
	.quick-nav-card p {
		font-size: 0.8125rem;
		line-height: 1.5;
	}
}

@media (max-width: 767px) {
	.quick-nav-card p {
		font-size: 0.8125rem;
		line-height: 1.5;
	}
}

.quick-nav-link {
	display: none;
}

/* Education 섹션 */
.education-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 6rem 1rem;
}

@media (max-width: 767px) {
	.education-section {
		padding: 3rem 0.75rem;
	}
}

.education-header {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
	.education-header {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}
}

.education-header h2 {
	font-size: 2.5rem;
	font-weight: 900;
	color: #0f172a;
}

.education-header p {
	color: #64748b;
	font-size: 1.25rem;
	margin-top: 0.5rem;
	font-weight: 500;
}

.education-header-btn {
	padding: 0.75rem 2rem;
	border: 2px solid #059669;
	color: #047857;
	border-radius: 9999px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	background: none;
	cursor: pointer;
	transition: all 0.2s;
	font-size: 1.15rem;
}

.education-header-btn:hover {
	background-color: #059669;
	color: #ffffff;
}

.education-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 640px) {
	.education-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.education-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.education-card {
	background-color: #ffffff;
	border-radius: 2.5rem;
	overflow: hidden;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.2s;
	display: flex;
	flex-direction: column;
	transform: translateY(0);
}

.education-card:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: translateY(-8px);
}

.education-card-image {
	height: 208px;
	overflow: hidden;
	position: relative;
	background-color: #f1f5f9;
}

.education-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s;
}

.education-card:hover .education-card-image img {
	transform: scale(1.1);
}

.education-card-badge {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(12px);
}

.education-card-badge.available {
	background-color: #d1fae5;
	color: #047857;
}

.education-card-badge.closing {
	background-color: #fee2e2;
	color: #991b1b;
}

.education-card-badge.preparing {
	background-color: #f1f5f9;
	color: #475569;
}

.education-card-content {
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 1rem;
}

.education-card-type {
	font-size: 0.875rem;
	color: #059669;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.education-card-title {
	font-size: 1.375rem;
	font-weight: 900;
	color: #0f172a;
	line-height: 1.375;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 3.5rem;
	transition: color 0.2s;
}

.education-card:hover .education-card-title {
	color: #047857;
}

.education-card-meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 14px;
	color: #64748b;
	font-weight: 700;
	border-top: 1px solid #f8fafc;
	padding-top: 1rem;
}

.education-card-meta p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.education-card-btn {
	margin-top: auto;
	width: 100%;
	padding: 1rem;
	background-color: #f8fafc;
	color: #334155;
	border-radius: 1rem;
	font-weight: 900;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.education-card:hover .education-card-btn {
	background-color: #059669;
	color: #ffffff;
}

/* Information Hub 섹션 */
.info-hub-section {
	background-color: #f8fafc;
	padding: 6rem 0;
}

@media (max-width: 767px) {
	.info-hub-section {
		padding: 3rem 0;
	}
}

.info-hub-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (max-width: 767px) {
	.info-hub-container {
		padding: 0 0.75rem;
	}
}

.info-hub-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}

@media (max-width: 767px) {
	.info-hub-grid {
		gap: 2rem;
	}
}

@media (min-width: 1024px) {
	.info-hub-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.info-hub-card {
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 3.5rem;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
	.info-hub-card {
		padding: 1.45rem;
		border-radius: 2rem;
	}
}

.info-hub-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #f1f5f9;
}

@media (max-width: 767px) {
	.info-hub-header {
		margin-bottom: 1.5rem;
		padding-bottom: 1rem;
	}
}

.info-hub-header h3 {
	font-size: 1.625rem;
	font-weight: 900;
	color: #0f172a;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

@media (max-width: 767px) {
	.info-hub-header h3 {
		font-size: 1.375rem;
		gap: 0.5rem;
	}
}

.info-hub-icon {
	width: 32px;
	height: 32px;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.info-hub-icon.blue {
	background-color: #dbeafe;
	color: #2563eb;
}

.info-hub-icon.emerald {
	background-color: #d1fae5;
	color: #059669;
}

.info-hub-header button {
	color: #94a3b8;
	font-size: 1.375rem;
	font-weight: 700;
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}

.info-hub-header button:hover {
	color: #047857;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (max-width: 767px) {
	.gallery-grid {
		gap: 0.75rem;
	}
}

.gallery-item {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.gallery-image {
	aspect-ratio: 16 / 9;
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
	background-color: #f1f5f9;
}

.gallery-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.gallery-item:hover .gallery-image img {
	transform: scale(1.05);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(15, 23, 42, 0);
	transition: background-color 0.2s;
}

.gallery-item:hover .gallery-overlay {
	background-color: rgba(15, 23, 42, 0.1);
}

.gallery-info {
	padding: 0 0.25rem;
}

.gallery-info h5 {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s;
}

.gallery-item:hover .gallery-info h5 {
	color: #047857;
}

.gallery-info p {
	font-size: 12px;
	color: #94a3b8;
	font-weight: 700;
}

.material-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.material-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	border-radius: 1rem;
	cursor: pointer;
	transition: all 0.2s;
}

@media (max-width: 767px) {
	.material-item {
		padding: 0.75rem 0;
	}
}

.material-item:hover {
	background-color: #ecfdf5;
}

.material-item:hover .material-title {
	color: #047857;
}

.material-title {
	color: #334155;
	font-weight: 700;
	transition: all 0.2s;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.material-date {
	font-size: 12px;
	color: #94a3b8;
	font-family: monospace;
	font-weight: 700;
	flex-shrink: 0;
	margin-left: 1rem;
}

@media (max-width: 767px) {
	.material-date {
		font-size: 11px;
		margin-left: 0.5rem;
	}
}

/* Map 섹션 */
.map-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 6rem 1rem;
}

@media (max-width: 767px) {
	.map-section {
		padding: 3rem 0.75rem;
	}
}

.map-container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.map-container {
		flex-direction: row;
	}
}

.map-info {
	width: 100%;
}

@media (min-width: 1024px) {
	.map-info {
		width: 33.333333%;
	}
}

.map-info h2 {
	font-size: 2.5rem;
	font-weight: 900;
	color: #0f172a;
	line-height: 1.25;
	margin-bottom: 2rem;
}

@media (max-width: 767px) {
	.map-info h2 {
		font-size: 1.875rem;
		margin-bottom: 1.5rem;
	}
}

.map-info h2 span {
	color: #059669;
}

.map-info p {
	color: #64748b;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 2rem;
}

@media (max-width: 767px) {
	.map-info p {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
}

.map-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.map-feature {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: 1.5rem;
	border: 1px solid;
}

@media (max-width: 767px) {
	.map-feature {
		padding: 1rem;
		gap: 0.75rem;
	}
	
	.map-feature div:first-child {
		font-size: 1.375rem;
	}
	
	.map-feature div:last-child {
		font-size: 1rem;
	}
}

.map-feature.emerald {
	background-color: #ecfdf5;
	border-color: #d1fae5;
}

.map-feature.blue {
	background-color: #eff6ff;
	border-color: #dbeafe;
}

.map-feature div:first-child {
	font-size: 1.625rem;
}

.map-feature div:last-child {
	font-weight: 700;
}

.map-feature.emerald div:last-child {
	color: #064e3b;
}

.map-feature.blue div:last-child {
	color: #1e3a8a;
}

.map-btn {
	width: 100%;
	padding: 1.25rem;
	background-color: #0f172a;
	color: #ffffff;
	border-radius: 2rem;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	font-size: 1.1rem;
}

@media (max-width: 767px) {
	.map-btn {
		padding: 1rem;
		font-size: 1rem;
	}
}

.map-btn:hover {
	background-color: #1e293b;
}

.map-display {
	width: 100%;
	height: 550px;
	border-radius: 4rem;
	background-color: #f1f5f9;
	border: 1px solid #e2e8f0;
	overflow: hidden;
	position: relative;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
	.map-display {
		height: 300px;
		border-radius: 2rem;
	}
}

@media (min-width: 1024px) {
	.map-display {
		width: 66.666667%;
	}
}

.map-display iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(20%);
	transition: filter 0.7s;
}

.map-display:hover iframe {
	filter: grayscale(0%);
}

.map-overlay {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	padding: 1.5rem;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	border-radius: 1.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 1px solid #f1f5f9;
	max-width: 20rem;
	pointer-events: none;
}

@media (max-width: 767px) {
	.map-overlay {
		bottom: 1rem;
		right: 1rem;
		padding: 1rem;
		border-radius: 1rem;
		max-width: calc(100% - 2rem);
	}
	
	.map-overlay-label {
		font-size: 0.75rem;
		margin-bottom: 0.25rem;
	}
	
	.map-overlay-text {
		font-size: 0.875rem;
	}
}

.map-overlay-label {
	font-size: 0.875rem;
	font-weight: 900;
	color: #059669;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}

.map-overlay-text {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
}

/* 반응형 텍스트 줄바꿈 */
@media (max-width: 767px) {
	.hero-title br {
		display: block;
	}
	
	.hero-description br {
		display: block;
	}
	
	.map-info h2 br {
		display: block;
	}
}

@media (min-width: 768px) {
	.hero-description br.lg-only {
		display: block;
	}
}
/* ========== Sub Page Styles ========== */
/* Page Header Section */
.page-header-section {
	position: relative;
	background-color: #f8fafc;
	border-bottom: 1px solid #f1f5f9;
	padding: 8rem 0 4rem;
	overflow: hidden;
	text-align: center;
}

.page-header-section.page-header-light {
	padding: 5rem 0 2.5rem;
}

.page-header-bg {
	position: absolute;
	inset: 0;
}

.page-header-bg-text {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0.05;
	transform: translateY(-50%) translateX(25%);
	font-size: 18.75rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	color: #0f172a;
	pointer-events: none;
	white-space: nowrap;
	z-index: 1;
}

@media (max-width: 1024px) {
	.page-header-bg-text {
		font-size: 12rem;
	}
}

@media (max-width: 767px) {
	.page-header-bg-text {
		font-size: 8rem;
	}
}

.page-header-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.8));
	z-index: 2;
}

.page-header-content {
	position: relative;
	z-index: 10;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2.5rem;
}

@media (max-width: 767px) {
	.page-header-section {
		padding: 6rem 0 3rem;
	}
	
	.page-header-section.page-header-light {
		padding: 4rem 0 2rem;
	}
	
	.page-header-content {
		padding: 0 1rem;
	}
}

.page-header-subtitle {
	font-size: 0.75rem;
	font-weight: 900;
	color: #059669;
	text-transform: uppercase;
	letter-spacing: 0.4em;
	margin-bottom: 1.25rem;
}

.page-header-title {
	font-size: 3rem;
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

@media (min-width: 768px) {
	.page-header-title {
		font-size: 4rem;
	}
}

@media (min-width: 1024px) {
	.page-header-title {
		font-size: 5rem;
	}
}

@media (max-width: 767px) {
	.page-header-title {
		font-size: 2rem;
	}
}

/* Page Content Section */
.page-content-section {
	padding: 6rem 0;
}

.page-content-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (max-width: 767px) {
	.page-content-section {
		padding: 3rem 0;
	}
	
	.page-content-container {
		padding: 0 1rem;
	}
}

/* About Page Styles */
.about-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	color: #475569;
	font-size: 1.125rem;
	line-height: 1.75;
	font-weight: 500;
}

.about-intro-card {
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 4rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 1px solid #f1f5f9;
	position: relative;
	overflow: hidden;
}

.about-intro-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 100%;
	background-color: #059669;
}

.about-intro-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 1.5rem;
}

.about-detail-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.about-quote-card {
	background-color: #d1fae5;
	padding: 3rem;
	border-radius: 3.5rem;
	border: 1px solid #a7f3d0;
	color: #065f46;
	font-style: italic;
	font-size: 1.125rem;
	line-height: 1.75;
}

@media (max-width: 767px) {
	.about-content {
		font-size: 1rem;
		gap: 2rem;
	}
	
	.about-intro-card {
		padding: 2rem;
		border-radius: 3rem;
	}
	
	.about-quote-card {
		padding: 2rem;
		border-radius: 2.5rem;
	}
}

/* Greeting Page Styles */
.greeting-header-section {
	position: relative;
	background-color: #065f46;
	padding: 8rem 0 4rem;
	text-align: center;
	overflow: hidden;
}

.greeting-header-bg {
	position: absolute;
	inset: 0;
	background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=2000');
	background-size: cover;
	background-position: center;
}

.greeting-header-bg img {
	display: none;
}

.greeting-header-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(6, 95, 70, 0.9);
}

.greeting-header-content {
	position: relative;
	z-index: 10;
}

.greeting-header-title {
	font-size: 3rem;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.02em;
}

@media (min-width: 768px) {
	.greeting-header-title {
		font-size: 4rem;
	}
}

@media (min-width: 1024px) {
	.greeting-header-title {
		font-size: 5rem;
	}
}

.greeting-content-section {
	padding: 8rem 0;
}

.greeting-content-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.greeting-content-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 5rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.greeting-content-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.greeting-image {
	border-radius: 4rem;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.greeting-image img {
	width: 100%;
	height: auto;
	display: block;
}

.greeting-text {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.greeting-text-title {
	font-size: 2.25rem;
	font-weight: 900;
	color: #0f172a;
	line-height: 1.2;
}

.greeting-text-title span {
	color: #059669;
}

.greeting-text-description {
	font-size: 1.125rem;
	color: #475569;
	line-height: 1.75;
	font-weight: 500;
}

@media (max-width: 767px) {
	.greeting-content-section {
		padding: 4rem 0;
	}
	
	.greeting-content-grid {
		gap: 3rem;
	}
	
	.greeting-text-title {
		font-size: 1.75rem;
	}
	
	.greeting-text-description {
		font-size: 1rem;
	}
}

/* Organization Chart Styles */
.org-chart-section {
	padding: 6rem 0;
	overflow: hidden;
}

.org-chart-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	overflow: hidden;
}

.org-chart-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.org-level-1 {
	position: relative;
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.org-box {
	padding: 1.5rem 3rem;
	border-radius: 1.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	text-align: center;
	position: relative;
	z-index: 10;
}

.org-box-ceo {
	background-color: #0f172a;
	color: #ffffff;
	min-width: 180px;
	max-width: 224px;
}

.org-box-ceo h3 {
	font-size: 1.25rem;
	font-weight: 900;
	margin: 0;
}

.org-connector {
	position: absolute;
	bottom: -3rem;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 3rem;
	background-color: #e2e8f0;
}

.org-side-box {
	position: absolute;
	left: 100%;
	/* margin-left: 1.5rem; */
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
}

.org-connector-horizontal {
	width: 1.5rem;
	height: 2px;
	background-color: #e2e8f0;
}

.org-box-side {
	background-color: #ffffff;
	border: 2px solid #e2e8f0;
	min-width: 120px;
	padding: 0.875rem 1.25rem;
	transition: all 0.3s;
	border-radius: 1rem;
}

.org-box-side:hover {
	border-color: #059669;
}

.org-box-side h4 {
	font-size: 0.875rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.org-connector-main {
	width: 50%;
	max-width: 500px;
	height: 2px;
	background-color: #e2e8f0;
	position: relative;
	margin-bottom: 2.9rem;
}

.org-connector-vertical {
	position: absolute;
	top: 0;
	width: 2px;
	height: 3rem;
	background-color: #e2e8f0;
}

.org-connector-left {
	left: 0;
}

.org-connector-right {
	right: 0;
}

.org-level-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	width: 100%;
	max-width: 700px;
	padding: 0 1rem;
}

@media (min-width: 768px) {
	.org-level-2 {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
		max-width: 800px;
	}
}

.org-department {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.org-box-department {
	padding: 1.25rem 1.5rem;
	color: #ffffff;
	width: 100%;
	max-width: 280px;
	border-radius: 1rem;
}

.org-box-education {
	background-color: #059669;
}

.org-box-research {
	background-color: #2563eb;
}

.org-box-department h3 {
	font-size: 1.125rem;
	font-weight: 900;
	margin: 0;
}

.org-teams {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 3rem;
	width: 100%;
}

.org-team-box {
	padding: 1rem 1.25rem;
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.08);
	border-radius: 0.75rem;
	text-align: center;
	transition: all 0.3s;
	cursor: pointer;
}

.org-team-box:hover {
	box-shadow: 0 4px 12px -3px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.org-team-box p {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #475569;
	transition: color 0.3s;
	margin: 0;
}

.org-department:first-child .org-team-box:hover p {
	color: #059669;
}

.org-department:last-child .org-team-box:hover p {
	color: #2563eb;
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
	.org-chart-section {
		padding: 4rem 0;
	}
	
	
	
	.org-connector-main {
		width: 60%;
	}
}

/* 모바일 반응형 */
@media (max-width: 767px) {
	.org-chart-section {
		padding: 3rem 0;
	}
	
	.org-chart-container {
		padding: 0 2rem;
	}
	
	.org-level-1 {
		margin-bottom: 0;
	}
	
	.org-box {
		padding: 1.25rem 2rem;
	}
	
	.org-box-ceo {
		min-width: 150px;
	}
	
	.org-box-ceo h3 {
		font-size: 1.125rem;
	}
	
	.org-connector {
		bottom: -2rem;
		height: 2rem;
	}
	
	.org-side-box {
		position: static;
		transform: none;
		margin-left: 0;
		margin-top: 1.5rem;
		flex-direction: column;
	}
	
	.org-connector-horizontal {
		width: 2px;
		height: 0.75rem;
	}
	
	.org-box-side {
		min-width: 130px;
	}
	
	.org-connector-main {
		width: 2px;
		height: 2rem;
		margin-bottom: 0;
	}
	
	.org-connector-vertical {
		display: none;
	}
	
	.org-level-2 {
		gap: 2rem;
		padding: 0;
	}
	
	.org-box-department {
		max-width: 100%;
		padding: 1rem 1.25rem;
	}
	
	.org-box-department h3 {
		font-size: 1rem;
	}
	
	.org-teams {
		padding-top: 2rem;
	}
	
	.org-team-box {
		padding: 0.875rem 1rem;
	}
	
	.org-team-box p {
		font-size: 0.875rem;
	}
}

/* Access Page Styles */
.access-content-section {
	padding: 3rem 0;
}

.access-content-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.access-content-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 1024px) {
	.access-content-grid {
		grid-template-columns: 5fr 7fr;
		gap: 2.5rem;
	}
}

.access-info-column {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.access-address-box {
	background-color: #ffffff;
	padding: 2.5rem;
	border-radius: 2.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 1px solid #f1f5f9;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.access-address-header {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.access-address-header h2 {
	font-size: 1.5rem;
	font-weight: 900;
	color: #0f172a;
}

.access-address-header p {
	color: #059669;
	font-weight: 700;
	line-height: 1.75;
}

.access-address-footer {
	padding-top: 1rem;
	border-top: 1px solid #f8fafc;
}

.access-map-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #0f172a;
	font-weight: 900;
	text-decoration: none;
	transition: color 0.2s;
}

.access-map-link:hover {
	color: #059669;
}

.access-transit-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.access-transit-box {
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 2.5rem;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.access-transit-icon {
	width: 48px;
	height: 48px;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.access-transit-icon-subway {
	background-color: #dbeafe;
}

.access-transit-icon-bus {
	background-color: #d1fae5;
}

.access-transit-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.access-transit-content h3 {
	font-weight: 900;
	color: #0f172a;
}

.access-transit-content p {
	font-size: 0.875rem;
	color: #64748b;
	font-weight: 500;
	line-height: 1.75;
}

.access-transit-highlight {
	font-weight: 700;
}

.access-transit-blue {
	color: #2563eb;
}

.access-bus-routes {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.access-bus-route {
	font-size: 0.8125rem;
	font-weight: 500;
	color: #475569;
	padding-left: 0.75rem;
	border-left: 2px solid;
}

.access-bus-route-emerald {
	border-color: #059669;
}

.access-bus-route-blue {
	border-color: #2563eb;
}

.access-bus-route-amber {
	border-color: #d97706;
}

.access-bus-route-title {
	font-weight: 700;
	margin-bottom: 0.125rem;
}

.access-bus-route-emerald .access-bus-route-title {
	color: #059669;
}

.access-bus-route-blue .access-bus-route-title {
	color: #2563eb;
}

.access-bus-route-amber .access-bus-route-title {
	color: #d97706;
}

.access-map-column {
	min-height: 500px;
	height: 100%;
}

@media (min-width: 1024px) {
	.access-map-column {
		height: auto;
	}
}

.access-map-wrapper {
	width: 100%;
	height: 100%;
	background-color: #f1f5f9;
	border-radius: 3.5rem;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 1px solid #e2e8f0;
}

.access-map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media (max-width: 767px) {
	.access-content-section {
		padding: 2rem 0;
	}
	
	.access-address-box {
		padding: 1.5rem;
		border-radius: 2rem;
	}
	
	.access-transit-box {
		padding: 1.5rem;
		border-radius: 2rem;
	}
	
	.access-map-column {
		min-height: 400px;
	}
	
	.access-map-wrapper {
		border-radius: 2.5rem;
	}
}

/* Education Course Section */
.education-course-section {
	padding: 6rem 0;
}

.education-course-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.education-course-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.education-course-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.education-course-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.education-course-card {
	background-color: #ffffff;
	border-radius: 2.5rem;
	overflow: hidden;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	cursor: pointer;
	transform: translateY(0);
}

.education-course-card:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: translateY(-8px);
}

.education-course-image {
	height: 208px;
	overflow: hidden;
	position: relative;
}

.education-course-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.education-course-card:hover .education-course-image img {
	transform: scale(1.1);
}

.education-course-status {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	padding: 0.375rem 0.875rem;
	border-radius: 0.75rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	font-size: 0.625rem;
	font-weight: 900;
	color: #ffffff;
}

.education-course-status-available {
	background-color: #059669;
}

.education-course-status-preparing {
	background-color: #64748b;
}

.education-course-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.education-course-title {
	font-size: 1.1875rem;
	font-weight: 900;
	color: #0f172a;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 767px) {
	.education-course-section {
		padding: 3rem 0;
	}
	
	.education-course-grid {
		gap: 1.5rem;
	}
	
	.education-course-image {
		height: 180px;
	}
	
	.education-course-content {
		padding: 1.5rem;
	}
}

/* Course Modal */
.course-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	background-color: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(4px);
	align-items: center;
	justify-content: center;
	padding: 1rem;
	animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.course-modal-content {
	background-color: #ffffff;
	width: 100%;
	max-width: 56rem;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 3rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

.course-modal-inner {
	padding: 3rem;
	position: relative;
}

.course-modal-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	background-color: #f1f5f9;
	border-radius: 9999px;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	font-size: 1.25rem;
	transition: background-color 0.2s;
}

.course-modal-close:hover {
	background-color: #e2e8f0;
}

.course-modal-title {
	font-size: 1.875rem;
	font-weight: 900;
	color: #0f172a;
	margin-bottom: 2rem;
}

.course-modal-details-3col {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2.5rem;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	padding: 2rem;
	background-color: #f8fafc;
}

@media (min-width: 768px) {
	.course-modal-details-3col {
		grid-template-columns: 1fr 1fr auto;
		gap: 2.2rem;
	}
}

.course-modal-details-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.course-modal-detail-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0.5rem;
    align-items: start;
    font-size: 0.9rem;
}

.course-modal-detail-label {
	font-weight: 700;
	color: #334155;
}

.course-modal-detail-value {
	color: #475569;
	font-weight: 500;
}

.course-modal-details-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.course-modal-apply-complete {
	color: #2e7d32;
	font-size: 0.9375rem;
	font-weight: 700;
	text-align: center;
}

@media (max-width: 767px) {
	.course-modal-details-action {
		justify-content: stretch;
	}
}

.course-modal-editor-wrapper {
	margin-bottom: 2.5rem;
}

.course-modal-editor-label {
	display: block;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 1rem;
}

.course-modal-editor {
	width: 100%;
	min-height: 200px;
	border: 1px solid #e2e8f0;
	border-radius: 0.75rem;
	padding: 1rem;
	font-size: 0.9375rem;
	font-family: inherit;
	resize: vertical;
}

.course-modal-editor:focus {
	outline: none;
	border-color: #059669;
	box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Summernote 에디터 스타일 조정 */
.course-modal-editor-wrapper .note-editor {
	border: 1px solid #e2e8f0;
	border-radius: 0.75rem;
	overflow: hidden;
}

.course-modal-editor-wrapper .note-editor.note-frame .note-editing-area .note-editable {
	padding: 1rem;
	font-size: 0.9375rem;
	min-height: 200px;
}

.course-modal-editor-wrapper .note-editor.note-frame .note-editing-area .note-editable:focus {
	border-color: #059669;
}

/* 교육과정 상세내용(에디터 대신 박스 출력) */
.course-modal-body {
	/* width: 100%; */
	min-height: 200px;
	padding: 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 0.75rem;
	background-color: #f8fafc;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #0f172a;
	overflow: auto;
}
.course-modal-body img {
	max-width: 100%;
	height: auto;
}
.course-modal-body table {
	max-width: 100%;
}

.course-modal-body {
	padding: 1.5rem;
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 0.75rem;
	min-height: 200px;
	color: #475569;
	font-size: 0.9375rem;
	line-height: 1.75;
}

.course-modal-btn {
	/* padding: 1.5rem 2rem; */
	padding: 0.8rem 2rem;
	background-color: #059669;
	color: #ffffff;
	border-radius: 0.75rem;
	font-size: 1rem;
	font-weight: 900;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	min-width: 120px;
}

.course-modal-btn:hover:not(:disabled) {
	background-color: #047857;
}

.course-modal-btn:disabled {
	background-color: #94a3b8;
	cursor: not-allowed;
}

@media (max-width: 767px) {
	.course-modal-btn {
		width: 100%;
		padding: 1.25rem 1.5rem;
		font-size: 0.9375rem;
	}
}

@media (max-width: 767px) {
	.course-modal-inner {
		padding: 2rem;
	}
	
	.course-modal-close {
		top: 1rem;
		right: 1rem;
		width: 2.5rem;
		height: 2.5rem;
	}
	
	.course-modal-title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
	
	.course-modal-details-3col {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.5rem;
	}
	
	.course-modal-details-column {
		gap: 0.625rem;
	}
	
	.course-modal-detail-row {
		grid-template-columns: 85px 1fr;
		gap: 0.75rem;
		font-size: 0.8125rem;
	}
	
	.course-modal-editor-label {
		font-size: 0.875rem;
	}
	
	.course-modal-body {
		padding: 1rem;
		min-height: 150px;
		font-size: 0.875rem;
	}
}

/* Education Apply Section */
.education-apply-section {
	min-height: 80vh;
	background-color: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 0 5rem 0;
}

.education-apply-container {
	max-width: 64rem;
	width: 100%;
	padding: 0 1.5rem;
	text-align: center;
}

.education-apply-header {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 3rem;
}

.education-apply-subtitle {
	font-size: 0.75rem;
	font-weight: 900;
	color: #059669;
	text-transform: uppercase;
	letter-spacing: 0.4em;
}

.education-apply-title {
	font-size: 2.25rem;
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

@media (min-width: 768px) {
	.education-apply-title {
		font-size: 3rem;
	}
}

.education-apply-description {
	color: #64748b;
	font-weight: 700;
	font-size: 1.125rem;
}

.education-apply-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.education-apply-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.education-apply-card {
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 3.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 1px solid #f1f5f9;
	text-align: left;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	position: relative;
}

.education-apply-card:hover {
	border-color: #059669;
	transform: translateY(-4px);
}

.education-apply-card-blue:hover {
	border-color: #2563eb;
}

.education-apply-icon {
	width: 80px;
	height: 80px;
	border-radius: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.25rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.education-apply-card-emerald .education-apply-icon {
	background-color: #d1fae5;
}

.education-apply-card-blue .education-apply-icon {
	background-color: #dbeafe;
}

.education-apply-card:hover .education-apply-icon {
	color: #ffffff;
}

.education-apply-card-emerald:hover .education-apply-icon {
	background-color: #059669;
}

.education-apply-card-blue:hover .education-apply-icon {
	background-color: #2563eb;
}

.education-apply-card h3 {
	font-size: 1.5rem;
	font-weight: 900;
	color: #0f172a;
	margin-bottom: 1rem;
}

.education-apply-card p {
	color: #64748b;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 2rem;
	flex-grow: 1;
}

.education-apply-link {
	display: flex;
	align-items: center;
	font-weight: 900;
	color: #059669;
}

.education-apply-card-blue .education-apply-link {
	color: #2563eb;
}

@media (max-width: 767px) {
	.education-apply-section {
		padding: 3rem 0;
	}
	
	.education-apply-card {
		padding: 2rem;
		border-radius: 2.5rem;
	}
	
	.education-apply-icon {
		width: 64px;
		height: 64px;
		font-size: 1.875rem;
	}
}

/* Education Apply List Section */
.education-apply-list-section {
	padding: 6rem 0;
	background-color: #ffffff;
	border-bottom: 1px solid #f1f5f9;
}

.education-apply-list-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2.5rem;
}

.education-apply-list-header {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.education-apply-list-header {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}
}

.education-apply-list-title {
	font-size: 2.25rem;
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -0.02em;
}

@media (min-width: 768px) {
	.education-apply-list-title {
		font-size: 2.5rem;
	}
}

.education-apply-list-back {
	color: #94a3b8;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s;
}

.education-apply-list-back:hover {
	color: #475569;
}

.education-apply-table-wrapper {
	border: 1px solid #e2e8f0;
	border-radius: 1.5rem;
	overflow: hidden;
	background-color: #ffffff;
}

.education-table-header {
	display: none;
	background-color: #f8fafc;
	border-bottom: 2px solid #e2e8f0;
}

@media (min-width: 768px) {
	.education-table-header {
		display: grid;
		grid-template-columns: 2fr 2fr 1fr;
		gap: 2rem;
		padding: 1.5rem 2rem;
		align-items: center;
	}
}

.education-table-header-cell {
	font-size: 0.9375rem;
	font-weight: 900;
	color: #0f172a;
	text-align: center;
}

.education-table-header-cell:first-child {
	text-align: left;
}

.education-apply-list-grid {
	display: flex;
	flex-direction: column;
}

.education-table-empty {
	text-align: center;
	padding: 4rem 2rem;
	color: #94a3b8;
	font-weight: 700;
}

.education-table-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	background-color: #ffffff;
	border-bottom: 1px solid #e2e8f0;
	padding: 2rem;
	transition: all 0.3s ease;
}

.education-table-row:last-child {
	border-bottom: none;
}

.education-table-row:hover {
	background-color: #f8fafc;
}

@media (min-width: 768px) {
	.education-table-row {
		grid-template-columns: 2fr 2fr 1fr;
		align-items: center;
		gap: 2rem;
		padding: 1.5rem 2rem;
	}
}

.education-table-cell {
	display: flex;
	flex-direction: column;
}

.education-table-cell-info {
	gap: 0.75rem;
}

.education-table-title {
	font-size: 1.125rem;
	font-weight: 900;
	color: #0f172a;
	margin-bottom: 0.5rem;
}

.education-table-meta {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 1rem;
	font-size: 0.875rem;
}

.education-table-meta span:first-child {
	color: #64748b;
	font-weight: 600;
}

.education-table-meta span:last-child {
	color: #334155;
	font-weight: 500;
}

.education-table-cell-period {
	gap: 0.75rem;
}

.education-table-period-row {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 1rem;
	font-size: 0.875rem;
}

.education-table-period-label {
	color: #64748b;
	font-weight: 600;
}

.education-table-period-value {
	color: #2563eb;
	font-weight: 600;
}

.education-table-cell-action {
	display: flex;
	align-items: center;
	justify-content: center;
}

.education-table-apply-btn {
	padding: 1rem 2rem;
	background-color: #059669;
	color: #ffffff;
	border-radius: 0.75rem;
	font-size: 1rem;
	font-weight: 900;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.education-table-apply-btn:hover {
	background-color: #047857;
	transform: translateX(4px);
}

.education-table-apply-btn.education-table-apply-closed {
	background-color: #9ca3af;
	cursor: default;
}

.education-table-apply-btn.education-table-apply-closed:hover {
	background-color: #9ca3af;
	transform: none;
}

@media (max-width: 767px) {
	.education-apply-list-section {
		padding: 3rem 0;
	}
	
	.education-apply-list-container {
		padding: 0 1rem;
	}
	
	.education-apply-list-header {
		margin-bottom: 2rem;
	}
	
	.education-table-row {
		padding: 1.5rem;
		gap: 1.25rem;
	}
	
	.education-table-title {
		font-size: 1rem;
	}
	
	.education-table-meta {
		grid-template-columns: 90px 1fr;
		gap: 0.75rem;
		font-size: 0.8125rem;
	}
	
	.education-table-period-row {
		grid-template-columns: 70px 1fr;
		gap: 0.75rem;
		font-size: 0.8125rem;
	}
	
	.education-table-apply-btn {
		width: 100%;
		padding: 0.875rem 1.5rem;
	}
}

/* Classroom Section */
.classroom-section {
	min-height: 90vh;
	background-color: #f8fafc;
	padding: 4rem 0 6rem;
}

.classroom-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.classroom-header {
	text-align: center;
	padding: 4rem 0;
}

.classroom-subtitle {
	font-size: 0.75rem;
	font-weight: 900;
	color: #059669;
	text-transform: uppercase;
	letter-spacing: 0.4em;
	margin-bottom: 1rem;
}

.classroom-title {
	font-size: 2.25rem;
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -0.02em;
}

@media (min-width: 768px) {
	.classroom-title {
		font-size: 2.5rem;
	}
}

.classroom-tabs {
	background-color: #ffffff;
	border-radius: 2rem;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid #f1f5f9;
	padding: 0.5rem;
	margin-bottom: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

@media (min-width: 1024px) {
	.classroom-tabs {
		flex-wrap: nowrap;
	}
}

.classroom-tab {
	flex-grow: 1;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
	font-weight: 700;
	font-size: 0.9375rem;
	transition: all 0.2s;
	border: none;
	background: none;
	cursor: pointer;
	text-decoration: none;
	color: #64748b;
	text-align: center;
}

.classroom-tab:hover {
	background-color: #f8fafc;
}

.classroom-tab.active {
	background-color: #059669;
	color: #ffffff;
	box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.2);
}

.classroom-content {
	margin-top: 1.5rem;
}

/* Classroom List */
.classroom-list {
	background-color: #ffffff;
	border-radius: 2.5rem;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.classroom-list-item {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	border-bottom: 1px solid #f8fafc;
}

.classroom-list-item:last-child {
	border-bottom: none;
}

@media (min-width: 768px) {
	.classroom-list-item {
		flex-direction: row;
		justify-content: space-between;
	}
}

.classroom-list-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex-grow: 1;
}

.classroom-status-badge {
	padding: 0.25rem 0.625rem;
	background-color: #f1f5f9;
	color: #64748b;
	font-size: 0.625rem;
	font-weight: 900;
	border-radius: 0.5rem;
	text-transform: uppercase;
	display: inline-block;
	width: fit-content;
}

.classroom-list-title {
	font-size: 1.25rem;
	font-weight: 900;
	color: #0f172a;
}

.classroom-list-date {
	color: #94a3b8;
	font-size: 0.875rem;
	font-weight: 500;
}

.classroom-cancel-btn {
	padding: 0.75rem 1.5rem;
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	color: #94a3b8;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.classroom-cancel-btn:hover {
	background-color: #fef2f2;
	color: #dc2626;
}

.classroom-notice {
	text-align: center;
	color: #94a3b8;
	font-size: 0.875rem;
	font-weight: 500;
	margin-top: 2rem;
}

/* Classroom Grid */
.classroom-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.classroom-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.classroom-learning-card {
	background-color: #ffffff;
	padding: 2.5rem;
	border-radius: 3rem;
	border: 1px solid #d1fae5;
	box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.05);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.classroom-learning-title {
	font-size: 1.5rem;
	font-weight: 900;
	color: #0f172a;
	line-height: 1.3;
}

.classroom-learning-date {
	color: #334155;
	font-weight: 900;
	margin-top: 1rem;
}

.classroom-learning-btn {
	width: 100%;
	padding: 1rem;
	background-color: #0f172a;
	color: #ffffff;
	border-radius: 1rem;
	font-weight: 900;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s;
	margin-top: 2rem;
}

.classroom-learning-btn:hover {
	background-color: #059669;
}

.classroom-empty-grid {
	grid-column: 1 / -1;
	padding: 10rem 2rem;
	background-color: #ffffff;
	border-radius: 3rem;
	text-align: center;
	color: #94a3b8;
	font-weight: 700;
}

/* Classroom Table */
.classroom-table-wrapper {
	background-color: #ffffff;
	border-radius: 2.5rem;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.classroom-table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

.classroom-table tr {
	border-bottom: 1px solid #f8fafc;
}

.classroom-table tr:last-child {
	border-bottom: none;
}

.classroom-table-title {
	padding: 1.5rem 2rem;
	font-weight: 900;
	color: #0f172a;
}

.classroom-table-status {
	padding: 1.5rem 2rem;
	text-align: center;
}

.classroom-completed-badge {
	padding: 0.25rem 0.75rem;
	background-color: #d1fae5;
	color: #065f46;
	font-size: 0.625rem;
	font-weight: 900;
	border-radius: 0.5rem;
	text-transform: uppercase;
}

/* Classroom Materials */
.classroom-materials {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.classroom-material-item {
	background-color: #ffffff;
	padding: 1.5rem;
	border-radius: 1.5rem;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	cursor: pointer;
}

.classroom-material-item:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.classroom-material-info {
	flex-grow: 1;
}

.classroom-material-title {
	font-weight: 700;
	color: #0f172a;
}

.classroom-material-meta {
	font-size: 0.75rem;
	color: #94a3b8;
	margin-top: 0.25rem;
}

.classroom-material-download {
	width: 2.5rem;
	height: 2.5rem;
	background-color: #0f172a;
	color: #ffffff;
	border-radius: 0.75rem;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	transition: background-color 0.2s;
	flex-shrink: 0;
}

.classroom-material-download:hover {
	background-color: #059669;
}

.classroom-empty {
	padding: 5rem 2rem;
	text-align: center;
	color: #94a3b8;
	font-weight: 700;
}

@media (max-width: 767px) {
	.classroom-section {
		padding: 3rem 0 4rem;
	}
	
	.classroom-header {
		padding: 2rem 0;
	}
	
	.classroom-tabs {
		padding: 0.375rem;
	}
	
	.classroom-tab {
		padding: 0.75rem 1rem;
		font-size: 0.875rem;
	}
	
	.classroom-list-item {
		padding: 1.5rem;
	}
	
	.classroom-learning-card {
		padding: 2rem;
		border-radius: 2rem;
	}
}

/* Research Intro Page Styles */
.research-header-section {
	position: relative;
	background-color: #0f172a;
	padding: 8rem 0 4rem;
	text-align: center;
	overflow: hidden;
}

.research-header-bg {
	position: absolute;
	inset: 0;
	background-image: url('https://images.unsplash.com/photo-1473448912268-2022ce9509d8?q=80&w=2000');
	background-size: cover;
	background-position: center;
}

.research-header-bg img {
	display: none;
}

.research-header-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(15, 23, 42, 0.8);
}

.research-header-content {
	position: relative;
	z-index: 10;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2.5rem;
}

.research-header-subtitle {
	font-size: 0.75rem;
	font-weight: 900;
	color: #4ade80;
	text-transform: uppercase;
	letter-spacing: 0.4em;
	margin-bottom: 1.25rem;
}

.research-header-title {
	font-size: 2.5rem;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.research-header-title span {
	color: #4ade80;
}

@media (min-width: 768px) {
	.research-header-title {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.research-header-title {
		font-size: 4rem;
	}
}

@media (max-width: 767px) {
	.research-header-section {
		padding: 6rem 0 3rem;
	}
	
	.research-header-content {
		padding: 0 1rem;
	}
	
	.research-header-title {
		font-size: 2rem;
		line-height: 1.4;
	}
}

.research-content-section {
	padding: 6rem 0;
}

.research-content-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 8rem;
}

.research-intro-text {
	/* max-width: 64rem; */
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.research-intro-main {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.75;
}

.research-intro-sub {
	color: #64748b;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75;
}

@media (max-width: 767px) {
	.research-content-section {
		padding: 3rem 0;
	}
	
	.research-content-container {
		gap: 4rem;
	}
	
	.research-intro-text {
		gap: 1.5rem;
	}
	
	.research-intro-main {
		font-size: 1.25rem;
	}
	
	.research-intro-sub {
		font-size: 1rem;
	}
}

.research-cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 768px) {
	.research-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.research-card {
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 3.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 1px solid #f8fafc;
	transition: all 0.3s ease;
	cursor: pointer;
}

.research-card:hover {
	border-color: #059669;
}

.research-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.875rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.research-card-emerald .research-card-icon {
	background-color: #d1fae5;
}

.research-card-blue .research-card-icon {
	background-color: #dbeafe;
}

.research-card-amber .research-card-icon {
	background-color: #fef3c7;
}

.research-card-slate .research-card-icon {
	background-color: #f1f5f9;
}

.research-card:hover .research-card-icon {
	color: #ffffff;
}

.research-card-emerald:hover .research-card-icon {
	background-color: #059669;
}

.research-card-blue:hover .research-card-icon {
	background-color: #2563eb;
}

.research-card-amber:hover .research-card-icon {
	background-color: #d97706;
}

.research-card-slate:hover .research-card-icon {
	background-color: #0f172a;
}

.research-card h3 {
	font-size: 1.5rem;
	font-weight: 900;
	color: #0f172a;
	margin-bottom: 1.5rem;
}

.research-card-list {
	list-style: disc;
	padding-left: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: #64748b;
	font-weight: 500;
}

.research-card-list li {
	line-height: 1.75;
}

@media (max-width: 767px) {
	.research-card {
		padding: 2rem;
		border-radius: 2.5rem;
	}
	
	.research-card-icon {
		width: 56px;
		height: 56px;
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
	
	.research-card h3 {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	
	.research-card-list {
		font-size: 0.9375rem;
	}
}

/* Customer Support Section */
.customer-support-section {
	padding: 6rem 0;
}

.customer-support-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.customer-support-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 768px) {
	.customer-support-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.customer-support-card {
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 4rem;
	border: 1px solid #f1f5f9;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.customer-support-card-inquiry {
	background-color: #ffffff;
}

.customer-support-card-phone {
	background-color: #0f172a;
	color: #ffffff;
}

.customer-support-phone-overlay {
	position: absolute;
	inset: 0;
	background-color: #059669;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.customer-support-card-phone:hover .customer-support-phone-overlay {
	opacity: 0.1;
}

.customer-support-icon {
	width: 96px;
	height: 96px;
	border-radius: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	transition: all 0.3s ease;
	position: relative;
	z-index: 10;
}

.customer-support-card-inquiry .customer-support-icon {
	background-color: #d1fae5;
}

.customer-support-card-phone .customer-support-icon {
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.customer-support-card-inquiry:hover .customer-support-icon {
	background-color: #059669;
	color: #ffffff;
}

.customer-support-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	z-index: 10;
}

.customer-support-content h3 {
	font-size: 1.875rem;
	font-weight: 900;
	color: #0f172a;
}

.customer-support-content-phone h3 {
	color: #ffffff;
}

.customer-support-content p {
	color: #64748b;
	font-weight: 500;
}

.customer-support-hours {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	color: #94a3b8;
	font-weight: 700;
	font-size: 0.875rem;
}

.customer-support-btn {
	width: 100%;
	padding: 1.25rem;
	border-radius: 2rem;
	font-size: 1.125rem;
	font-weight: 900;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	text-align: center;
	display: block;
	position: relative;
	z-index: 10;
}

.customer-support-btn-emerald {
	background-color: #059669;
	color: #ffffff;
	box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.2);
}

.customer-support-btn-emerald:hover {
	background-color: #047857;
}

.customer-support-btn-phone {
	background-color: #ffffff;
	color: #0f172a;
}

.customer-support-btn-phone:hover {
	background-color: #4ade80;
}

@media (max-width: 767px) {
	.customer-support-section {
		padding: 3rem 0;
	}
	
	.customer-support-card {
		padding: 2rem;
		border-radius: 3rem;
	}
	
	.customer-support-icon {
		width: 80px;
		height: 80px;
		font-size: 2.5rem;
	}
	
	.customer-support-content h3 {
		font-size: 1.5rem;
	}
}

/* Gallery Search Section */
.gallery-search-section {
	position: relative;
	background-color: #f8fafc;
	padding: 8rem 0;
	margin-top: 120px;
	border-bottom: 1px solid #f1f5f9;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
}

/* Customer Support Search Section (margin-top 없음) */
.customer-support-search-section {
	position: relative;
	background-color: #f8fafc;
	padding: 8rem 0;
	border-bottom: 1px solid #f1f5f9;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
}

.gallery-search-bg-text {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0.05;
	transform: translateY(-50%) translateX(25%);
	font-size: 18.75rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	color: #0f172a;
	pointer-events: none;
	white-space: nowrap;
	z-index: 1;
}

.gallery-search-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2.5rem;
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	box-sizing: border-box;
}

.gallery-search-header {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.gallery-search-subtitle {
	color: #059669;
	font-size: 0.875rem;
	font-weight: 900;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	margin: 0;
}

.gallery-search-title {
	font-size: 3rem;
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -0.02em;
	margin: 0;
}

.gallery-search-box {
	max-width: 42rem;
	margin: 0 auto;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.gallery-search-input {
	width: 100%;
	height: 4rem;
	background-color: #ffffff;
	border-radius: 1.5rem;
	padding: 0 4.5rem 0 2rem;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	border: none;
	font-size: 1.125rem;
	font-weight: 700;
	color: #0f172a;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.gallery-search-input:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.gallery-search-input::placeholder {
	color: #94a3b8;
}

.gallery-search-btn {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	background-color: #059669;
	color: #ffffff;
	border-radius: 0.75rem;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.25rem;
	transition: background-color 0.2s ease;
	box-sizing: border-box;
	flex-shrink: 0;
}

.gallery-search-btn:hover {
	background-color: #047857;
}

@media (max-width: 1024px) {
	.gallery-search-section {
		padding: 6rem 0;
		margin-top: 95px;
	}
	
	.customer-support-search-section {
		padding: 6rem 0;
	}
	
	.gallery-search-container {
		padding: 0 1.5rem;
	}
	
	.gallery-search-title {
		font-size: 2.5rem;
	}
	
	.gallery-search-bg-text {
		font-size: 15rem;
	}
}

@media (max-width: 767px) {
	.gallery-search-section {
		padding: 4rem 0;
		margin-top: 95px;
	}
	
	.customer-support-search-section {
		padding: 4rem 0;
	}
	
	.gallery-search-container {
		padding: 0 1rem;
		gap: 1.5rem;
	}
	
	.gallery-search-title {
		font-size: 2rem;
	}
	
	.gallery-search-subtitle {
		font-size: 0.75rem;
	}
	
	.gallery-search-input {
		height: 3.5rem;
		padding: 0 3.5rem 0 1.5rem;
		font-size: 1rem;
		border-radius: 1.25rem;
	}
	
	.gallery-search-btn {
		width: 2.5rem;
		height: 2.5rem;
		right: 0.75rem;
		font-size: 1rem;
		border-radius: 0.625rem;
	}
	
	.gallery-search-bg-text {
		font-size: 10rem;
		transform: translateY(-50%) translateX(20%);
	}
}

/* Page Header Search Section (소개 페이지용 - margin-top 없음) */
.page-header-search-section {
	position: relative;
	background-color: #f8fafc;
	padding: 8rem 0;
	border-bottom: 1px solid #f1f5f9;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
}

.page-header-search-bg-text {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0.05;
	transform: translateY(-50%) translateX(25%);
	font-size: 18.75rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	color: #0f172a;
	pointer-events: none;
	white-space: nowrap;
	z-index: 1;
}

.page-header-search-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2.5rem;
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	box-sizing: border-box;
}

.page-header-search-header {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.page-header-search-subtitle {
	color: #059669;
	font-size: 0.875rem;
	font-weight: 900;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	margin: 0;
}

.page-header-search-title {
	font-size: 3rem;
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -0.02em;
	margin: 0;
}

@media (max-width: 1024px) {
	.page-header-search-section {
		padding: 6rem 0;
	}
	
	.page-header-search-container {
		padding: 0 1.5rem;
	}
	
	.page-header-search-title {
		font-size: 2.5rem;
	}
	
	.page-header-search-bg-text {
		font-size: 15rem;
	}
}

@media (max-width: 767px) {
	.page-header-search-section {
		padding: 4rem 0;
	}
	
	.page-header-search-container {
		padding: 0 1rem;
		gap: 1.5rem;
	}
	
	.page-header-search-title {
		font-size: 2rem;
	}
	
	.page-header-search-subtitle {
		font-size: 0.75rem;
	}
	
	.page-header-search-bg-text {
		font-size: 10rem;
		transform: translateY(-50%) translateX(20%);
	}
}

/* ========== Consulting Intro Styles ========== */
.consulting-intro-section {
	background: white;
	padding: 4.5rem 0;
}

.consulting-intro-container {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 4.5rem;
}

.consulting-section-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.consulting-section-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.consulting-badge {
	background-color: #059669;
	color: white;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
}

.consulting-section-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	line-height: 1.5;
}

.consulting-card {
	position: relative;
	border-radius: 20px;
	padding: 2.25rem;
	overflow: hidden;
}

.consulting-card-white {
	background: white;
	border: 1px solid #f1f5f9;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}

.consulting-card-green {
	background: #f5fefa;
	border: 1px solid #a7f3d0;
}

.consulting-card-border {
	position: absolute;
	left: -1px;
	top: -6px;
	width: 8px;
	height: calc(100% + 12px);
	background-color: #059669;
}

.consulting-card p {
	color: #475569;
	font-size: 1.25rem;
	line-height: 1.6;
	margin: 0 0 0.5rem 0;
	font-weight: 500;
}

.consulting-card p:last-child {
	margin-bottom: 0;
}

.consulting-card-green p {
	color: #065f46;
}

.consulting-grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.25rem;
}

@media (min-width: 768px) {
	.consulting-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.consulting-small-card {
	background: #f5fefa;
	border: 1px solid #a7f3d0;
	border-radius: 16px;
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.consulting-small-card-title {
	color: #065f46;
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
}

.consulting-small-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.consulting-small-card-list li {
	color: #065f46;
	font-size: 1.125rem;
	line-height: 1.5;
	font-weight: 500;
}

.consulting-bullet-list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.consulting-bullet-item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.consulting-bullet-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	display: block;
	object-fit: contain;
}

.consulting-bullet-item p {
	margin: 0;
	color: #475569;
	font-size: 1.25rem;
	line-height: 1.5;
	font-weight: 500;
}

.consulting-bullet-item strong {
	font-weight: 600;
}

.consulting-cta-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

.consulting-cta-button {
	background-color: #059669;
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1.25rem 2.5rem;
	border-radius: 100px;
	font-size: 1.75rem;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.consulting-cta-button:hover {
	background-color: #047857;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
}

.consulting-cta-icon {
	width: 50px;
	height: 50px;
	display: block;
	object-fit: contain;
}

@media (max-width: 1440px) {
	.consulting-intro-container {
		width: 93.75%;
		margin: 0 auto;
	}
}

@media (max-width: 1024px) {
	.consulting-intro-section {
		padding: 3.5rem 0;
	}
	
	.consulting-intro-container {
		gap: 3.5rem;
	}
	
	.consulting-section-title {
		font-size: 1.25rem;
	}
	
	.consulting-card p {
		font-size: 1.125rem;
	}
	
	.consulting-small-card-title {
		font-size: 1.25rem;
	}
	
	.consulting-small-card-list li {
		font-size: 1rem;
	}
	
	.consulting-bullet-item p {
		font-size: 1.125rem;
	}
	
	.consulting-cta-button {
		font-size: 1.5rem;
		padding: 1rem 2rem;
	}
}

@media (max-width: 767px) {
	.consulting-intro-section {
		padding: 2.5rem 0;
	}
	
	.consulting-intro-container {
		gap: 2.5rem;
	}
	
	.consulting-section-wrapper {
		gap: 1rem;
	}
	
	.consulting-section-header {
		gap: 1rem;
		flex-wrap: wrap;
	}
	
	.consulting-badge {
		width: 40px;
		height: 40px;
		font-size: 1.25rem;
	}
	
	.consulting-section-title {
		font-size: 1.125rem;
		flex: 1;
		min-width: calc(100% - 56px);
	}
	
	.consulting-card {
		padding: 1.5rem;
	}
	
	.consulting-card p {
		font-size: 1rem;
	}
	
	.consulting-small-card {
		padding: 1.5rem;
	}
	
	.consulting-small-card-title {
		font-size: 1.125rem;
	}
	
	.consulting-small-card-list li {
		font-size: 0.9375rem;
	}
	
	.consulting-bullet-list {
		gap: 1.5rem;
	}
	
	.consulting-bullet-item {
		align-items: center;
	}
	
	.consulting-bullet-icon {
		width: 20px;
		height: 20px;
	}
	
	.consulting-bullet-item p {
		font-size: 1rem;
	}
	
	.consulting-cta-button {
		font-size: 1.125rem;
		padding: 0.875rem 1.5rem;
		text-align: center;
	}
	
	.consulting-cta-icon {
		width: 40px;
		height: 40px;
	}
}

/* ========== END Consulting Intro Styles ========== */

/* ========== Consulting Field Styles ========== */
.field-section {
	background: white;
	padding: 4.5rem 2.25rem;
}

.field-container {
	max-width: 1692px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 4.5rem;
}

.field-row {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.field-grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.25rem;
}

@media (min-width: 768px) {
	.field-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.field-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.field-item {
	display: flex;
	flex-direction: column;
	box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.25);
	border-radius: 18px;
	overflow: hidden;
}

.field-card-top {
	background: white;
	border: 1px solid #f8fafc;
	/* border-radius: 18px 18px 0 0; */
	padding: 1.125rem 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
	min-height: 198px;
	height: 100%;
}

.field-card-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.field-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	line-height: 1.5;
}

.field-card-desc {
	font-size: 1.25rem;
	color: #0f172a;
	line-height: 1.6;
	margin: 0;
	font-weight: 500;
}

.field-card-bottom {
	background: #f3f8f5;
	/* border-radius: 0 0 16px 16px; */
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5625rem;
	min-height: 182px;
	height: 100%;
}

.field-card-subtitle {
	font-size: 1.5rem;
	font-weight: 500;
	color: #065f46;
	margin: 0 0 0.5rem 0;
	line-height: 1.5;
}

.field-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.field-card-list li {
	font-size: 1.125rem;
	color: #065f46;
	line-height: 1.6;
	font-weight: 500;
}

@media (max-width: 1199px) {
	.field-section {
		padding: 3.5rem 1.5rem;
	}
	
	.field-container {
		gap: 3.5rem;
	}
	
	.field-grid-3 {
		gap: 1.75rem;
	}
	
	.field-card-title {
		font-size: 1.25rem;
	}
	
	.field-card-desc {
		font-size: 1.125rem;
	}
	
	.field-card-subtitle {
		font-size: 1.25rem;
	}
	
	.field-card-list li {
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	.field-section {
		padding: 2.5rem 1rem;
	}
	
	.field-container {
		gap: 2.5rem;
	}
	
	.field-grid-3 {
		gap: 1.5rem;
	}
	
	.field-card-top {
		padding: 1rem 1.5rem;
		min-height: auto;
	}
	
	.field-card-header {
		gap: 1rem;
	}
	
	.field-card-title {
		font-size: 1.125rem;
	}
	
	.field-card-desc {
		font-size: 1rem;
	}
	
	.field-card-bottom {
		padding: 1.5rem;
		min-height: auto;
	}
	
	.field-card-subtitle {
		font-size: 1.125rem;
	}
	
	.field-card-list li {
		font-size: 0.9375rem;
	}
}

/* ========== END Consulting Field Styles ========== */

/* ========== Consulting QNA Styles ========== */
.qna-section {
	background: white;
	padding: 4.5rem 2.25rem;
}

.qna-container {
	max-width: 1692px;
	margin: 0 auto;
}

.qna-flex-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 2.25rem;
}

.qna-item {
	flex: 1 1 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.25);
	border-radius: 18px;
	overflow: hidden;
}

@media (min-width: 768px) {
	.qna-item {
		flex: 1 1 calc(50% - 1.125rem);
		max-width: calc(50% - 1.125rem);
	}
}

@media (min-width: 1200px) {
	.qna-item {
		flex: 1 1 calc(33.333% - 1.5rem);
		max-width: calc(33.333% - 1.5rem);
	}
}

.qna-question {
	background: white;
	border: 1px solid #f8fafc;
	padding: 1.25rem 2.25rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	min-height: 96px;
}

.qna-badge-q {
	background-color: #059669;
	color: white;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
}

.qna-question-text {
	font-size: 1.4rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	line-height: 1.5;
}

.qna-answer {
	background: #f3f8f5;
	padding: 2.25rem;
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	min-height: 182px;
}

.qna-badge-a {
	color: #059669;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	flex-shrink: 0;
}

.qna-badge-a-light {
	background-color: #d1fae5;
}

.qna-badge-a-medium {
	background-color: #a7f3d0;
}

.qna-answer-text {
	font-size: 1.35rem;
	color: #065f46;
	line-height: 1.6;
	margin: 0;
	font-weight: 500;
}

@media (max-width: 1199px) {
	.qna-section {
		padding: 3.5rem 1.5rem;
	}
	
	.qna-flex-wrapper {
		gap: 1.75rem;
	}
	
	.qna-item {
		flex: 1 1 calc(50% - 0.875rem);
		max-width: calc(50% - 0.875rem);
	}
	
	.qna-question-text {
		font-size: 1.25rem;
	}
	
	.qna-answer-text {
		font-size: 1.125rem;
	}
}

@media (max-width: 767px) {
	.qna-section {
		padding: 2.5rem 1rem;
	}
	
	.qna-flex-wrapper {
		gap: 1.5rem;
	}
	
	.qna-item {
		flex: 1 1 100%;
		max-width: 100%;
	}
	
	.qna-question {
		padding: 1rem 1.5rem;
		gap: 1rem;
		min-height: auto;
	}
	
	.qna-badge-q,
	.qna-badge-a {
		width: 40px;
		height: 40px;
		font-size: 1.25rem;
	}
	
	.qna-question-text {
		font-size: 1.125rem;
	}
	
	.qna-answer {
		padding: 1.5rem;
		gap: 1rem;
		min-height: auto;
	}
	
	.qna-answer-text {
		font-size: 1rem;
	}
}

/* ========== END Consulting QNA Styles ========== */

/* ========== END Sub Page Styles ========== */
/* ========== END Main Page Styles ========== */
