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

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

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

.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: 0;
	font-size: 12px;
	line-height: 16px;
	background: var(--white-color);
	color: var(--main-color);
	padding: 7px 10px;
}

.news-item__content {

}

.news-item__title {
	font-size: 12px;
	line-height: 16px;
	font-weight: 800;
	margin-bottom: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.news-item__text {
	font-size: 13px;
	color: var(--secondary-color);
}
/* ! News Item */