/* # Reviews
---------------------------------------------------------------------------------------------------- */
.surfcity-reviews .slick-track {
	display: flex;
}

.surfcity-reviews .review-card {
	background-color: #ffffff;
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 0 20px;
	height: auto;
}

.surfcity-reviews .review-card svg {
	width: 48px;
	height: 48px;
}

.surfcity-reviews .review-card p:last-of-type {
	margin-bottom: 0;
}

.surfcity-reviews .review-card .review-card-client {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: auto;
}

.surfcity-reviews .review-card .review-card-client-photo {
	width: 48px;
	height: 48px;
	flex: none;
	position: relative;
	border-radius: 50%;
}

.surfcity-reviews .review-card .review-card-client-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.surfcity-reviews .review-card .review-card-client h3 {
	font-size: 18px;
	font-weight: 700;
}

.surfcity-reviews .review-card .review-card-client span {
	font-size: 16px;
}

/* # Amenities
---------------------------------------------------------------------------------------------------- */
.amenity li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #dddddd;
	line-height: 1.2;
}

.amenity li svg {
	flex: none;
}

@media only screen and (max-width: 1024px) {
	.surfcity-reviews .review-card {
		gap: 17px;
		margin: 0 17px;
	}
	
	.surfcity-reviews .review-card svg,
	.surfcity-reviews .review-card .review-card-client-photo {
		width: 42px;
		height: 42px;
	}
	
	.surfcity-reviews .review-card .review-card-client h3 {
		font-size: 17px;
	}

	.surfcity-reviews .review-card .review-card-client span {
		font-size: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.surfcity-reviews .review-card {
		gap: 14px;
		margin: 0 14px;
	}
	
	.surfcity-reviews .review-card svg,
	.surfcity-reviews .review-card .review-card-client-photo {
		width: 36px;
		height: 36px;
	}
	
	.surfcity-reviews .review-card .review-card-client h3 {
		font-size: 16px;
	}

	.surfcity-reviews .review-card .review-card-client span {
		font-size: 14px;
	}
}