/* =========================================================================
   OLSEN — TESTIMONIALS
   Scoped under .olsenllc-wrapper.olsenllc-testimonials.
   ========================================================================= */

.olsenllc-wrapper.olsenllc-testimonials {
	width: 100%;
}

.olsenllc-testimonials .olsenllc-head {
	margin-bottom: var(--olsenllc-sp-6);
}

/* ---- Aggregate rating ---- */
.olsenllc-testimonials .olsenllc-agg {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: var(--olsenllc-sp-2);
	padding: 10px 18px;
	border: 1px solid var(--olsenllc-border);
	border-radius: 999px;
	background: var(--olsenllc-steel-800);
}
.olsenllc-testimonials .olsenllc-agg-score {
	font-family: var(--olsenllc-font-head);
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}
.olsenllc-testimonials .olsenllc-agg-text {
	font-size: 14px;
	color: var(--olsenllc-text-muted);
}

/* ---- Stars ---- */
.olsenllc-testimonials .olsenllc-stars {
	display: inline-flex;
	gap: 2px;
	--olsenllc-star: #ffb400;
}
.olsenllc-testimonials .olsenllc-star {
	fill: rgba(255, 255, 255, 0.18);
}
.olsenllc-testimonials .olsenllc-star.is-on {
	fill: var(--olsenllc-star);
}

/* ---- Grid ---- */
.olsenllc-testimonials .olsenllc-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--olsenllc-sp-3);
	align-items: stretch;
}

/* ---- Review card ---- */
.olsenllc-testimonials .olsenllc-review {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--olsenllc-sp-2);
	padding: var(--olsenllc-sp-4);
	background: var(--olsenllc-grad-steel);
	border: 1px solid var(--olsenllc-border);
	border-radius: var(--olsenllc-radius);
	box-shadow: var(--olsenllc-shadow);
	margin: 0;
	overflow: hidden;
	transition: transform var(--olsenllc-transition), border-color var(--olsenllc-transition), box-shadow var(--olsenllc-transition);
}
.olsenllc-testimonials .olsenllc-review:hover {
	transform: translateY(-6px);
	border-color: var(--olsenllc-border-strong);
	box-shadow: var(--olsenllc-shadow-lg);
}

/* Giant decorative quote mark */
.olsenllc-testimonials .olsenllc-review-mark {
	position: absolute;
	top: -18px;
	right: 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 120px;
	line-height: 1;
	color: rgba(193, 39, 45, 0.14);
	pointer-events: none;
	user-select: none;
}

.olsenllc-testimonials .olsenllc-review-quote {
	position: relative;
	z-index: 1;
	font-size: 16px;
	line-height: 1.7;
	color: var(--olsenllc-text);
	font-style: normal;
	margin: 0;
	flex: 1 1 auto;
	border: 0;
	padding: 0;
}

/* ---- Footer (author) ---- */
.olsenllc-testimonials .olsenllc-review-foot {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: var(--olsenllc-sp-2);
	border-top: 1px solid var(--olsenllc-border);
}
.olsenllc-testimonials .olsenllc-review-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--olsenllc-red);
	flex-shrink: 0;
}
.olsenllc-testimonials .olsenllc-review-avatar--initial {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--olsenllc-grad-red);
	color: #fff;
	font-family: var(--olsenllc-font-head);
	font-size: 20px;
	font-weight: 700;
}
.olsenllc-testimonials .olsenllc-review-meta {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}
.olsenllc-testimonials .olsenllc-review-author {
	font-family: var(--olsenllc-font-head);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--olsenllc-heading);
}
.olsenllc-testimonials .olsenllc-review-role {
	font-size: 13px;
	color: var(--olsenllc-text-muted);
}

/* ---- Logo strip ---- */
.olsenllc-testimonials .olsenllc-logostrip {
	margin-top: var(--olsenllc-sp-6);
	padding-top: var(--olsenllc-sp-4);
	border-top: 1px solid var(--olsenllc-border);
	text-align: center;
}
.olsenllc-testimonials .olsenllc-logostrip-title {
	font-family: var(--olsenllc-font-head);
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--olsenllc-text-muted);
	margin: 0 0 var(--olsenllc-sp-3);
}
.olsenllc-testimonials .olsenllc-logostrip-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--olsenllc-sp-5);
}
.olsenllc-testimonials .olsenllc-logostrip-row img {
	height: 44px;
	width: auto;
	opacity: 0.55;
	filter: grayscale(1) brightness(1.6);
	transition: opacity var(--olsenllc-transition), filter var(--olsenllc-transition);
}
.olsenllc-testimonials .olsenllc-logostrip-row img:hover {
	opacity: 1;
	filter: grayscale(0) brightness(1);
}

/* ---- Reveal ---- */
.olsenllc-testimonials .olsenllc-review {
	opacity: 0;
	transform: translateY(24px);
}
.olsenllc-testimonials.olsenllc-is-visible .olsenllc-review {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.6s var(--olsenllc-ease), transform 0.6s var(--olsenllc-ease);
}
.olsenllc-testimonials.olsenllc-is-visible .olsenllc-review:nth-child(1) { transition-delay: 0.05s; }
.olsenllc-testimonials.olsenllc-is-visible .olsenllc-review:nth-child(2) { transition-delay: 0.15s; }
.olsenllc-testimonials.olsenllc-is-visible .olsenllc-review:nth-child(3) { transition-delay: 0.25s; }
.olsenllc-testimonials.olsenllc-is-visible .olsenllc-review:nth-child(n+4) { transition-delay: 0.3s; }
.elementor-editor-active .olsenllc-testimonials .olsenllc-review { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.olsenllc-testimonials .olsenllc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
	.olsenllc-testimonials .olsenllc-grid { grid-template-columns: 1fr; }
	.olsenllc-testimonials .olsenllc-logostrip-row { gap: var(--olsenllc-sp-3); }
}
