html,
body {
	height: 100%;
	margin: 0;
	display: flex;
    flex-direction: column;
    font-family: 'Pretendard', sans-serif !important;
}

/*.page-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	 화면 전체 높이 
}

.content {
	flex: 1;
	display: flex;
    justify-content: center;
	 본문 영역이 남는 공간을 채움 
}*/
.page-wrapper {
    flex: 1;   /* content 영역이 남은 공간 채움 */
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hidden { display: none !important; }