/* 기본 리셋 스타일 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {	
	font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
	font-weight: 400; 	
	background-color: #f9f9f9;
}

.main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: url(../images/back_pc.jpg) no-repeat center bottom;
	background-size: cover;
}

.logo {
	margin-top: 100px;
}

.text-container {
	text-align: center;
	margin-top: 50px;
}

.text-container p {
	font-size: 1.5rem;
	color: #555;
	margin-bottom: 40px;
	line-height: 1.8;
}

.text-container h4 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 60px;
}

/* 이미지들을 감싸는 컨테이너 (PC 버전: 가로 배치) */
.image-container {
	display: flex;
	flex-direction: row;
	/* 가로 정렬 */
	gap: 20px;
	/* 이미지 사이의 간격 */
	width: 100%;
	max-width: 1000px;
	/* 화면이 너무 넓어질 때 최대 크기 제한 */
	margin: 0 auto 100px;
}

/* 링크 태그 스타일 */
.image-link {
	flex: 1;
	/* 부모 너비를 똑같이 반씩 나눠 가짐 */
	display: block;
	overflow: hidden;
	border-radius: 8px;
	/* 선택사항: 이미지 모서리 부드럽게 */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	/* 선택사항: 은은한 그림자 */
	transition: transform 0.3s ease;
}

/* 마우스 올렸을 때 효과 (선택사항) */
.image-link:hover {
	transform: translateY(-5px);
}

/* 이미지 반응형 설정 */
.responsive-img {
	width: 100%;
	height: auto;
	/* 비율 유지 */
	display: block;
	/* 하단 여백 제거 */
}

.footer {
	font-size: .8rem;
	text-align: center;
	padding-bottom: 50px;
	color: #f9f9f9;
}

.mo {
	display: none;
}

@media (max-width: 1024px) {
	.image-container {
		max-width: 900px;
	}
}

@media (max-width: 768px) {

	.mo {
		display: block;
	}

	.main {
		background: url(../images/back_mo.jpg) no-repeat center bottom;
		background-size: cover;
	}

	.logo {
		margin-top: 60px;
	}

	.logo img {
		width: 80px;
	}

	.text-container {
		margin-top: 40px;
	}

	.text-container p {
		font-size: .9rem;
		margin-bottom: 40px;
		line-height: 1.8;
	}

	.text-container h4 {
		font-size: 1.6rem;
		margin-bottom: 40px;
	}

	.image-container {
		flex-direction: column;
		/* 세로 정렬로 변경 */
		gap: 20px;
		/* 모바일에서 간격 좁히기 */
		padding: 0 10%;
		margin-bottom: 60px;
	}

	.footer {
		font-size: .6rem;
		padding-bottom: 40px;
	}
}