/* Main page section 2 (Product Overview) */

.main-product-section {
	height: 1100px;
	background: url("../../../img/en/v2/main/main_02.png") no-repeat right center /
		cover;
	background-color: #f5f9fc;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 600px;
}

.product-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 80%;
	width: 100%;
	margin: 0 auto;
	padding: 0 5rem;
	gap: 7.5rem;
}

.product-content {
	flex: 0 0 45%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-label {
	font-size: 1.75rem;
	font-weight: 600;
	color: black;
	margin: 0 0 2.5rem 0;
	letter-spacing: 0.15rem;
}

.product-title {
	margin: 0 0 4rem 0;
	font-size: 0; /* 이미지 타이틀용 필수 */
	line-height: 1;
}

.product-title img {
	display: block;
	width: 50%; /* ← 여기서 크기 조절 */
	max-width: 320px; /* ← 안전장치 */
	height: auto;
}

.product-description {
	font-size: 2.25rem;
	font-weight: 400;
	color: #4a5568;
	line-height: 1.8;
	margin: 0 0 5rem 0;
}

.product-image {
	flex: 0 0 55%;
}

/* 반응형: 태블릿 */
@media (max-width: 1024px) {
	.product-container {
		padding: 0 3.75rem;
		gap: 5rem;
	}

	.product-content {
		flex: 0 0 50%;
	}

	.product-image {
		flex: 0 0 50%;
	}

	.product-title img {
		width: 90%;
		max-width: 240px;
	}

	.product-description {
		font-size: 1.875rem;
	}
}

/* 반응형: 모바일 */
@media (max-width: 768px) {
	.main-product-section {
		height: auto;
		width: 100%;
		padding: 3rem 0;
		background: url("../../../img/en/v2/main/main_02_m.png") no-repeat center
			center / 100% auto;
	}

	.product-container {
		flex-direction: column;
		padding: 0 2rem;
		gap: 2rem;
	}

	.product-label {
		font-size: 1.2rem;
		font-weight: 600;
		color: black;
		margin: 0 0 2.5rem 0;
		letter-spacing: 0.15rem;
	}

	.product-content {
		display: block;
		flex: 0 0 auto;
		width: 100%;
	}

	.product-image {
		display: block;
		flex: 0 0 auto;
		width: 100%;
	}

	.product-image img {
		width: 100%;
		height: auto;
		display: block;
	}

	.product-label {
		font-size: 1.5rem;
		margin: 0 0 1.5rem 0;
	}

	.product-title {
		margin: 0 0 2rem 0;
		text-align: center;
	}

	.product-title img {
		width: 100%;
		max-width: 240px;
		/* margin: 0 auto; */
	}

	.product-description {
		font-size: 1.75rem;
		margin: 0 0 3rem 0;
		line-height: 1.6;
	}
}
