section.news-grid {
	margin: 5px 0;
}
section.news-grid .root {
	background-color: var(--color-root);
	padding: 0 5px;
	border-radius: var(--border-radius);
	color: black;
	font-weight: 700;
}
section.news-grid h2 {
	margin-bottom: 15px;
	margin-top: 3px;
}
section.news-grid .grid {
	display: grid;
	grid-gap: 10px;
}
section.news-grid .item {
	position: relative;
}
section.news-grid .grid .outer {
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	height: 100%;
}
section.news-grid .grid>div {
	position: relative;
}
section.news-grid .box {
	height: 100%;
	position: relative;
	padding: 15px 20px;
}
section.news-grid .content {
	bottom: 30px;
	left: 30px;
	right: 30px;
}
section.news-grid .number {
	position: absolute;
	z-index: 2;
	background: var(--darker);
	width: 28px;
	height: 28px;
	text-align: center;
	color: var(--color);
	border-radius: 50%;
	line-height: 28px;
	left: -13px;
	top: 124px;
	background: var(--color);
	color: black;
}
section.news-grid .image {
	height: 144px;
	width: 100%;
	margin-bottom: 10px;
	overflow: hidden;
	border-radius: var(--border-radius);
}
section.news-grid img {
	height: 100%;
	opacity: 0.5;
	object-fit: cover;
	width: 100%;
	filter: grayscale(0.5);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	transform: scale(1);
}
section.news-grid .item:hover img {
	opacity: 1;
	transform: scale(1.05);
}
section.news-grid h1 {
	font-size: 36px;
	max-width: calc(100% - 50px);
}
section.news-grid .item:hover h3 {
	color: var(--color-lighter);
}
section.news-grid h3 {
	font-size: 20px;
	font-weight: 400;
	padding: 0 10px;
	border-left: 2px solid var(--color);
	margin-bottom: 2px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
section.news-grid p {
	opacity: 0.5;
}
section.news-grid .info {
	font-size: 15px;
	color: var(--color-dark);
	line-height: 16px;
	margin-top: 7px;
}
section.news-grid .info li {
	display: inline-block;
	margin-right: 8px;
}
section.news-grid .info i {
	opacity: 0.5;
	font-size: 11px;
	position: relative;
	top: -1px;
	margin-right: 3px;
}
section.news-grid .info.multiline li {
	display: block;
	margin-right: 0;
	margin-top: 2px;
}
@media all and (max-width: 1140px) {
	section.news-grid .grid6 {
		grid-template-columns: 1fr 1fr 1fr;
	}
	section.news-grid .number {
		top: 67px;
	}
	section.news-grid .image {
		height: 84px;
	}
	section.news-grid h3 {
		font-size: 18px;
		line-height: 19px;
	}
}
@media all and (max-width: 720px) {
	section.news-grid .grid6 {
		grid-template-columns: 1fr 1fr;
	}
}