/**
 * Posts Slider Block Styles
 */

/* ─── Block ───────────────────────────────────────────────────────────────── */

.posts-slider {
	padding: 80px 0;
}

/* ─── Inner ───────────────────────────────────────────────────────────────── */

.posts-slider__inner {
	display: flex;
	flex-direction: column;
}

/* ─── Header ──────────────────────────────────────────────────────────────── */

.posts-slider__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
}

.posts-slider__header-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.posts-slider__title {
	margin: 0;
}

/* ─── Nav buttons (same visual style as ct-services__slider-nav) ──────────── */

.posts-slider__slider-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.posts-slider__counter {
	font-weight: 500;
	font-size: 14px;
	line-height: 120%;
	color: var(--color-bg-deepest);
	min-width: 36px;
	text-align: center;
}

.posts-slider__nav {
	position: relative;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--color-white);
	cursor: pointer;
	flex-shrink: 0;
}

.posts-slider__nav::before {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.posts-slider__nav--prev::before {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3337 3.3335L8.3741 7.29306C7.98357 7.68358 7.98357 8.31674 8.3741 8.70727L12.3337 12.6668' stroke='%233F3880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.99967 3.3335L3.04011 7.29306C2.64959 7.68358 2.64959 8.31674 3.04011 8.70727L6.99967 12.6668' stroke='%233F3880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.posts-slider__nav--next::before {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.66634 3.3335L7.6259 7.29306C8.01643 7.68358 8.01643 8.31674 7.6259 8.70727L3.66634 12.6668' stroke='%233F3880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.00033 3.3335L12.9599 7.29306C13.3504 7.68358 13.3504 8.31674 12.9599 8.70727L9.00033 12.6668' stroke='%233F3880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ─── Slider wrapper ──────────────────────────────────────────────────────── */

.posts-slider__slider-wrap {
	overflow: hidden;
}

.posts-slider__slider .swiper-slide {
	height: auto;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.posts-slider__footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 40px;
}

/* ─── Mobile (≤ 768px) ────────────────────────────────────────────────────── */

@media (max-width: 768px) {
	.posts-slider__header-left {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.posts-slider {
		padding: 40px 0;
	}

	.posts-slider__slider-meta {
		display: none;
	}

	.posts-slider__footer {
		justify-content: center;
		margin-top: 32px;
	}

}
