.ptg-15479114-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 24px;
	width: 100%;
}

@media (min-width: 768px) {
	.ptg-15479114-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.ptg-15479114-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.ptg-15479114-card {
	background-color: #ffffff;
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ptg-15479114-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ptg-15479114-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ptg-15479114-user {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ptg-15479114-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.ptg-15479114-meta {
	display: flex;
	flex-direction: column;
}

.ptg-15479114-name {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
}

.ptg-15479114-role {
	font-size: 14px;
	color: #6b7280;
}

.ptg-15479114-rating {
	display: flex;
	gap: 2px;
}

.ptg-15479114-star {
	font-size: 14px;
	color: #FFC107;
}

.ptg-15479114-star svg {
	width: 14px;
	height: 14px;
	fill: #FFC107;
}

.ptg-15479114-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #4b5563;
}