/* Panprisa Banner - Frontend */
.panprisa-banner {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	margin: 0;
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
	background: #f5f5f5;
}

.pb-progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: #e2e6f1;
	z-index: 10;
}

.pb-progress-fill {
	display: block;
	height: 100%;
	width: 0;
	background: #013392;
	transform-origin: left;
}

.pb-slides {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	transition: transform 0.5s ease-in-out;
	will-change: transform;
	backface-visibility: hidden;
}

.pb-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	position: relative;
	line-height: 0;
	backface-visibility: hidden;
}

.pb-slide-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.pb-slide-link {
	display: block;
	width: 100%;
	height: 100%;
}

.pb-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	border-radius: 5px;
	background: #2929297d;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease;
}

.pb-arrow svg {
	width: 36px;
	height: 36px;
}

.pb-arrow:hover {
	background: #2929297d;
	color: #eee;
}

.pb-arrow:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.pb-arrow-prev {
	left: 10px;
}

.pb-arrow-next {
	right: 10px;
}

.pb-bullets {
	position: absolute;
	bottom: 75px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 5;
}

.pb-bullet {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease;
}

.pb-bullet.is-active,
.pb-bullet:hover {
	background: #fff;
}

@media (max-width: 768px) {
	.panprisa-banner {
		padding-bottom: 55%;
	}

	.pb-arrow svg {
		width: 28px;
		height: 28px;
	}

	.pb-arrow-prev {
		left: 6px;
	}

	.pb-arrow-next {
		right: 6px;
	}

	.pb-bullets {
		bottom: 10px;
	}

	.pb-bullet {
		width: 10px;
		height: 10px;
	}
}
