/* pub-season-banner.css */

.pub-season-banner-section {
	text-align: center;
	margin-bottom: 30px;
}

.pub-season-banner-text {
	margin-bottom: 20px;
}

.pub-season-banner-text h2 {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}

.pub-season-banner-text p {
	font-size: 16px;
	color: #555;
	line-height: 1.5;
}

/* 모바일(m/ 페이지): 시즌상품 - 핫딜상품과 동일한 여백/크기 */
.pub-season-banner-section-mobile {
	width: 100%;
	margin: 20px 0;
	padding: 0 10px;
	box-sizing: border-box;
}

.pub-season-banner-text-mobile {
	text-align: center;
	margin: 26px 0 28px;
	padding: 22px 0;
}

.pub-season-banner-text-mobile h2 {
	font-size: 22px;
	font-weight: bold;
	color: #333;
	margin: 0 0 8px 0;
	letter-spacing: -0.2px;
}

.pub-season-banner-text-mobile p {
	font-size: 12px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* Swiper 컨테이너 - 배너 정확히 3개만 노출 (좌우 잘림 없음) */
.pub-season-banner-slider-wrapper.pub-season-banner-swiper {
	position: relative;
	overflow: hidden;
	width: 1279px; /* 413*3 + 20*2 */
	max-width: calc(100% - 40px);
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	height: auto !important;
}

.pub-season-banner-swiper .swiper-wrapper {
	align-items: flex-start;
}

.pub-season-banner-swiper .swiper-slide {
	width: 413px !important;
	flex-shrink: 0;
	height: auto !important;
	display: flex;
}

@media (max-width: 1023px) {
	.pub-season-banner-slider-wrapper.pub-season-banner-swiper {
		width: 100%;
		max-width: 846px; /* 413*2 + 20 */
	}
	.pub-season-banner-swiper .swiper-slide {
		width: 413px !important;
	}
}

@media (max-width: 767px) {
	.pub-season-banner-slider-wrapper.pub-season-banner-swiper {
		max-width: 413px; /* 1개 */
	}
	.pub-season-banner-swiper .swiper-slide {
		width: 413px !important;
	}
}

.pub-season-banner-slide {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	height: auto;
}

.pub-season-banner-slide:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pub-season-banner-slide img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: top;
}

.pub-season-banner-slide a {
	display: block;
	line-height: 0;
}

/* Swiper 네비게이션 버튼 오버라이드 - 원형 유지 */
.pub-season-banner-swiper .pub-season-banner-prev,
.pub-season-banner-swiper .pub-season-banner-next {
	position: absolute;
	top: 50%;
	margin-top: -20px;
	background-color: rgba(255, 255, 255, 0.9);
	border: 1px solid #999;
	border-radius: 50%;
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	min-height: 40px !important;
	max-width: 40px !important;
	max-height: 40px !important;
	box-sizing: border-box;
	flex-shrink: 0;
	flex-grow: 0;
	z-index: 10;
	transition: background-color 0.3s ease;
	background-image: none !important;
	font-size: 0;
	line-height: 1;
	padding: 0;
	aspect-ratio: 1;
}

.pub-season-banner-swiper .pub-season-banner-prev::after,
.pub-season-banner-swiper .pub-season-banner-next::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 3px solid #222;
	border-right: 3px solid #222;
	transform: translate(-35%, -50%) rotate(-135deg);
}

.pub-season-banner-swiper .pub-season-banner-next::after {
	transform: translate(-65%, -50%) rotate(45deg);
}

.pub-season-banner-swiper .pub-season-banner-prev:hover,
.pub-season-banner-swiper .pub-season-banner-next:hover {
	background-color: rgba(255, 255, 255, 1);
}

.pub-season-banner-swiper .pub-season-banner-prev:hover::after,
.pub-season-banner-swiper .pub-season-banner-next:hover::after {
	border-color: #000;
}

.pub-season-banner-swiper .pub-season-banner-prev {
	left: 10px;
}

.pub-season-banner-swiper .pub-season-banner-next {
	right: 10px;
}

