.news-list {
	margin-bottom: 2.2rem;
}

.news-list__title {
	margin-bottom: 1.8rem;
	color: #00205c !important;
	text-transform: uppercase;
	font-size: 28px !important;
}

.news-list__item-category {
	margin-bottom: 0.4rem;
}

.news-list__item {
	display: flex;
	margin-bottom: 4rem;
	padding-bottom: 4rem;
	position: relative;
}

.news-list__item:after {
	content: '';
	height: 2px;
	width: auto;
	background-color: #e6e6e6;
	position: absolute;
	bottom: 0;
	left: -20px;
	right: -20px;
}

.news-list__item:last-of-type {
	margin-bottom: 0;
}


.news-list__item-title {
	font-family: 'Helvetica Neue LT W05_95 Black', 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #00205c !important;
	font-size: 20px;
	line-height: normal !important;
	margin-bottom: 5px;
}

.swReset .news-list__item-title a, .swReset .news-list__item-title a:hover {
	color: inherit;
	font-size: inherit;
	font-family: inherit;
	font-style: inherit;
	line-height: inherit;
	text-decoration: none;
}

.news-list__item-date {
	margin-bottom: 1.8rem;
}

.news-list__item-content {
	flex-grow: 1;
}

.news-list__item-image {
	margin-left: 2rem;
	width: 327px;
	height: 215px;
	flex-shrink: 0;
}

.news-list__item-image img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
}

.news-list__item-summary {
	display: inline;
}

.news-list__item-detail-link {
	display:block;
}

.news-list__load-more,
.news-list__archive-link {
	padding: 20px;
	display: block;
	cursor: pointer;
	margin: 0 -20px;
	line-height: 1;
	position: relative;
	text-decoration: none !important;
	color: #3793d1;
	transition: all 100ms ease;
}


.news-list__load-more:hover,
.news-list__archive-link:hover{
	background-color: #00205c;
	color: #fff;
}

.news-list__load-more:after,
.news-list__archive-link:after {
	content: '\f054';
	font-family: "Font Awesome 5 Free", serif;
	position: absolute;
	right: 20px;
    font-weight: 700;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5em;
}

.news-list .lp-card {
	padding-bottom: 0;
	min-height: 250px;
}

.lp-card {
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px 0 #d8d8d8;
	-moz-box-shadow: 0 0 10px 0 #d8d8d8;
	box-shadow: 0 0 10px 0 #d8d8d8;
	padding: 20px;
}

.news-list__loader {
	border: 8px solid #f3f3f3;
	border-radius: 50%;
	border-top: 8px solid #00205c;
	width: 50px;
	height: 50px;
	-webkit-animation: cardLoaderSpin 2s linear infinite; /* Safari */
	animation: cardLoaderSpin 2s linear infinite;
	margin: 4rem auto;
}

@-webkit-keyframes cardLoaderSpin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes cardLoaderSpin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


@media screen and (max-width: 768px) {
	.news-list__item {
		flex-direction: column;
	}

	.news-list__item-content {
		order: 2;
	}

	.news-list__item-image {
		margin-left: 0;
		width: 100%;
		height: unset;
		order: 1;
		margin-bottom: 1.4rem;
	}

}

