.cs-destination {
	padding: 60px 0;
}

.cs-destination__layout {
	display: flex;
	align-items: center;
	gap: 40px;
}

.cs-destination__content {
	flex: 0 0 35%;
	max-width: 35%;
}

.cs-destination__title {
	margin: 0 0 15px;
	color: #1a37ae;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

.cs-destination__description,
.cs-destination__description p {
	margin: 0;
	color: #555555;
	font-size: 1rem;
	line-height: 1.6;
	font-family: 'Montserrat', sans-serif;
}

.cs-destination__description p + p {
	margin-top: 12px;
}

.cs-destination__logos-wrap {
	flex: 0 0 70%;
	max-width: 70%;
	position: relative;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, #000 0%, #000 82%, rgba(0, 0, 0, 0.25) 92%, transparent 100%);
	mask-image: linear-gradient(to right, #000 0%, #000 82%, rgba(0, 0, 0, 0.25) 92%, transparent 100%);
}

.cs-destination__logos-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 100%;
	pointer-events: none;
	z-index: 2;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 75%);
}

.cs-destination__swiper {
	overflow: visible;
	padding: 6px 0;
}

.cs-destination__slide {
	height: 220px;
	display: flex;
}

.cs-destination__logo-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	min-height: 100%;
	padding: 8px 0;
}

.cs-destination__logo-item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	min-height: 96px;
}

.cs-destination__logo-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	width: auto;
	height: auto;
	transition: transform 0.3s ease;
}

.cs-destination__logo-image:hover {
	transform: scale(1.05);
}

@media (max-width: 1024px) {
	.cs-destination__title {
		font-size: 1.8rem;
	}

	.cs-destination__description,
	.cs-destination__description p {
		font-size: 0.95rem;
	}
}

@media (max-width: 767px) {
	.cs-destination {
		padding: 40px 0;
	}

	.cs-destination__layout {
		flex-direction: column;
		text-align: center;
		gap: 28px;
	}

	.cs-destination__content,
	.cs-destination__logos-wrap {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.cs-destination__title {
		font-size: 1.9rem;
	}

	.cs-destination__description,
	.cs-destination__description p {
		font-size: 0.95rem;
	}

	.cs-destination__slide {
		height: auto;
		width: 57% !important;
	}

	.cs-destination__logo-column {
		gap: 12px;
	}

	.cs-destination__logo-item {
		padding: 12px;
		min-height: 82px;
	}

	.cs-destination__logos-wrap::after {
		width: 72px;
	}
}