.pavo-tc {
	--pavo-tc-gap: 24px;
	padding-bottom: 48px;
	position: relative;
}

.pavo-tc .swiper-wrapper {
	align-items: stretch;
}

.pavo-tc .swiper-slide {
	height: auto;
}

.pavo-tc__card {
	background: #fff;
	border-radius: 12px;
	padding: 32px;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pavo-tc__rating {
	display: flex;
	gap: 2px;
	font-size: 16px;
	color: #d0d0d0;
}

.pavo-tc__content {
	flex-grow: 1;
	line-height: 1.6;
}

.pavo-tc__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pavo-tc__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.pavo-tc__name {
	font-weight: 600;
}

.pavo-tc__title {
	opacity: 0.7;
	font-size: 0.9em;
}

.pavo-tc .swiper-pagination {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.pavo-tc .swiper-pagination-bullet {
	background: currentColor;
	opacity: 0.3;
}

.pavo-tc .swiper-pagination-bullet-active {
	opacity: 1;
}

.pavo-tc__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	z-index: 2;
}

.pavo-tc__nav::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.pavo-tc__nav--prev {
	left: -20px;
}

.pavo-tc__nav--prev::before {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.pavo-tc__nav--next {
	right: -20px;
}

.pavo-tc__nav--next::before {
	transform: translate(-70%, -50%) rotate(45deg);
}

.pavo-tc .swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}
