
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
news_list .news_item .title {
	margin: 0;
	font-size: 1.2em;
	line-height: 1.3889em;
}

.news_item {
	min-height: 200px;
	display: flex;
	flex-direction: row;
	align-items: center;
	align-content: center;
	flex-wrap: nowrap;
	border: 1px solid #eff1f5;
	/* margin: 10px 0; */
	gap: 2em;
	background-color: #fff;
}

@media (max-width: 768px) {
	.news_item {
		display: flex;
		flex-direction: column;
		height: fit-content;
	}
	.news_item .image  {
		padding-top: 0!important;
	}
	.news_item .image {
		height: auto;
	}
}

.news_item .title h2 {
	padding-left: 0;
	padding-bottom: 6px;
	padding-top: 6px;
	margin-bottom: 0;
	font-size: 18px;
}

.news_item .title a {
	color: #000;
}

.news_item .title a:hover {
	text-decoration: none;
	color: #006cb5;
}

.news_item .image {
	display: flex;
	min-height: 200px;
	padding: 1em;
	flex: 1 0 33%;
	justify-content: center;
	align-items: center;
}
.news_item .image img {
	max-width: 100%;
	max-height: 100%;
}

.news_item .text {
	padding: 1em 3em 1em 3em;
	flex: 2 0 66%;
}
.news_item p {
	margin-bottom: 0;
}
.news_item .text .date {
	color: #333;
}
.news_item .text .props {
	color: #999;
	font-size: 12px;
}

.news_item .text .previewtext p {
	padding: 1em 1em 1em 0;
	color: #777;
	font-size: 14px;
}

.shadow:hover {
	border-color: transparent;
	-webkit-box-shadow: 0 5px 25px 0 rgb(18 25 38 / 10%);
	-moz-box-shadow: 0 5px 25px 0 rgba(18, 25, 38, .1);
	box-shadow: 0 5px 25px 0 rgb(18 25 38 / 10%);
}

.shadow {
	transition: box-shadow .3s ease;
	-moz-transition: box-shadow .3s ease;
	-ms-transition: box-shadow .3s ease;
	-o-transition: box-shadow .3s ease;
	-webkit-transition: box-shadow .3s ease;
}
.news_item:target {
	/* i.e when this element is navigated to (from a link) */
	animation-name: ref-animation;
	animation-duration: 3s;
	scroll-margin-top: 300px;

}

@keyframes ref-animation {
	from {
		background-color: #FFFFCC;
	}

	/* light yellow */
	to {
		background-color: transparent;
		padding-top: 0px;
	}

	/* assuming original was transparent */
}