@charset "utf-8";
/* CSS Document */

/*--- Latest News ---*/
#banner-insights {
	max-width: 1300px;
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.insights-wrapper {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding: 50px 20px 100px;
	color: white;
}
.insights-content {
	padding: 50px 0;
}

.newsbox {
	border: 1px solid lightgrey;
	border-radius: 10px;
	height: auto;
	width: auto;
	margin: 0 0 1.0em;
	padding: 0;
	color: white;
}
.newsbox-img-wrapper {
	height: 180px; /* adjust to fit your design */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 10px;
	background-color: transparent; /* optional: adds a neutral background */
}
.newsbox-img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain; /* or "cover" if you want it to fill the space */
	display: block;
}
.newsbox-title {
	height: 4.0em;
	padding: 0 0.3em;
}
.newsbox-title-index {
	height: 4.0em;
	padding: 0 1.5em;
}

.newsbox-text {
	height: 8.0em;
	padding: 0 1em;
}
.newsbox-text-index {
	height: 8.0em;
	padding: 0 1.5em;
}

.newsbox-footer {
	margin: 1em 1em 2em;
}
.newsbox-footer .btn {
	border: var(--amd1) solid 1px;
	background-color: var(--amd2);
	color: white;
}
.newsbox-footer .btn:hover {
	background-color: var(--amd1);
	color: black !important;
}
.read-more-btn {
	border: var(--amd2) solid 1px;
	border-radius: 7px;
	padding: 5px 8px;
	background-color: var(--amd3);
	color: white;
}
/*  NEWS-RELEASES  */
#news-release-content {
	padding: 50px 20px 100px;
	color: white;
}
#news-release-content h4 {
	margin-bottom: 50px;
	padding-left: 75px;
	padding-right: 75px;
	line-height: 1.6;
}
.news-img {
	height: 300px;
	padding-top: 25px;
}

@media screen and (max-width:578px) {
	.news-img {
		height: auto;
		width: 100%;
	}
	#news-release-content {
		padding: 50px 20px;
	}
	#news-release-content h4 {
		padding-left: 0;
		padding-right: 0;
	}
}

