.news-list {
	display: grid;
    gap: 48px;
    grid-template-columns: repeat(2,1fr);
}

.news-item-media {
	display: block;
	margin-bottom: 20px;
}

.news-item-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-item-title {
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
	width: 90%;
}

.news-item-text {
	font-size: 16px;
	line-height: 1.4;
	width: 75%;
}

.news-item-bottom {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid var(--green);
	display: grid;
	gap: 32px;
    grid-template-columns: repeat(2,1fr);
	align-items: center;
}

.bottom-date {
	font-size: 16px;
	line-height: 1.4;
}

.bottom-date strong {
	color: var(--orange);
	font-weight: 700;
}

.news-item-bottom .btn {
	display: flex;
	align-items: center;
	justify-content: center;
    font-size: 18px;
	width: 100%;
	height: 62px;
}

@media screen and (max-width: 1200px) {

	.news-item-bottom {
		margin-top: 15px;
		padding-top: 15px;
		gap: 15px;
	}
	.news-item-title {
		width: 100%;
	}
	.news-item-text {
		width: 100%;
	}
	.news-item-bottom .btn {
		font-size: 16px;
		height: 56px;
		padding: 0;
	}
	.bottom-date {
		font-size: 12px;
	}

}

@media screen and (max-width: 1000px) {
	.news-list {
		display: grid;
		gap: 20px;
		grid-template-columns: repeat(2,1fr);
	}	
}

@media screen and (max-width: 991px) {

	.posts {
		padding: 20px 0 50px;
	}

	.news-item-bottom {
		gap: 20px;
		grid-template-columns: repeat(1,1fr);
	}
	.bottom-date {
		font-size: 16px;
	}


}

@media screen and (max-width: 776px) {
	.news-list {
		grid-template-columns: repeat(1,1fr);
		gap: 40px;
	}	
}