/*
|--------------------------------------------------------------------------
| News Archive
|--------------------------------------------------------------------------
*/

.news-archive {
	width: 100%;
	margin-top: -40px;
}


.news-row-wrapper {
	padding: 42px 0;
}


.news-row-wrapper--gray {
	background: #f3f3f3;
	padding: 42px;
	margin-left: -42px;
	margin-right: -42px;
}



/*
|--------------------------------------------------------------------------
| News Row
|--------------------------------------------------------------------------
*/

.news-row {
	width: 100%;
}


.news-row__inner {
	width: 100%;
	margin: 0;
}


.news-row__content {
	max-width: 980px;
}


.news-row__date {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: red;
	margin-bottom: 10px;
}


.news-row__title {
	font-size: 26px;
	line-height: 1.25;
	font-weight: 400;
	margin-bottom: 14px;
}


.news-row__title a {
	color: #bd4c7d;
	text-decoration: none;
}


.news-row__title a:hover {
	text-decoration: underline;
}


.news-row__excerpt {
	font-size: 15px;
	line-height: 1.75;
	color: #222;
}


.news-row__excerpt p {
	margin-bottom: .5em;
}


.news-row__excerpt p:last-child {
	margin-bottom: 0;
}



/*
|--------------------------------------------------------------------------
| Learn More
|--------------------------------------------------------------------------
*/

.news-row__link {
	margin-top: 6px;
	text-align: right;
}


.news-row__link a {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	color: #0049db;
}


.news-row__link a:hover {
	color: #bd4c7d;
}



/*
|--------------------------------------------------------------------------
| People
|--------------------------------------------------------------------------
*/

.news-row__people {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 5px;
}


.news-row__person {
	width: 200px;
	max-width: 100%;
}


.news-row__person-image {
	margin-bottom: 8px;
}


.news-row__person-image .et_pb_image_wrap {
	display: block;
}


.news-row__person-image img {
	display: block;
	width: 100%;
	height: auto;
}


.news-row__person-link a {
	font-size: 14px;
	line-height: 1.4;
	color: #0049db;
	text-decoration: none;
}


.news-row__person-link a:hover {
	text-decoration: underline;
}



/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 980px) {

	.news-row-wrapper--gray {
		padding: 32px 24px;
		margin-left: -24px;
		margin-right: -24px;
	}

	.news-row__title {
		font-size: 24px;
	}

	.news-row__excerpt {
		font-size: 15px;
		line-height: 1.7;
	}

}


@media (max-width: 767px) {

	.news-row-wrapper {
		padding: 36px 0;
	}

	.news-row-wrapper--gray {
		padding: 28px 20px;
		margin-left: -20px;
		margin-right: -20px;
	}

	.news-row__title {
		font-size: 22px;
	}

	.news-row__excerpt {
		font-size: 14px;
		line-height: 1.7;
	}

	.news-row__people {
		gap: 18px;
	}

	.news-row__person {
		width: 100%;
	}

}

/*
|--------------------------------------------------------------------------
| Single News
|--------------------------------------------------------------------------
*/

.news-single {
	padding: 0px 0 72px;
}

.news-single__inner {
	width: 90%;
	max-width: 1080px;
	margin: 0 auto;
}


.news-single__grid {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}


.news-single__people {
	display: flex;
	flex-direction: column;
	gap: 28px;
}


.news-single__person-image {
	margin-bottom: 8px;
}


.news-single__person-image .et_pb_image_wrap {
	display: block;
}


.news-single__person-image img {
	display: block;
	width: 100%;
	height: auto;
}


.news-single__person-link a {
	font-size: 16px;
	line-height: 1.4;
	color: #0049db;
	text-decoration: none;
}


.news-single__person-link a:hover {
	text-decoration: underline;
}


.news-single__date {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 12px;
}


.news-single__title {
	font-size: 30px;
	line-height: 1.1;
	font-weight: 400;
	color: #bd4c7d;
	margin-bottom: 15px;
}


.news-single__body {
	font-size: 18px;
	line-height: 1.7;
	color: #222;
}


.news-single__body p {
	margin-bottom: .4em;
}


.news-single__body a {
	color: #0049db;
	text-decoration: none;
}


.news-single__body a:hover {
	text-decoration: underline;
}


.news-single__back {
	margin-top: 36px;
}


.news-single__back a {
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #0049db;
	font-size: 14px;
	line-height: 1.4;
	text-transform: uppercase;
	text-decoration: none;
	color: #0049db;
}


.news-single__back a:hover {
	color: #bd4c7d;
	border-color: #bd4c7d;
	background: transparent;
}


@media (max-width: 980px) {

	.news-single__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.news-single__sidebar {
		order: 2;
	}

	.news-single__content {
		order: 1;
	}

	.news-single__people {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 24px;
	}

	.news-single__person {
		width: 220px;
		max-width: 100%;
	}

	.news-single__title {
		font-size: 40px;
	}

}


@media (max-width: 767px) {

	.news-single {
		padding: 36px 0 54px;
	}

	.news-single__inner {
		width: calc(100% - 40px);
	}

	.news-single__title {
		font-size: 32px;
		line-height: 1.15;
	}

	.news-single__body {
		font-size: 16px;
		line-height: 1.8;
	}

	.news-single__people {
		flex-direction: column;
	}

	.news-single__person {
		width: 100%;
	}

}

/*
|--------------------------------------------------------------------------
| Homepage News
|--------------------------------------------------------------------------
*/

.homepage-news__title {
	font-family: 'Lato', sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: #bd4c7d;
	margin-bottom: 10px;
}


.homepage-news__headline {
	font-size: 23px;
	line-height: 1.25;
	font-weight: 400;
}


.homepage-news__headline a {
	color: #bd4c7d;
	text-decoration: none;
}


.homepage-news__headline a:hover {
	text-decoration: underline;
}


.homepage-news__excerpt {
	font-size: 15px;
	line-height: 1.85;
	color: #222;
}


.homepage-news__excerpt p {
	margin-bottom: 1em;
}


.homepage-news__excerpt p:last-child {
	margin-bottom: 0;
}


.homepage-news__links {
	display: flex;
	justify-content: flex-end;
	gap: 24px;
	margin-top: 15px;
}


.homepage-news__link {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	color: #0049db;
}


.homepage-news__link:hover {
	color: #bd4c7d;
}


@media (max-width: 767px) {

	.homepage-news__headline {
		font-size: 22px;
	}

	.homepage-news__excerpt {
		font-size: 14px;
		line-height: 1.75;
	}

	.homepage-news__links {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

}