/* SEO + 접근성 보강 CSS (V11 통합) */

/* 작업 6: 본문 폰트 ≥14px 보장 */
body,
p,
li,
span,
td,
th,
input,
textarea,
select,
button,
label {
	font-size: 14px;
}

@media (max-width: 768px) {
	body,
	p,
	li,
	span,
	td,
	th,
	input,
	textarea,
	select,
	button,
	label {
		font-size: 15px;
		line-height: 1.6;
	}
}

/* 작업 7: 탭 타겟 ≥44px (모바일 터치 영역) */
a,
button,
.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
[role="button"],
[role="link"] {
	min-height: 44px;
	min-width: 44px;
	box-sizing: border-box;
}

/* 인라인 텍스트 링크는 영향 받지 않도록 예외 (본문 내부 a) */
p a,
li a,
span a,
td a {
	min-height: auto;
	min-width: auto;
	display: inline;
}

/* 푸터 저작권 (h6 → p로 변경된 후 스타일링) */
.copyright {
	font-size: 12px;
	color: #999;
	text-align: center;
	margin: 16px 0 0;
	letter-spacing: 0.5px;
}

/* 스크린리더 전용 컨텐츠 (SEO AI 브리핑용) */
.sr-only {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
}
