/* ===== Google Yorumları Bölümü ===== */
.reviews-section {
	position: relative;
	padding: 100px 0 90px;
	background: #f6f8fb;
}
.reviews-section .sec-title {
	margin-bottom: 40px;
}
.reviews-section .reviews-summary {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 18px;
	margin-top: 18px;
}
.reviews-section .reviews-summary .g-logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-family-oswald);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .4px;
	color: #1c1f26;
	text-transform: uppercase;
}
.reviews-section .reviews-summary .g-logo svg {
	width: 22px;
	height: 22px;
}
.reviews-section .stars {
	display: inline-flex;
	gap: 2px;
	color: #f5b301;
	font-size: 15px;
	line-height: 1;
}
.reviews-section .reviews-summary .stars {
	font-size: 18px;
}
.reviews-section .reviews-summary .score {
	font-family: var(--font-family-oswald);
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
	color: #1c1f26;
}

/* Kart */
.review-block .inner-box {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 32px 30px 28px;
	background: #fff;
	border: 1px solid #e7e7e7;
	transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.review-block .inner-box:hover {
	transform: translateY(-6px);
	border-color: transparent;
	box-shadow: 0 20px 45px rgba(3, 102, 178, .12);
}
.review-block .inner-box:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 3px;
	background: var(--theme-color);
	transition: width .5s ease;
}
.review-block .inner-box:hover:before {
	width: 100%;
}
.review-block .review-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.review-block .review-top .g-icon {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
}
.review-block .text {
	position: relative;
	flex: 1 1 auto;
	font-size: 15px;
	line-height: 26px;
	color: #4a4f5a;
	margin-bottom: 26px;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.review-block .text:before {
	content: "\201C";
	position: absolute;
	right: -4px;
	top: -22px;
	font-family: Georgia, serif;
	font-size: 90px;
	line-height: 1;
	color: rgba(3, 102, 178, .08);
	pointer-events: none;
}
.review-block .author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 20px;
	border-top: 1px solid #eef0f3;
}
.review-block .avatar {
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family-oswald);
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	background: var(--theme-color);
}
.review-block:nth-child(6n+2) .avatar { background: #e07a3f; }
.review-block:nth-child(6n+3) .avatar { background: #2e9e6b; }
.review-block:nth-child(6n+4) .avatar { background: #8e5cc9; }
.review-block:nth-child(6n+5) .avatar { background: #c94f6d; }
.review-block:nth-child(6n+6) .avatar { background: #3a9fbf; }
.review-block .name {
	font-family: var(--font-family-oswald);
	font-size: 16px;
	font-weight: 500;
	color: #1c1f26;
	line-height: 1.3;
	text-transform: capitalize;
}
.review-block .source {
	font-size: 12px;
	color: #8c919c;
	margin-top: 2px;
}

/* Owl düzeni */
.reviews-carousel .owl-stage {
	display: flex;
}
.reviews-carousel .owl-item {
	display: flex;
	float: none;
}
.reviews-carousel .review-block {
	width: 100%;
	display: flex;
}
.reviews-carousel .owl-dots {
	margin-top: 40px;
}

.reviews-section .reviews-cta {
	text-align: center;
	margin-top: 40px;
}

@media (max-width: 991px) {
	.reviews-section {
		padding: 70px 0 60px;
	}
}
@media (max-width: 575px) {
	.review-block .inner-box {
		padding: 26px 22px 22px;
	}
	.review-block .text {
		-webkit-line-clamp: 8;
	}
}
