.news-insights-page {
	font-family: "Montserrat", sans-serif;
	padding: 80px 45px 100px;
	overflow: hidden;
}

.news-insights__header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
}

.news-insights__title {
	margin: 0;
	font-size: 42px;
	font-weight: 300;
	color: #5a5765;
}

.news-insights__nav {
	position: absolute;
	top: -15px;
	right: -18px;

	display: flex;
	gap: 5px;

	z-index: 10;
}

.news-insights__arrow {
	width: 50px;
	height: 50px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #bdbdbd;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;
}

.news-insights__arrow:hover {
	color: #555aa6;
}

.news-insights__arrow-icon {
	width: 30px;
	height: 30px;
	display: block;
}


.news-insights__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;

	/* room above cards for arrows */
	padding-top: 30px;
}

.news-insights__track {
	display: flex;
	transition: transform 500ms ease;
}

.news-card {
	flex: 0 0 calc((100% - 20px) / 3);
	margin-right: 10px;
}

.news-card__image-wrap {
	display: block;
	width: 100%;
	aspect-ratio: 1.48 / 1;
	background: #eee;
	overflow: hidden;
}

.news-card__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.news-card__body {
	padding-top: 25px;
}

.news-card__date {
	padding-bottom: 8px;
	border-bottom: 1px solid #d8d8d8;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	color: #171726;
}

.news-card__copy {
	margin-top: 6px;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.45;
	color: #000000;
	height:auto;
}

.news-card__copy p {
	margin: 0;
}

.news-card__link {
	display: inline-block;
	margin-top: 28px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	text-decoration: none;
	color: #555aa6;
}

.news-card__logo-wrap {
	height: 25px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.news-card__logo {
	display: block;
	height: 25px;
	width: auto;
	max-width: 100%;

	opacity: 0.50;
}

.news-card__logo_expanded {
	display: block;
	height: 35px;
	width: auto;
	max-width: 100%;

	opacity: 0.50;
}

.news-card__body-link,
.news-card__body-link:hover,
.news-card__body-link:focus,
.news-card__body-link:visited {
	text-decoration: none;
	color: inherit;
}

.news-card__body-link .news-card__date,
.news-card__body-link .news-card__copy,
.news-card__body-link .news-card__copy p {
	text-decoration: none;
}

.news-card__image-wrap {
	text-decoration: none;
}



.news-card__image-wrap,
.news-card__body {
	will-change: transform, opacity;
}


.news-insights-page.is-initial-load .news-card__image-wrap {
	opacity: 0;
	transform: translateY(45px);
	animation: newsImageIn 700ms ease forwards;
	animation-delay: var(--card-stagger);
}

.news-insights-page.is-initial-load .news-card__body {
	opacity: 0;
	transform: translateY(18px);
	animation: newsContentIn 600ms ease forwards;
	animation-delay: calc(var(--card-stagger) + 350ms);
}

@keyframes newsImageIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes newsContentIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.news-insights-page.is-initial-load .news-card__image-wrap,
	.news-insights-page.is-initial-load .news-card__body {
		animation: none;
		opacity: 1;
		transform: none;
	}
}




@media (max-width: 900px) {
	.news-card {
		flex-basis: calc((100% - 10px) / 2);
	}
}

@media (max-width: 640px) {
	.news-card {
		flex-basis: 100%;
		margin-right: 0;
	}

	.news-insights__title {
		font-size: 34px;
	}
}

@media (max-width: 800px) {
.news-insights-page {
	font-family: "Montserrat", sans-serif;
	padding: 40px 22px 20px;
	overflow: hidden;
	height:600px;
}
}