/* ============================================================
   qna_v3.css — 문의사항(Question) 페이지 UI 현대화
   CHG-006: CHG-005(MyPage) 동일 기준 적용

   주의: Bootstrap CSS 로드하지 않음 (전역 부작용 방지)
         필요한 스타일만 여기서 직접 정의
         #section > .line 아래 영역만 대상
         레이아웃(#qna_wrap, #aside, #section, .title, .line)은
         qna_v2.css가 담당 — 절대 재정의 금지
   ============================================================ */

/* --- 안내 텍스트 --- */
.qna-info-txt {
	line-height: 25px;
	font-size: 11pt;
	color: #7f7f7f;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

/* --- 폼 필드 레이아웃 (flexbox) --- */
.qna-form {
	padding-left: 10px;
}
.qna-form .field-row {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
.qna-form .field-row:first-child {
	margin-top: 20px;
}
.qna-form .field-label {
	width: 136px;
	font-size: 11pt;
	flex-shrink: 0;
	padding-right: 10px;
	text-align: right;
	white-space: nowrap;
}
.qna-form .field-value {
	flex: 1;
	font-size: 11pt;
}

/* --- 내용 행 (textarea, 라벨 상단 정렬) --- */
.qna-form .field-row-top {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
}
.qna-form .field-row-top .field-label {
	width: 136px;
	font-size: 11pt;
	flex-shrink: 0;
	padding-right: 10px;
	padding-top: 8px;
	text-align: right;
	white-space: nowrap;
}

/* --- 입력 필드 스타일 --- */
.qna-input {
	display: inline-block;
	vertical-align: middle;
	padding: 5px 10px;
	font-size: 11pt;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	outline: none;
	box-sizing: border-box;
}
.qna-input:focus {
	border-color: #0070c0;
	box-shadow: 0 0 0 2px rgba(0, 112, 192, 0.15);
}

/* --- 드롭다운 --- */
.qna-select {
	display: inline-block;
	padding: 5px 10px;
	font-size: 11pt;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	outline: none;
	box-sizing: border-box;
	cursor: pointer;
}
.qna-select:focus {
	border-color: #0070c0;
	box-shadow: 0 0 0 2px rgba(0, 112, 192, 0.15);
}

/* --- textarea --- */
.qna-textarea {
	display: block;
	padding: 8px 10px;
	font-size: 11pt;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	outline: none;
	box-sizing: border-box;
	resize: vertical;
	font-family: inherit;
}
.qna-textarea:focus {
	border-color: #0070c0;
	box-shadow: 0 0 0 2px rgba(0, 112, 192, 0.15);
}

/* --- 버튼 영역 --- */
.qna-btn-area {
	padding-top: 25px;
	padding-left: 146px;
	padding-bottom: 40px;
}

/* --- 버튼 스타일 --- */
.btn-bh-primary {
	display: inline-block;
	min-width: 160px;
	padding: 8px 24px;
	font-size: 12pt;
	font-weight: normal;
	color: #ffffff;
	background-color: #0070c0;
	border: none;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	line-height: 1.5;
}
.btn-bh-primary:hover {
	background-color: #005a9e;
	color: #ffffff;
	text-decoration: none;
}
.btn-bh-outline {
	display: inline-block;
	min-width: 160px;
	padding: 8px 24px;
	font-size: 12pt;
	font-weight: normal;
	color: #333;
	background-color: #ffffff;
	border: 1px solid #999999;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	line-height: 1.5;
}
.btn-bh-outline:hover {
	background-color: #f5f5f5;
	text-decoration: none;
}
