/* PUB:SECTION-RECOMMEND Styles - 다른 디자인 */

.pub-section-recommend {
	position: relative;
	padding: 100px 20px !important;
	background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 50%, #1a1f3a 100%) !important;
	overflow: hidden;
}

.pub-section-recommend::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
				radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.pub-rec__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	color: #ffffff;
}

/* Title */
.pub-rec__title {
	margin: 0 0 40px !important;
	padding: 0 !important;
	font-size: 48px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
	letter-spacing: -0.02em !important;
	color: #ffffff !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
	text-align: center !important;
}

/* Main Text */
.pub-rec__main-text {
	margin: 0 0 60px !important;
	padding: 0 !important;
	font-size: 22px !important;
	font-weight: 500 !important;
	line-height: 1.6 !important;
	color: rgba(255, 255, 255, 0.95) !important;
	text-align: center !important;
}

.pub-rec__main-text strong {
	color: #a78bfa !important;
	font-weight: 700 !important;
	text-shadow: 0 0 10px rgba(167, 139, 246, 0.5) !important;
}

/* Points List */
.pub-rec__points {
	list-style: none !important;
	margin: 0 0 60px !important;
	padding: 0 !important;
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 30px !important;
	max-width: 1000px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.pub-rec__point {
	position: relative !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	text-align: left !important;
}

.pub-rec__point::before {
	content: '' !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	background: linear-gradient(135deg, rgba(167, 139, 246, 0.1), rgba(59, 130, 246, 0.1)) !important;
	border-left: 4px solid transparent !important;
	border-image: linear-gradient(180deg, #a78bfa, #3b82f6) 1 !important;
	border-radius: 0 !important;
	clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)) !important;
	z-index: 0 !important;
	transition: all 0.4s ease !important;
}

.pub-rec__point--1::before {
	border-image: linear-gradient(180deg, #22c55e, #10b981) 1 !important;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1)) !important;
}

.pub-rec__point--2::before {
	border-image: linear-gradient(180deg, #a78bfa, #7c3aed) 1 !important;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1)) !important;
}

.pub-rec__point:hover::before {
	background: linear-gradient(135deg, rgba(167, 139, 246, 0.2), rgba(59, 130, 246, 0.2)) !important;
	transform: scale(1.02) !important;
}

.pub-rec__point--1:hover::before {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2)) !important;
}

.pub-rec__point--2:hover::before {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.2)) !important;
}

/* Point Content */
.pub-rec__point {
	display: flex !important;
	align-items: flex-start !important;
	gap: 20px !important;
	padding: 35px 30px !important;
	position: relative !important;
	z-index: 1 !important;
}

/* Point Icon */
.pub-rec__point-icon {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 70px !important;
	height: 70px !important;
	font-size: 36px !important;
	background: linear-gradient(135deg, #a78bfa, #3b82f6) !important;
	border-radius: 0 !important;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)) !important;
	flex-shrink: 0 !important;
	box-shadow: 0 8px 25px rgba(167, 139, 246, 0.4) !important;
	transition: all 0.3s ease !important;
	position: relative !important;
	z-index: 2 !important;
}

.pub-rec__point--1 .pub-rec__point-icon {
	background: linear-gradient(135deg, #22c55e, #10b981) !important;
	box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4) !important;
}

.pub-rec__point--2 .pub-rec__point-icon {
	background: linear-gradient(135deg, #a78bfa, #7c3aed) !important;
	box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4) !important;
}

.pub-rec__point:hover .pub-rec__point-icon {
	transform: translateY(-5px) scale(1.05) !important;
	box-shadow: 0 12px 35px rgba(167, 139, 246, 0.5) !important;
}

/* Point Content Container */
.pub-rec__point-content {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
	flex: 1 !important;
}

/* Point Title */
.pub-rec__point-title {
	display: block !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	color: #ffffff !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Point Description */
.pub-rec__point-desc {
	display: block !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.7 !important;
	color: rgba(255, 255, 255, 0.85) !important;
	margin: 0 !important;
	padding: 0 !important;
}

.pub-rec__em {
	color: #fbbf24 !important;
	font-weight: 600 !important;
	text-shadow: 0 0 10px rgba(251, 191, 36, 0.5) !important;
}

/* Scroll Animation States */
.pub-rec__title,
.pub-rec__main-text,
.pub-rec__point {
	opacity: 0 !important;
	transform: translateY(40px) !important;
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.pub-rec__title.pub-rec--visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.pub-rec__main-text.pub-rec--visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition-delay: 0.2s !important;
}

.pub-rec__point--1.pub-rec--visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition-delay: 0.1s !important;
}

.pub-rec__point--2.pub-rec--visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
	transition-delay: 0.2s !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.pub-section-recommend {
		padding: 60px 16px !important;
	}

	.pub-rec__title {
		font-size: 32px !important;
		margin-bottom: 30px !important;
	}

	.pub-rec__main-text {
		font-size: 18px !important;
		margin-bottom: 40px !important;
	}

	.pub-rec__points {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
		margin-bottom: 40px !important;
	}

	.pub-rec__point {
		padding: 28px 24px !important;
		gap: 16px !important;
	}

	.pub-rec__point-icon {
		width: 60px !important;
		height: 60px !important;
		font-size: 30px !important;
	}

	.pub-rec__point-title {
		font-size: 18px !important;
	}

	.pub-rec__point-desc {
		font-size: 14px !important;
	}
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
	.pub-rec__title {
		font-size: 42px !important;
	}

	.pub-rec__main-text {
		font-size: 20px !important;
	}

	.pub-rec__points {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 24px !important;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.pub-rec__title,
	.pub-rec__main-text,
	.pub-rec__point {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

