/* Panprisa Testimoni - Frontend */
.panprisa-testimoni {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

.pt-slider {
	overflow: hidden;
}

.pt-slides {
	display: flex;
	transition: transform 0.5s ease-in-out !important;
	will-change: transform;
}

.pt-slide {
	flex: 0 0 100%;
	padding: 0;
}

.pt-slide-meta {
	position: relative;
	padding-right: 80px;
	margin-bottom: 5px;
}

.pt-slide-top {
	display: flex;
	gap: 24px;
	align-items: center;
}

.pt-col-image {
	flex: 0 0 120px;
}

.pt-avatar {
	width: 120px !important;
	height: 120px !important;
	border-radius: 75px !important;
	object-fit: cover !important;
	display: block;
	border: 3px solid #e0e0e0;
}

.pt-avatar-placeholder {
	width: 120px;
	height: 120px;
	border-radius: 75px;
	background: #f0f0f0;
	border: 3px solid #e0e0e0;
}

.pt-col-info {
	flex: 1;
}

.pt-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	font-size: 15px;
	color: #333;
}

.pt-nama {
	font-weight: 700;
	color: #111;
}

.pt-sep {
	color: #999;
}

.pt-lokasi,
.pt-pembelian {
	color: #555;
}

.pt-deskripsi {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #555;
}

.pt-bullets {
	position: absolute;
	top: 3px;
	right: 0;
	display: flex;
	gap: 5px;
	z-index: 2;
	background: #eee;
	padding: 5px;
	border-radius: 25px;
}

.pt-bullet {
	width: 10px;
	height: 10px;
	border: none;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease;
}

.pt-bullet.is-active,
.pt-bullet:hover {
	background: #333;
}

@media (max-width: 640px) {
	.pt-slide-top {
		flex-direction: column;
		gap: 16px;
	}

	.pt-col-info {
		text-align: center;
	}

	.pt-deskripsi {
		text-align: center;
	}
}

/* Grid testimoni */
.panprisa-testimoni-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.pt-grid-item {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pt-grid-item:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.pt-grid-avatar {
	width: 100%;
	height: auto;
	border-radius: 0;
	object-fit: cover;
	margin-bottom: 14px;
}

.pt-grid-avatar-placeholder {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #ddd;
	margin-bottom: 14px;
}

.pt-grid-nama {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 6px;
	color: #111;
}

.pt-grid-meta {
	font-size: 13px;
	color: #777;
	margin-bottom: 12px;
}

.pt-grid-sep {
	margin: 0 6px;
}

.pt-grid-deskripsi {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

.pt-no-items {
	text-align: center;
	color: #777;
}

@media (max-width: 992px) {
	.panprisa-testimoni-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.panprisa-testimoni-grid {
		grid-template-columns: 1fr;
	}
}
