/* News jump to section */
.news-scroll-section {
	background-color: var(--light-grey-color);
	border-radius: var(--lg-border-radius);
	margin-top: 0;
	padding: 8px;
}
.news-scroll-section .container {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: center;
	padding: 16px 0;
	flex-wrap: wrap;
}
.news-scroll-section-label {
	color: var(--black-color);
	font-size: 22px;
	font-weight: bold;
	margin: 0;
	text-align: center;
	white-space: nowrap;
	display: block;
	width: 100%;
	font-family: "Avenir-Heavy", sans-serif;
	flex: none;
	height: auto;
	line-height: 1.2;
}
.news-scroll-section-link {
	border-radius: 100%;
	height: 40px;
	position: relative;
	text-decoration: none;
	width: auto;
	text-align: center;
	min-width: 240px;
}
.news-scroll-section-link:focus,
.news-scroll-section-link:hover {
	text-decoration: none;
	filter: brightness(95%);
}

.news-scroll-section-link span {
	background-color: var(--dark-grey-color);
	color: var(--white-color);
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
	padding: 0 16px 0 40px;
	white-space: nowrap;
	width: auto;
	position: relative;
	border-radius: var(--border-radius);
}
.news-scroll-section-link span::before,
.news-scroll-section-link span::after {
	background-color: var(--white-color);
	border-radius: 100%;
	content: "";
	display: block;
	height: 20px;
	position: absolute;
	width: 20px;
	top: 50%;
	transform: translateY(-50%);
	left: 12px;
}
.news-scroll-section-link span::before {
	opacity: 0.5;
}
.news-scroll-section-link span::after {
	height: 8px;
	opacity: 1;
	transform: translateY(-50%);
	width: 8px;
	top: 50%;
	left: 18px;
}
.news-scroll-section-link.blue::before,
.news-scroll-section-link.blue::after,
.news-scroll-section-link.blue span {
	background-color: var(--blue-color);
	color: var(--black-color);
}
.news-scroll-section-link.green::before,
.news-scroll-section-link.green::after,
.news-scroll-section-link.green span {
	background-color: var(--green-color);
	color: var(--black-color);
}
.news-scroll-section-link.orange::before,
.news-scroll-section-link.orange::after,
.news-scroll-section-link.orange span {
	background-color: var(--orange-color);
	color: var(--black-color);
}
