.eltc-wrapper {
	position: relative;
	max-width: 960px;
	margin: 0 auto;
	padding: 60px 20px;
	text-align: center;
	overflow: hidden;
}

/* Decorative floating dots */
.eltc-dot {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	pointer-events: none;
}
.eltc-dot.dot-1 { top: 18%; left: 11%; background: #f2c94c; }
.eltc-dot.dot-2 { top: 46%; left: 28%; background: #2f7bd6; }
.eltc-dot.dot-3 { top: 26%; right: 32%; background: #eb5757; width: 7px; height: 7px; }
.eltc-dot.dot-4 { top: 52%; right: 4%; background: #f2994a; }
.eltc-dot.dot-5 { bottom: 12%; left: 0; background: #27ae60; }
.eltc-dot.dot-6 { bottom: 8%; right: 8%; background: #f2c94c; }

/* Carousel shell */
.eltc-carousel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.eltc-slides {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.eltc-track {
	display: flex;
	align-items: flex-start;
	will-change: transform;
	transition: transform .6s cubic-bezier(.65, 0, .35, 1);
}

.eltc-slide {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	padding: 0 10px;
}

/* Side decorative avatars */
.eltc-side-avatars {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	padding: 0 6%;
	pointer-events: none;
	z-index: 1;
}

.eltc-avatar-side {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid transparent;
	box-shadow: 0 4px 14px rgba(0,0,0,.08);
	background: #fff;
}

.eltc-avatar-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.eltc-avatar-side.ring-blue {
	border-color: #2f7bd6;
	margin-top: 10px;
}

.eltc-avatar-side.ring-orange {
	border-color: #f2994a;
	margin-top: 30px;
}

/* Main avatar */
.eltc-avatar-main {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 22px;
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	position: relative;
	z-index: 2;
}

.eltc-avatar-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Name / role */
.eltc-name {
	font-size: 22px;
	font-weight: 700;
	color: #2b2b2b;
	margin: 0 0 4px;
}

.eltc-role {
	font-size: 14px;
	color: #9a9a9a;
	margin: 0 0 18px;
}

/* Stars */
.eltc-stars {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-bottom: 26px;
}

.eltc-stars i.eltc-star {
	font-style: normal;
	font-size: 22px;
	color: #dcdcdc;
}

.eltc-stars i.eltc-star.filled {
	color: #f7c331;
}

/* Quote */
.eltc-quote-wrap {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	padding: 0 10px;
}

.eltc-quote {
	font-size: 19px;
	line-height: 1.7;
	color: #4a4a4a;
	margin: 0;
	position: relative;
	z-index: 1;
}

.eltc-quote-mark {
	position: absolute;
	font-size: 90px;
	font-family: Georgia, 'Times New Roman', serif;
	color: #ececec;
	line-height: 1;
	z-index: 0;
	user-select: none;
}

.eltc-quote-mark-left {
	top: -50px;
	left: -10px;
}

.eltc-quote-mark-right {
	bottom: -80px;
	right: -10px;
}

/* Arrows */
.eltc-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #f3ece4;
	color: #333;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, transform .2s ease;
	z-index: 3;
}

.eltc-arrow:hover {
	background: #e9dfd2;
	transform: translateY(-50%) scale(1.05);
}

.eltc-prev { left: -10px; }
.eltc-next { right: -10px; }

@media (max-width: 640px) {
	.eltc-arrow { display: none; }
	.eltc-side-avatars { display: none; }
	.eltc-title { font-size: 28px; }
	.eltc-quote { font-size: 16px; }
}

/* Dots navigation */
.eltc-dots-nav {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
}

.eltc-dot-nav {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: #ddd;
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, transform .2s ease;
}

.eltc-dot-nav.active {
	background: #f7941d;
	transform: scale(1.2);
}
