/* =========================================================
   base.css
   ---------------------------------------------------------
   공통 기본 스타일
   - 컬러
   - 타이포
   - 공통 container
   - 링크/이미지 기본값
   ========================================================= */
:root {
	--sc-bg: #efefef;
	--sc-surface: #ffffff;
	--sc-text: #111111;
	--sc-text-soft: #666666;
	--sc-line: #dddddd;
	--sc-accent: #3d8f82;
	--sc-footer-bg: #111111;
	--sc-footer-text: #f5f5f5;
	--sc-container: 1280px;
	--sc-radius: 0;
	--sc-shadow: none;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	margin: 0;
	background: var(--sc-bg);
	color: var(--sc-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.sc-container {
	width: min(100% - 40px, var(--sc-container));
	margin: 0 auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* 워드프레스 기본 search form 최소 정리 */
.search-form {
	display: flex;
	gap: 8px;
}

.search-form label {
	flex: 1 1 auto;
}

.search-form .search-field {
	width: 100%;
	height: 38px;
	padding: 0 14px;
	border: 1px solid var(--sc-line);
	background: #fff;
	color: var(--sc-text);
	border-radius:19px;
}

.search-form .search-submit {
	height: 38px;
	width: 38px;
	padding: 0;
	border:none;
	background: var(--sc-text);
	color: #fff;
	cursor: pointer;
	border-radius: 100%;
}