/* 네임스페이스: use-comment-page 내부에서만 스타일 적용 */
.use-comment-page .container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 48px 16px;
	align-items: center;
	text-align: center;
}

/* Titles */
.use-comment-page .sub-title {
	font-size: 14px;
	color: #31817f;
	font-weight: 600;
}

.use-comment-page .main-title {
	font-size: 28px;
	color: #345d5c;
	font-weight: 600;
}

/* Mobile Layout */
.use-comment-page .mobile-section {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 480px;
	width: 100%;
}

.use-comment-page .slide-item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}

.use-comment-page .color-box {
	position: absolute;
	top: 8px;
	left: 56px;
	width: 180px;
	height: 120px;
	border-radius: 12px;
	opacity: 0.2;
}

.use-comment-page .slide-title {
	font-size: 18px;
	font-weight: 600;
	width: 70%;
	text-align: left;
}

.use-comment-page .slide-img {
	height: 400px;
	width: auto;
	z-index: 10;
}

/* Desktop Layout */
.use-comment-page .desktop-section {
	display: none;
}

@media screen and (min-width: 1280px) {
	.use-comment-page .mobile-section {
		display: none;
	}

	.use-comment-page .desktop-section {
		display: flex;
		gap: 20px;
		justify-content: center;
		align-items: center;
	}

	.use-comment-page .desktop-item {
		position: relative;
		display: flex;
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}

	.use-comment-page .color-box-lg {
		position: absolute;
		top: 16px;
		left: -20px;
		width: 200px;
		height: 180px;
		border-radius: 16px;
		opacity: 0.2;
	}

	.use-comment-page .desktop-title {
		font-size: 22px;
		font-weight: 600;
		z-index: 10;
		width: 100%;
		text-align: left;
		margin: 20px 0 0 0;
	}

	.use-comment-page .desktop-img {
		height: 500px;
		width: auto;
		z-index: 10;
	}

	.use-comment-page .arrow {
		font-size: 28px;
		opacity: 0.5;
		color: #6a8989;
	}
}
