.cfcs-slider,
.cfcs-slider * {
	box-sizing: border-box;
}

.cfcs-slider {
	--cfcs-image-col: 66%;
	--cfcs-gap: 32px;
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: #173e59;
	padding: 30px 30px 22px;
	color: #fff;
}

.cfcs-track-viewport {
	width: 100%;
	overflow: hidden;
}

.cfcs-track {
	display: flex;
	align-items: stretch;
	transition-property: transform;
	transition-timing-function: ease;
	will-change: transform;
}

.cfcs-slide {
	min-width: 100%;
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, var(--cfcs-image-col)) minmax(0, 1fr);
	gap: var(--cfcs-gap);
	align-items: center;
}

.cfcs-media {
	max-width: 100%;
}

.cfcs-image {
	position: relative;
	display: block;
	width: 100%;
	height: 420px;
	overflow: hidden;
	text-decoration: none;
	border-radius: 12px;
}

.cfcs-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border: 0;
}

.cfcs-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 180px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	letter-spacing: 0.02em;
}

.cfcs-content-wrap {
	min-width: 0;
	width: 100%;
}

.cfcs-static-title {
	display: inline-block;
	margin: 0 0 6px;
	color: #f39a21;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
}

.cfcs-post-title {
	margin: 0 0 10px;
	padding: 0;
	color: #fff;
	font-size: 44px;
	font-weight: 500;
	line-height: 1.08;
}

.cfcs-post-title a {
	color: inherit;
	text-decoration: none;
}

.cfcs-post-title a:hover {
	color: inherit;
}

.cfcs-post-content {
	margin: 0 0 16px;
	color: #fff;
	font-size: 15px;
	line-height: 1.55;
}

.cfcs-post-content p {
	margin-top: 0;
}

.cfcs-post-content p:last-child,
.cfcs-post-content ul:last-child,
.cfcs-post-content ol:last-child {
	margin-bottom: 0;
}

.cfcs-post-content ul,
.cfcs-post-content ol {
	margin-top: 0;
	padding-left: 22px;
}

.cfcs-post-content li {
	margin-bottom: 5px;
}

.cfcs-read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 28px;
	border-radius: 999px;
	background-color: #f7941d;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.cfcs-read-more:hover,
.cfcs-read-more:focus {
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.cfcs-navigation {
	width: var(--cfcs-image-col);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 28px 0 0;
}

.cfcs-arrow {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #d7dde3;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.cfcs-arrow:hover,
.cfcs-arrow:focus {
	color: #fff;
	background: transparent;
	outline: none;
}

.cfcs-dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.cfcs-dot {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background-color: #d7dde3;
	cursor: pointer;
	transition: width 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
	opacity: 0.95;
}

.cfcs-dot.is-active {
	width: 24px;
	background-color: #f7941d;
}

.cfcs-admin-message {
	padding: 15px 18px;
	border-left: 4px solid #d63638;
	background: #fff;
	color: #1d2327;
	font-size: 14px;
}

@media (max-width: 1024px) {
	.cfcs-post-title {
		font-size: 36px;
	}

	.cfcs-image {
		height: 350px;
	}
}

@media (max-width: 767px) {
	.cfcs-slider {
		padding: 18px;
	}

	.cfcs-slide {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.cfcs-navigation {
		width: 100%;
		margin-top: 20px;
	}

	.cfcs-post-title {
		font-size: 30px;
	}

	.cfcs-image {
		height: 260px;
	}
}
