/* Box sizing reset */
.acb-ts-wrapper,
.acb-ts-wrapper * {
	box-sizing: border-box;
}

.acb-ts-wrapper {
	width: 100%;
	background-color: #0b071e;
	padding: 80px 20px;
}

.acb-ts-container {
	max-width: 900px;
	margin: 0 auto;
	width: 100%;
}

/* Header */
.acb-ts-header {
	text-align: center;
	margin-bottom: 45px;
}

.acb-ts-subtitle {
	color: #c7b3ce;
	font-size: 13px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 12px;
}

.acb-ts-title {
	color: #d99a6c;
	font-size: 46px;
	font-family: 'Georgia', serif;
	line-height: 1.2;
	margin: 0;
}

/* Swiper Container Fixes */
.acb-ts-slider {
	width: 100% !important;
	max-width: 100% !important;
	position: relative;
	overflow: hidden !important;
	padding-bottom: 40px !important;
}

.acb-ts-slider .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.acb-ts-slide {
	width: 100% !important;
	height: auto;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
}

/* Card Styling */
.acb-ts-card {
	width: 100%;
	border: 1px dashed rgba(255, 255, 255, 0.25);
	background-color: rgba(255, 255, 255, 0.02);
	padding: 50px 40px;
	text-align: center;
	border-radius: 2px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.acb-ts-stars {
	color: #d99a6c;
	font-size: 18px;
	margin-bottom: 20px;
	letter-spacing: 4px;
	line-height: 1;
}

.acb-ts-quote {
	color: #ffffff;
	font-size: 24px;
	font-family: 'Georgia', serif;
	line-height: 1.5;
	margin-bottom: 25px;
	max-width: 700px;
}

.acb-ts-author-name {
	color: #d99a6c;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 6px;
}

.acb-ts-author-sub {
	color: #ffffff;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	opacity: 0.8;
}

/* Pagination Dots */
.acb-ts-slider .acb-ts-pagination {
	position: absolute;
	bottom: 0 !important;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 10;
}

.acb-ts-slider .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.25);
	opacity: 1;
	border-radius: 50%;
	margin: 0 !important;
	transition: background 0.3s ease;
	cursor: pointer;
}

.acb-ts-slider .swiper-pagination-bullet-active {
	background: #d99a6c !important;
}

/* Mobile & Responsive */
@media (max-width: 768px) {
	.acb-ts-wrapper {
		padding: 50px 15px;
	}

	.acb-ts-title {
		font-size: 32px;
	}

	.acb-ts-card {
		padding: 30px 20px;
	}

	.acb-ts-quote {
		font-size: 18px;
	}
}