/* ===========================================
    common
   =========================================== */

/* 스크롤바 */
html {
	scrollbar-width: thin;
	scrollbar-color: #333 transparent;
}
html::-webkit-scrollbar {width: 8px;}
html::-webkit-scrollbar-track {background: transparent;}
html::-webkit-scrollbar-thumb {
	background-color: #333;
	border-radius: 8px;
}
html::-webkit-scrollbar-thumb:hover {background-color: #1e2229;}

/* 공통 폰트 */
body {
	font-family: 'Pretendard';
	font-weight: 500;
	color: #000;
	letter-spacing: -0.025em;
	word-break: keep-all;
	line-height: 1.3;
}

.wrap {margin: 0 auto; width: 95%;}
.wrap[max='1600'] {max-width: 1600px;}
.wrap[max='1440'] {max-width: 1600px;}
