/* News Item */
.news-item {
	display: block;
	color: inherit;
	text-decoration: none;
	position: relative;
}

.news-item__image {
	position: relative;
	margin-bottom: 20px;
}

.news-item__image:before {
	content: '';
	display: block;
	padding-top: calc(240 * 100% / 305);
}

.news-item__image img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-item__date {
	position: absolute;
	left: 0;
	bottom: 20px;
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
	background: var(--main-color);
	color: var(--white-color);
	padding: 3px 11px;
}

.news-item__content {

}

.news-item__title {
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	color: var(--accent-color);
	margin-bottom: 13px;
}

.news-item:hover .news-item__title {
	color: var(--main-color);
}

.news-item__text {
	color: var(--secondary-color);
}

@media (max-width: 1199.98px) {
	.news-item__title {
		font-size: 16px;
    line-height: 24px;
	}
}

@media (max-width: 767.98px) {
	.news-item__title {
		font-size: 14px;
	}
}
/* ! News Item */