/* Add child theme styles here. */

/* FRONT PAGE */
.front-page-container {
	position: relative;
	max-height: 600px;
	box-sizing: border-box;
	margin-bottom: 100px;

}
.front-page-headline {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px;
	padding: 0px 80px;
}

.front-page-headline h2 {
	font-size: 75px;
	line-height: 1.18; 
}

@media screen and (max-width: 1600px) {
	.front-page-container {
		margin-bottom: 60px
	}
	.front-page-headline {
		padding: 0px;
	}
	.front-page-headline h2 {
		font-size: 65px;
	}
}

@media screen and (max-width: 1024px) {
	.front-page-headline {
		margin: 30px;
	}
	.front-page-headline h2 {
		font-size: 45px;
		line-height: 1.18;
	}
	.front-page-headline h3 {
		font-size: 18px;
	}
}

@media screen and (max-width: 768px) {
	.front-page-headline {
		display: flex;
		align-items: baseline;
		justify-content: center;
		margin: 30px;
	}
}

@media screen and (max-width: 575px) {
	.front-page-headline h2 {
		font-size: 50px;
		line-height: 1.18;
	}
}


/* END FRONT PAGE */

/* NEWS HERO SLIDER */
.news-hero {
	position: relative;
	z-index: 50;
	width: 100%;
	margin: 10px 0 30px;
}

.news-hero-viewport {
	position: relative;
	z-index: 10;
	overflow: hidden;
	border-radius: 8px;
}

.news-hero-track {
	display: flex;
	width: 100%;
	transition: transform 0.5s ease;
	will-change: transform;
}

.news-hero-slide {
	position: relative;
	flex: 0 0 100%;
	min-width: 100%;
	height: 600px;
}

.news-hero-media {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

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

.news-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.15) 35%,
			rgba(0, 0, 0, 0.45) 65%,
			rgba(0, 0, 0, 0.65) 100%
		);
	pointer-events: none;
}

.news-hero-meta {
	position: absolute;
	right: 22px;
	bottom: 22px;
	left: 22px;
	max-width: 900px;
	color: #fff;
}

.news-hero-eyebrow {
	margin: 0 0 6px;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 1.3;
	text-transform: uppercase;
}

.news-hero-eyebrow-divider {
	color: #be0000;
	font-weight: 700;
}

.news-hero-eyebrow-source {
	font-style: italic;
}

.news-hero-title {
	margin: 0 0 6px;
	font-size: 2rem;
	line-height: 1.1;
}

.news-hero-title span {
	color: #fff;
	text-decoration: none;
}

.news-hero-media:hover .news-hero-title span,
.news-hero-media:focus .news-hero-title span {
	text-decoration: underline;
}

.news-hero-excerpt {
	max-width: 65ch;
	margin: 0.2rem 0 0;
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
	opacity: 0.95;
}

.news-hero-controls {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.6rem;
	align-items: center;
	width: 100%;
	margin-top: 15px;
}

.news-hero-controls .news-hero-prev {
	margin-left: auto;
}

.news-hero-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1.5px solid #d9d9d9;
	border-radius: 50%;
	background: #fff;
	color: #000;
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.news-hero-control svg {
	display: block;
	width: 14px;
	height: 14px;
}

.news-hero-control:hover,
.news-hero-control:focus {
	border-color: #be0000;
	transform: scale(1.08);
}

.news-hero-pause .icon-play {
	display: none;
}

.news-hero-pause.is-paused .icon-pause {
	display: none;
}

.news-hero-pause.is-paused .icon-play {
	display: inline-block;
}

.sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media screen and (max-width: 1024px) {
	.news-hero-slide {
		height: 550px;
	}
}

@media screen and (max-width: 780px) {
	.news-hero-slide {
		height: 430px;
	}

	.news-hero-title {
		font-size: 1.65rem;
	}
}

@media screen and (max-width: 480px) {
	.news-hero-slide {
		height: 380px;
	}

	.news-hero-meta {
		right: 16px;
		bottom: 16px;
		left: 16px;
	}

	.news-hero-eyebrow {
		font-size: 0.78rem;
	}

	.news-hero-title {
		font-size: 1.35rem;
	}

	.news-hero-excerpt {
		font-size: 0.94rem;
	}
}
/* END NEWS HERO SLIDER */

/* NEWS MARQUEE HEADLINE */
.news-marquee-headline {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 600px;
	margin: 40px;
}

.news-marquee-headline .news-marquee-headline-text {
	width: 100%;
	max-width: 600px;
	text-align: left;
}

.news-marquee-headline h1 {
	font-size: 75px;
	line-height: 1.18;
}

@media screen and (max-width: 1600px) {
	.news-marquee-headline h1 {
		font-size: 65px;
	}

	.news-marquee-headline .news-marquee-headline-text {
		max-width: 500px;
	}
}

@media screen and (max-width: 1024px) {
	.news-marquee-headline {
		margin: 30px;
	}

	.news-marquee-headline h1 {
		font-size: 55px;
		line-height: 1.18;
	}
}

@media screen and (max-width: 768px) {
	.news-marquee-headline {
		display: flex;
		align-items: baseline;
		justify-content: center;
		height: 290px;
		margin: 30px;
	}

	.news-marquee-headline .news-marquee-headline-text {
		width: 100%;
		max-width: 800px;
		text-align: left;
	}
}

@media screen and (max-width: 575px) {
	.news-marquee-headline h1 {
		font-size: 50px;
		line-height: 1.18;
	}
}

@media screen and (max-width: 460px) {
	.news-marquee-headline {
		height: 390px;
	}
}
/* END NEWS MARQUEE HEADLINE */

/* UU QUICK TABS OVERWRITE */
.uu-quick-links-tab {
	max-width: 600px !important;
}
/* END UU QUICK TABS OVERWRITE */

/* UU SPLIT SECTION WIDGET OVERWRITE */
.uu-split-section-widget-desc {
	font-size: 17px !important;
	line-height: 1.5 !important;
}
/* END UU SPLIT SECTION WIDGET OVERWRITE */