/*
 * /yorumlar/ — puan özeti bandı + alıntı kartı cilası + scroll-reveal uyumu.
 * family-*.css'ten SONRA yüklenir (bağımlılık $fam_dep). Yalnız bu sayfadaki sınıflar.
 */

/* ---- 1) Load animasyonunu sustur — reveal (mtr-reveal.js) scroll'da açacak ---- */
.maltepe-quote { animation: none !important; }

/* ---- 2) Puan özeti bandı ---- */
.mtr-rev-summary {
	width: 100%;
	max-width: 1700px;
	margin: 0 auto;
	padding: 40px 24px 8px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.mtr-rev-stat {
	background: var(--color-white, #fff);
	border: 1px solid var(--color-border, #f3f4f6);
	border-radius: 20px;
	padding: 28px 20px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.mtr-rev-num {
	font-family: 'Inter', sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	color: var(--color-primary, #5b7a12);
	font-variant-numeric: tabular-nums;
}
.mtr-rev-stars {
	margin-top: 8px;
	color: #ffc107;
	font-size: 15px;
	letter-spacing: 3px;
}
.mtr-rev-label {
	margin-top: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-muted, #6b7280);
}
@media (max-width: 809.98px) {
	.mtr-rev-summary { grid-template-columns: 1fr; padding: 28px 16px 4px; }
	.mtr-rev-num { font-size: 34px; }
}

/* ---- 3) Alıntı kartı cilası ---- */
.maltepe-quotes-grid { align-items: stretch; }
.maltepe-quote {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	padding-top: 26px;
}
.maltepe-quote::before {
	content: '\201C';
	position: absolute;
	top: 2px;
	left: 14px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 40px;
	line-height: 1;
	color: var(--color-primary, #5b7a12);
	opacity: 0.18;
}
.maltepe-quote p { flex: 0 0 auto; }
.maltepe-quote .mq-footer { margin-top: auto; }

/* Şubeye göre Google linki kartları — alıntı kartlarıyla tutarlı hover */
.branch-review-card {
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.branch-review-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	border-color: var(--color-primary, #5b7a12);
}

/* ---- 4) Reveal anında yıldız pop (atıl @keyframes mqStarPop yeniden kullanılır) ---- */
.maltepe-quote.mtr-in .mq-stars {
	animation: mqStarPop .45s cubic-bezier(.5, 1.6, .4, 1) both;
}

/* ---- 5) Mobil ızgara nefes payı ---- */
@media (max-width: 809.98px) {
	.maltepe-quotes-grid,
	.branch-review-grid { gap: 16px; }
}

/* ---- 6) Hareket azaltma ---- */
@media (prefers-reduced-motion: reduce) {
	.maltepe-quote,
	.maltepe-quote.mtr-in .mq-stars,
	.branch-review-card { animation: none !important; transition: none !important; }
	.branch-review-card:hover,
	.maltepe-quote:hover { transform: none !important; }
}
