/* Nirvana Testimonials Carousel — styled to match the OmniFunds home testimonials
   (Thrive Architect section: bold 22px names, 15px role line, italic quotes). */

.nirvt-section {
	max-width: 1190px;
	margin: 0 auto;
	padding: 40px 16px;
	position: relative;
}

.nirvt-heading {
	text-align: center;
	font-size: 34px;
	line-height: 1.25;
	font-weight: 400;
	color: #000;
	margin: 0 0 36px;
}
.nirvt-heading strong {
	font-weight: 700;
}

.nirvt-carousel {
	display: flex;
	align-items: stretch;
	gap: 8px;
}

.nirvt-viewport {
	overflow: hidden;
	flex: 1 1 auto;
	min-width: 0;
}

.nirvt-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}

.nirvt-card {
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
	box-sizing: border-box;
	padding: 0 22px;
	display: flex;
	flex-direction: column;
}

.nirvt-name {
	margin: 0 0 2px;
	color: #000;
}
.nirvt-name strong {
	font-size: 22px;
	margin-right: 8px;
}
.nirvt-role {
	font-size: 15px;
	color: #444;
	white-space: nowrap;
}

.nirvt-stars {
	margin: 0 0 10px;
	font-size: 16px;
	color: #f5a623;
	letter-spacing: 2px;
}
.nirvt-stars .nirvt-meta {
	font-size: 13px;
	letter-spacing: 0;
	color: #777;
	margin-left: 6px;
}
.nirvt-stars .nirvt-meta a {
	color: #777;
	text-decoration: underline;
}

.nirvt-quote {
	font-size: 16px;
	line-height: 1.55;
	color: #111;
	display: -webkit-box;
	-webkit-line-clamp: var(--nirvt-maxlines, 8);
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.nirvt-quote.nirvt-expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.nirvt-more {
	align-self: flex-start;
	background: none;
	border: none;
	padding: 4px 0 0;
	font-size: 13px;
	color: #1461d2;
	cursor: pointer;
	text-decoration: underline;
}

.nirvt-arrow {
	flex: 0 0 auto;
	align-self: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #d5d5d5;
	background: #fff;
	color: #333;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	user-select: none;
}
.nirvt-arrow:hover {
	background: #1461d2;
	border-color: #1461d2;
	color: #fff;
}

.nirvt-dots {
	text-align: center;
	margin-top: 22px;
}
.nirvt-dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: #cfcfcf;
	margin: 0 4px;
	padding: 0;
	cursor: pointer;
}
.nirvt-dots button.nirvt-active {
	background: #1461d2;
}

@media (max-width: 980px) {
	.nirvt-card { flex-basis: 50%; max-width: 50%; }
}
@media (max-width: 640px) {
	.nirvt-heading { font-size: 26px; }
	.nirvt-card { flex-basis: 100%; max-width: 100%; padding: 0 6px; }
	.nirvt-arrow { width: 38px; height: 38px; font-size: 22px; }
}
