.reviews .page-title{
	margin-bottom: 80px;
}	
	
.reviews-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 32px;

	.product__reviews-block {
		align-items: center;
		gap: 8px;
	}

	.product__reviews-count {
		font-size: 14px;
		font-weight: 700;
		line-height: normal;
		letter-spacing: 0px;
	}

	.product__reviews {
		gap: 11px;
	}

	.product__star {
		width: 21px;
		height: 20px;
		background-size: cover !important;
	}

}

.reviews-top__left {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.reviews__list {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	column-gap: 24px;
	row-gap: 32px;
}

.review__item {
	display: grid;
	grid-row: auto / span 4;
	grid-template-rows: subgrid;
	gap: 10px;
	padding: 16px;
	border: 1px solid #D0D5DD;
	border-radius: 12px;

	.product__reviews {
		gap: 8px;
	}

	.product__star {
		width: 15px;
		height: 14px;
		background-size: cover !important;
	}
}

.review__item__header {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 8px;
	row-gap: 2px;
}

.review-author__name {
	grid-area: 1/2/2/3;
	align-content: flex-end;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
}

.review-author__date {
	grid-area: 2/2/3/3;
	align-content: flex-start;
	font-weight: 500;
	font-size: 10px;
	line-height: 100%;
	color: #ABAFB6;

}

.review-author__photo {
	grid-area: 1/1/3/2;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent-yellow);
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
}

.review-text {
	font-size: 14px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    overflow: hidden;
}

.review-link {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 12px;
	line-height: 100%;
	color: #ABAFB6;
	
	span {
		color: #1E88FD;
	}
}

@media (max-width:768px) {
	.reviews .page-title{
		margin-bottom: 32px;
	}	

	.reviews-top__left {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;

		img {
			width: 97px;
			height: auto;
		}
	}

	.reviews-top .bs-btn {
		width: 100%;
	}
}