.posts {
	padding-bottom: 80px;
}

.news-list {
    display: grid;
    gap: 45px;
    grid-template-columns: repeat(3,1fr);
}

.news-item {
	background: #FFFFFF;
	box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
	border-radius: 5px;	
	position: relative;
}

.news-item-media {
	width: 100%;
	height: 302px;
	display: block;
	border-radius: 5px 5px 0px 0px;
}

.news-item-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 5px 5px 0px 0px;
}

.news-item-content {
	padding: 22px 28px 90px;
	display: block;
}
.news-item-title {
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 8px;
}

.post-date {
	color: #868785;
	font-size: 16px;
	margin-bottom: 8px;
}

.news-item-text {
	font-size: 16px;
	line-height: 24px;
}

.news-item-content .btn {
	height: 53px;
	display: flex;
	position: absolute;
	width: calc(100% - 56px);
	bottom: 30px;
	align-items: center;
    justify-content: center;
}

@media screen and (max-width:1440px)  {
	.news-list {
		gap: 15px;
	}
	.news-item-media {
		height: 220px;
	}
	.news-item-title {
		font-size: 16px;
	}
	.news-item-text {
		font-size: 14px;
		line-height: 1.45;
	}
	.news-item-content {
		padding: 15px 15px 70px;
		display: block;
	}
	.news-item-content .btn {
		height: 48px;
		width: calc(100% - 30px);
		bottom: 15px;
	}

}

@media screen and (max-width:1280px)  {

	.news-item-text {
		font-size: 13px;
		line-height: 1.45;
	}

	.news-item-title {
		font-size: 14px;
	}

}

@media screen and (max-width:991px)  {

	.news-list {
		gap: 30px;
		grid-template-columns: repeat(2,1fr);
	}

}

@media screen and (max-width:500px)  {

	.news-list {
		gap: 30px;
		grid-template-columns: repeat(1,1fr);
	}

}