/**
 * Trusted By — compact logo strip
 *
 * Minimal, inline-feeling row of partner / review-platform logos with a small
 * eyebrow label and optional CTA. Sits below the testimonials and feels like
 * a footer-strip rather than a full section.
 */

.mirak-trusted-by {
	padding: 36px 0 44px;
	background: transparent;
	border-top: 1px solid rgba(171, 138, 98, 0.12);
}

/* ── Inline label + logos row ───────────────────── */
.mirak-trusted-by__head {
	text-align: center;
	margin-bottom: 18px;
}
/* Hide the big main title — we only show the eyebrow now. */
.mirak-trusted-by__title {
	display: none;
}

.mirak-trusted-by__eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--btn-1, #AB8A62);
	opacity: 0.9;
	margin: 0;
	padding: 0;
}

/* ── Compact logos row ──────────────────────────── */
.mirak-trusted-by__grid {
	list-style: none;
	margin: 0 auto 18px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 36px 56px;
	max-width: 980px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.mirak-trusted-by__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	transition: none;
}

.mirak-trusted-by__item:hover {
	background: transparent;
}

.mirak-trusted-by__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: default;
}

a.mirak-trusted-by__logo {
	cursor: pointer;
}

.mirak-trusted-by__logo img {
	max-width: 100px;
	max-height: 38px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.55;
	transition: filter 0.25s ease, opacity 0.25s ease;
}

a.mirak-trusted-by__logo:hover img,
.mirak-trusted-by__logo:focus-visible img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ── Tiny CTA underneath ───────────────────────── */
.mirak-trusted-by__cta {
	text-align: center;
	margin-top: 6px;
}

.mirak-trusted-by__cta .theme-btn {
	min-width: 0;
	padding: 8px 22px;
	font-size: 13px;
	letter-spacing: 0.02em;
}

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 575px) {
	.mirak-trusted-by {
		padding: 28px 0 32px;
	}
	.mirak-trusted-by__grid {
		gap: 24px 32px;
	}
	.mirak-trusted-by__logo img {
		max-width: 80px;
		max-height: 32px;
	}
}
