@charset "utf-8";

:root {
	--primary: #00316a;
	--primary-foreground: #f8f8f8;
	--background: #ffffff;
	--foreground: #090b0f;
	--border: #dadee5;
	--muted-foreground: #596475;
	--card: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--foreground);
	background: var(--background);
}

.notice-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.notice-container {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.notice-main-inner {
	max-width: 1152px;
}

.notice-topbar {
	background: var(--primary);
	color: var(--primary-foreground);
}

.notice-topbar-inner {
	padding-top: 16px;
	padding-bottom: 16px;
}

.notice-topbar-title {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.5;
}

.notice-topbar-sub {
	margin-left: 8px;
	font-weight: 400;
	opacity: 0.8;
}

.notice-alert {
	border-bottom: 1px solid rgba(0, 49, 106, 0.1);
	background: rgba(0, 49, 106, 0.05);
}

.notice-alert-inner {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.notice-alert-text {
	font-size: 14px;
	font-weight: 500;
	color: var(--primary);
}

.notice-icon {
	flex-shrink: 0;
	color: var(--primary);
}

.notice-icon-sm {
	width: 16px;
	height: 16px;
}

.notice-icon-md {
	width: 20px;
	height: 20px;
}

.notice-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 16px 64px;
}

.notice-image-wrap {
	display: flex;
	justify-content: center;
}

.notice-image {
	width: 100%;
	max-width: 1024px;
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.notice-info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 32px;
}

.notice-info-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--card);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.notice-info-label {
	font-size: 12px;
	font-weight: 500;
	color: var(--muted-foreground);
	margin-bottom: 4px;
}

.notice-info-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--foreground);
}

.notice-footer {
	background: var(--primary);
	color: var(--primary-foreground);
	text-align: center;
	padding: 20px 16px;
}

.notice-footer p {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.9;
}

@media (min-width: 640px) {
	.notice-topbar-sub {
		display: inline;
	}
}

@media (min-width: 768px) {
	.notice-topbar-inner {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.notice-topbar-title {
		font-size: 16px;
	}

	.notice-main {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.notice-info-grid {
		grid-template-columns: 1fr 1fr;
	}

	.notice-info-value {
		font-size: 16px;
	}
}

@media (max-width: 639px) {
	.notice-topbar-sub {
		display: block;
		margin-left: 0;
		margin-top: 4px;
	}
}
