.rating-box {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 8px;
	font-family: "Poppins";
}

.rating-text {
	font-size: 14px;
	font-weight: 600;
	color: #555;
}

@media (max-width: 768px) {
	.rating-box {
		flex-direction: column;
		gap: 4px;
	}
}