section.rating{

	text-align: center;

	a{
		transition: .3s all;
		&:hover {
			transform: scale(1.05);
		}
	}

	.item {
		display: inline-grid;
		grid-template-columns: 1fr;
		gap: 16px;
		color: var(--color-primary);
		margin: 0 64px;

		.icon {
			img {
				width: 32px;
				height: 32px;
			}
		}

		.rating {
			.rating_text {
				display: inline-block;
				font-weight: 700;
				color: var(--color-main);
				font-size: 20px;
				line-height: 32px;
				height: 32px;
				overflow: hidden;
				text-decoration: none;
			}

			.rating_stars{
				margin-left: 8px;
				display: inline-block;
				height: 32px;
				overflow: hidden;
			}
			.star {
				font-size: 0;
				display: inline-block;
				width: 32px;
				height: 32px;
				background-image: url('data:image/svg+xml,<svg width="30" height="29" viewBox="0 0 30 29" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.5516 0.908492C14.735 0.536869 15.265 0.53687 15.4484 0.908493L19.5859 9.29214C19.6588 9.43971 19.7996 9.542 19.9624 9.56566L29.2143 10.91C29.6244 10.9696 29.7882 11.4736 29.4914 11.7629L22.7967 18.2887C22.6788 18.4035 22.6251 18.569 22.6529 18.7312L24.2333 27.9457C24.3034 28.3542 23.8746 28.6657 23.5078 28.4728L15.2327 24.1223C15.087 24.0457 14.913 24.0457 14.7673 24.1223L6.49217 28.4728C6.12536 28.6657 5.69664 28.3542 5.7667 27.9457L7.34711 18.7312C7.37493 18.569 7.32116 18.4035 7.20331 18.2887L0.50857 11.7629C0.211811 11.4736 0.375567 10.9696 0.785677 10.91L10.0376 9.56566C10.2004 9.542 10.3412 9.43972 10.4141 9.29214L14.5516 0.908492Z" fill="%23FFD056"/></svg>');
				background-repeat: no-repeat;
				background-position: top center;
			}
		}

		.people{
			img {
				max-height: 36px;
				width: auto;
			}
		}

		.text{
			font-size: 20px;
			line-height: 30px;
		}
	}
}