.asanka-ts {
	--asts-bg: #050505;
	--asts-quote: #ffffff;
	--asts-name: #ffffff;
	--asts-role: #b7b7b7;
	--asts-star: #d6ff00;
	--asts-bullet: rgba(255, 255, 255, 0.28);
	--asts-bullet-active: #ffffff;
	--asts-bullet-size: 8px;
	--asts-bullet-spacing: 10px;
	--asts-radius: 28px;
	--asts-padding: 32px;
	--asts-gap: 24px;
	position: relative;
	width: 100%;
}

.asanka-ts__viewport {
	overflow: hidden;
	width: 100%;
}

.asanka-ts__track {
	display: flex;
	gap: var(--asts-gap);
	will-change: transform;
	transition: transform 0.45s ease;
}

.asanka-ts__slide {
	flex: 0 0 100%;
	min-width: 0;
}

.asanka-ts__card {
	background: var(--asts-bg);
	border-radius: var(--asts-radius);
	padding: var(--asts-padding);
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}

.asanka-ts__quote {
	color: var(--asts-quote);
	font-size: clamp(24px, 3.2vw, 34px);
	line-height: 1.45;
	font-weight: 400;
	letter-spacing: -0.02em;
	margin-bottom: 28px;
}

.asanka-ts__stars {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
}

.asanka-ts__star {
	font-size: 18px;
	line-height: 1;
	opacity: 0.3;
	color: var(--asts-star);
}

.asanka-ts__star.is-active {
	opacity: 1;
}

.asanka-ts__footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	margin-top: auto;
}

.asanka-ts__person {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.asanka-ts__avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex: 0 0 60px;
}

.asanka-ts__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.asanka-ts__identity {
	min-width: 0;
}

.asanka-ts__name {
	color: var(--asts-name);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 6px;
}

.asanka-ts__role {
	color: var(--asts-role);
	font-size: 18px;
	line-height: 1.35;
}

.asanka-ts__bullets {
	display: flex;
	align-items: center;
	gap: var(--asts-bullet-spacing);
	justify-content: center;
	margin-top: 28px;
}

.asanka-ts__bullet {
	appearance: none;
	border: 0;
	background: var(--asts-bullet);
	width: var(--asts-bullet-size);
	height: var(--asts-bullet-size);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.asanka-ts__bullet.is-active {
	background: var(--asts-bullet-active);
}

@media (max-width: 1024px) {
	.asanka-ts__card {
		padding: 28px;
	}

	.asanka-ts__quote {
		font-size: clamp(22px, 2.8vw, 28px);
		margin-bottom: 24px;
	}

	.asanka-ts__name {
		font-size: 21px;
	}

	.asanka-ts__role {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.asanka-ts__card {
		padding: 22px;
		border-radius: 22px;
	}

	.asanka-ts__quote {
		font-size: 18px;
		line-height: 1.6;
		margin-bottom: 18px;
	}

	.asanka-ts__stars {
		margin-bottom: 18px;
	}

	.asanka-ts__star {
		font-size: 15px;
	}

	.asanka-ts__person {
		gap: 12px;
	}

	.asanka-ts__avatar {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
	}

	.asanka-ts__name {
		font-size: 16px;
		margin-bottom: 4px;
	}

	.asanka-ts__role {
		font-size: 13px;
		line-height: 1.45;
	}

	.asanka-ts__bullets {
		margin-top: 20px;
	}
}
