.news {
	position: relative;
	padding: var(--k2-space-large) 0;
	overflow: hidden;
}


.news__slider {
	max-width: 1200px;
	margin: 0 auto;
}

.news__slider .slick-list.draggable {
	padding: 0 5rem;
}

.news h2 {
	text-align: center;
	margin-bottom: var(--k2-space-small);
}

.news a {
	margin-right: 1.5rem;
}

.news__post h3 {
	font-size: 1.2rem;
}

.news__post h3:after {
	display: none;
}

.news__post-content {
	padding: 1rem;
}

.news__post-date {
	color: #000;
	font-weight: 300;
}

.news__post-image {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	height: auto;
	width: 100%;
}

.news__bottom-link {
	padding-top: calc(var(--k2-space-small) * 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}

.news__bottom-link a {
	margin-right: 0;
}

@media (max-width: 768px) {
	.news {
		padding: calc(var(--k2-space-large) * 0.75) 0;
	}

	.news__slider .slick-list.draggable {
		padding: 0 2.5rem;
	}

	.news a {
		margin-right: 1rem;
	}

	.news__post h3 {
		font-size: 1.1rem;
	}
}

@media (max-width: 500px) {
	.news {
		padding: calc(var(--k2-space-large) * 0.5) 0;
	}

	.news__slider .slick-list.draggable {
		padding: 0 1.5rem;
	}

	.news a {
		margin-right: 1rem;
	}

	.news__post h3 {
		font-size: 1rem;
	}

	.news__post-date {
		font-size: 14px;
	}
}

