.tec-cats {
	width: 100%;
}

.tec-cats__heading {
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 18px;
}

.tec-cats__viewport {
	position: relative;
	padding: 0 64px;
}

.tec-cats__swiper {
	overflow: hidden;
}

.tec-cats__slide {
	height: auto;
}

.tec-cats__card {
	display: flex;
	align-items: center;
	gap: 18px;
	height: 100%;
	padding: 10px;
	border: 1px solid #E6E9E6;
	background-color: #FFFFFF;
	border-radius: 16px;
	text-decoration: none;
	box-sizing: border-box;
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.tec-cats__card:hover {
	box-shadow: 0 10px 30px rgba(11, 122, 59, .12);
	border-color: #CDE3D4;
}

.tec-cats__media {
	flex: 0 0 auto;
	width: 96px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tec-cats__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.tec-cats__content {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.tec-cats__title {
	font-weight: 700;
	line-height: 1.2;
	color: #0B7A3B;
}

.tec-cats__text {
	line-height: 1.4;
	color: #5B6660;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tec-cats__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1.5px solid #059A4E;
	background-color: #FFFFFF;
	color: #059A4E;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.tec-cats__nav:hover {
	background-color: #059A4E;
	color: #FFFFFF;
}

.tec-cats__nav--prev {
	left: 0;
}

.tec-cats__nav--next {
	right: 0;
}

.tec-cats__nav.swiper-button-disabled {
	opacity: .35;
	cursor: default;
}

.tec-cats__nav.swiper-button-lock {
	display: none;
}

@media (max-width: 1024px) {
	.tec-cats__viewport {
		padding: 0 56px;
	}
}

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

	.tec-cats__card {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.tec-cats__nav {
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 380px) {
	.tec-cats__viewport {
		padding: 0 34px;
	}

	.tec-cats__nav {
		width: 32px;
		height: 32px;
	}
}
