.cts-admin-page {
	max-width: 1200px;
}

.cts-admin-toolbar {
	margin: 24px 0 16px;
}

.cts-repeater-list {
	display: grid;
	gap: 20px;
}

.cts-repeater-item {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	padding: 24px;
}

.cts-item-header {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 20px;
}

.cts-item-header strong {
	flex: 1;
	font-size: 15px;
}

.cts-drag-handle {
	color: #64748b;
	cursor: move;
}

.cts-item-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cts-field {
	display: grid;
	gap: 8px;
}

.cts-field label {
	color: #0f172a;
	font-size: 13px;
	font-weight: 600;
}

.cts-field input,
.cts-field textarea {
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	box-sizing: border-box;
	font-size: 14px;
	max-width: 100%;
	padding: 12px 14px;
	width: 100%;
}

.cts-field textarea {
	min-height: 150px;
	resize: vertical;
}

.cts-field-full {
	grid-column: 1 / -1;
}

.cts-field-image {
	align-content: start;
}

.cts-image-preview {
	align-items: center;
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	border-radius: 12px;
	display: flex;
	height: 96px;
	justify-content: center;
	overflow: hidden;
	width: 96px;
}

.cts-image-preview img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.cts-image-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cts-slider-section {
	background: #f4f3f1;
	padding: 0px 0 76px;
}

.cts-slider-wrap {
	margin: 0 auto;
	max-width: 1600px;
	padding: 0 32px;
	position: relative;
}

.cts-swiper {
	overflow: visible;
	padding: 12px 0 88px;
}

.cts-swiper .swiper-slide {
	height: auto;
	display: flex;
	align-items: flex-start;
}

.cts-card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 30px;
	height: auto;
	padding: 30px;
	align-self: flex-start;
}

.cts-card-content {
	flex: unset;
}

.cts-card-text {
	color: #181818 !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1.83 !important;
	margin: 0;
	font-family: "Manrope" !important;
}

.cts-card-author {
	align-items: center;
	display: flex;
	gap: 16px;
}

.cts-card-avatar {
	border-radius: 999px;
	flex: 0 0 56px;
	height: 56px;
	overflow: hidden;
	width: 56px;
}

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

.cts-card-meta {
	min-width: 0;
}

.cts-card-name {
	color: #181818 !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1.2 !important;
	margin: 0 0 6px;
	letter-spacing: normal !important;
	font-family: "Manrope" !important;
}

.cts-card-company {
	color: #5b6585 !important;
	font-size: 11px !important;
	font-weight: 400 !important;
	letter-spacing: 0.04em !important;
	margin: 0;
	font-family: "Manrope" !important;
	text-transform: uppercase;
}

.cts-nav {
	align-items: center;
	background: #ffffff;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
	color: #1f2937;
	cursor: pointer;
	display: flex;
	height: 46px;
	justify-content: center;
	position: absolute;
	top: auto;
	bottom: 0;
	width: 46px;
	z-index: 3;
}

.cts-nav::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	display: block;
	height: 10px;
	width: 10px;
}

.cts-nav-prev {
	left: calc(50% - 78px);
}

.cts-nav-prev::after {
	transform: rotate(135deg);
}

.cts-nav-next {
	right: calc(50% - 78px);
}

.cts-nav-next::after {
	transform: rotate(-45deg);
}

.cts-pagination.swiper-pagination-bullets {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
}

.cts-pagination .swiper-pagination-bullet {
	background: #b9b9b9;
	height: 11px;
	opacity: 1;
	width: 11px;
}

.cts-pagination .swiper-pagination-bullet-active {
	background: #f26b38;
}

@media (max-width: 1199px) {
	.cts-card-text {
		font-size: 20px;
	}
}

@media (max-width: 991px) {
	.cts-item-grid {
		grid-template-columns: 1fr;
	}

	.cts-slider-wrap {
		padding: 0 24px;
	}
}

@media (max-width: 767px) {
	.cts-slider-section {
		padding: 0px 0 64px;
		overflow: hidden;
	}

	.cts-slider-wrap {
		padding: 0 24px;
	}

	.cts-card {
		gap: 24px;
		padding: 28px 24px;
	}

	.cts-card-text {
		font-size: 18px;
		line-height: 1.75;
	}

	.cts-card-name {
		font-size: 18px;
	}

	.cts-nav {
		height: 40px;
		width: 40px;
	}

	.cts-nav-prev {
		left: calc(50% - 68px);
	}

	.cts-nav-next {
		right: calc(50% - 68px);
	}
}