.tc-testimonial-carousel-wrapper {
	position: relative;
	padding: 0 10px;
}

.tc-swiper {
	overflow: hidden;
}

.tc-swiper .swiper-slide {
	height: auto;
	display: flex;
}

.tc-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	width: 100%;
	display: flex;
	flex-direction: column;
}

.tc-user-row {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 12px;
}

/* Alignment options for the user info row (avatar + name + city) */
.tc-user-row.tc-align-left {
	justify-content: flex-start;
	text-align: left;
}

.tc-user-row.tc-align-center {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.tc-user-row.tc-align-right {
	justify-content: flex-end;
	text-align: right;
}

/* Alignment options for the review text and rating */
.tc-rating.tc-align-left,
.tc-review.tc-align-left {
	text-align: left;
}

.tc-rating.tc-align-center,
.tc-review.tc-align-center {
	text-align: center;
}

.tc-rating.tc-align-right,
.tc-review.tc-align-right {
	text-align: right;
}

.tc-avatar img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.tc-user-meta {
	display: flex;
	flex-direction: column;
}

.tc-name {
	font-size: 18px;
	font-weight: 600;
	color: #222222;
	line-height: 1.3;
}

.tc-city {
	font-size: 13px;
	color: #888888;
	line-height: 1.3;
}

.tc-rating {
	color: #f5b301;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.tc-review {
	font-size: 15px;
	line-height: 1.6;
	color: #555555;
	margin: 0 0 18px;
}

/* 2x2 gallery grid */
.tc-gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 8px;
	margin-top: auto;
}

.tc-gallery-item img {
	width: 100%;
	height: 90px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	transition: transform 0.25s ease;
}

.tc-gallery-item img:hover {
	transform: scale(1.04);
}

/* Navigation arrows */
.tc-nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #222222;
	z-index: 10;
	user-select: none;
}

.tc-nav-prev {
	left: -10px;
}

.tc-nav-next {
	right: -10px;
}

/* Pagination dots */
.tc-dots.swiper-pagination {
	position: relative;
	margin-top: 20px;
	text-align: center;
}

.tc-dots .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: #cccccc;
	opacity: 1;
	margin: 0 5px;
}

.tc-dots .swiper-pagination-bullet-active {
	background: #222222;
}

@media (max-width: 767px) {
	.tc-nav-arrow {
		display: none;
	}
}
