/* 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;
}

.pub-season-banner-slider-wrapper {
	position: relative;
	overflow: hidden;
}

.pub-season-banner-slider {
	display: flex;
	transition: transform 0.5s ease;
	gap: 20px;
}

.pub-season-banner-slide {
	flex: 0 0 auto;
	width: 413px;
	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;
}

.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;
	object-fit: cover;
	aspect-ratio: 413 / 251;
}

.pub-season-banner-prev,
.pub-season-banner-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 10;
	font-size: 20px;
	line-height: 1;
	transition: background 0.3s ease;
}

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

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

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

/* 모바일 스타일 */
.pub-season-banner-section-mobile {
	text-align: center;
	margin-bottom: 20px;
}

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

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

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

.pub-season-banner-slider-wrapper-mobile {
	position: relative;
	overflow: hidden;
}

.pub-season-banner-slider-mobile {
	display: flex;
	transition: transform 0.5s ease;
	gap: 15px;
}

.pub-season-banner-slide-mobile {
	flex: 0 0 auto;
	width: calc(100vw - 40px);
	max-width: 413px;
	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;
}

.pub-season-banner-slide-mobile img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 413 / 251;
}

.pub-season-banner-prev-mobile,
.pub-season-banner-next-mobile {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 10;
	font-size: 24px;
	font-weight: bold;
	color: #333;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease, transform 0.2s ease;
	padding: 0;
	margin: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pub-season-banner-prev-mobile:hover,
.pub-season-banner-next-mobile:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.pub-season-banner-prev-mobile {
	left: 5px;
}

.pub-season-banner-next-mobile {
	right: 5px;
}

