.news {
	position: relative;
	padding-top: 75px;
	overflow-x: hidden;
}

/*.container.news__wrapper {*/
/*	padding-left: 0;*/
/*	padding-right: 0;*/
/*}*/

@media (max-width: 768px) {
	.container.news__wrapper {
		max-width: none !important;
	}
}

.news__heading {
	display: grid;
	grid-template-columns: 1fr 200px;
	align-items: initial;
	justify-content: space-between;
	margin-bottom: 24px;
}

@media (max-width: 768px) {
	.news__heading {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.events__moreLink {
		text-align: right;
	}
}

.news__heading h2.wysiwyg-content {
	/*order: 2;*/
	margin-bottom: 0;
	margin-top: 24px;
	font-family: var(--secondary-font-family);
	font-size: var(--font-size-largest);
	font-weight: 600;
	line-height: 71px;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.news__heading h2.wysiwyg-content {
		/*order: 1;*/
		margin-top: 0;
		margin-bottom: initial;
		font-size: var(--font-size-mobile-larger);
		line-height: 0.9;
	}
}

.news__headerMoreButton {
	padding-right: 0;
	margin: 0 0 0 auto;
}

@media (min-width: 768px) {
	.news__headerMoreButton {
		order: 2;
	}
}

.news__cards {
	display: flex;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

@media (min-width: 768px) {
	.news__cards {
		gap: 40px;
	}
}

.news__card {
	scroll-snap-align: start;
	flex: 0 0 auto;
	width: calc(100vw - 50px);
	text-align: left;
	height: 100vh;
	padding: 0 10px;
}

@media (min-width: 768px) {
	.news__card {
		flex: 1 1 auto;
		height: 85vh;
	}
}

.news__card_no_excerpt {
	height: auto;
}

.news__card > a {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;
	border-radius: 15px;
	overflow: hidden;
	background-color: var(--color-theme-grey-light);
}

.news__card > a:hover,
.news__card > a:focus-visible {
	background-color: var(--color-theme-grey-medium);
}

.news__pagination {
	display: flex;
	width: 100%;
	justify-content: center;
	padding: 24px 0;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--color-theme-secondary);
}

@media (min-width: 768px) {
	.news__pagination {
		display: none;
	}
}

.news__pageButton {
	width: 21px;
	height: 21px;
	border-radius: 100px;
	border: 2px solid var(--color-theme-blue);
	margin: 0 6px;
}

.news__pageButton[aria-current='true'] {
	background-color: var(--color-theme-blue);
}

.news_cardImgWrapper {
	position: relative;
	background-color: var(--color-theme-secondary);
	margin: 0;
	overflow: hidden;
}

.news_cardImgWrapper::after {
	content: '';
	display: block;
	padding-bottom: 56.25%;
}

.news__cardImg {
	display: block;
	width: 100%;
	height: auto;
	position: absolute;
}

.news__cardMeta {
	padding: 20px;
}

@media (min-width: 768px) {
	.news__cardMeta {
		padding: 20px 24px;
		max-height: 60vh;
		overflow-y: auto;
	}
}

.news__cardDate {
	display: block;
	color: var(--color-theme-blue);
	margin-bottom: 12px;
	font-family: var(--secondary-font-family);
	line-height: 1.11;
	font-weight: 500;
}

.news__cardLink {
	display: block;
	font-family: var(--secondary-font-family);
	color: var(--color-theme-primary);
	font-size: 47px;
	line-height: 42px;
	font-weight: 600;
}

@media (min-width: 768px) {
	.news__moreButton {
		display: none;
	}
}

.news__button {
	border: 3px solid var(--color-theme-blue);
	border-radius: 50%;
	background-color: transparent;
	background-image: url(../../../assets/images/solid_arrow_blue_medium.svg);
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: center;
	padding: 1rem;
}

.news__buttonLeft {
	transform: rotate(180deg);
}

.news__buttonHolder {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

@media (min-width: 768px) {
	.news__buttonHolder {
		display: none;
	}
}

@media (min-width: 768px) {
	.news__button {
		display: none;
	}
}

.news-swiper-button-next,
.news-swiper-button-prev {
	width: calc(var(--swiper-navigation-size) / 44 * 30);
}

.news-swiper-button-next,
.news-swiper-button-prev {
	content: '';
	width: var(--swiper-navigation-size);
	height: var(--swiper-navigation-size);
	border: 2px solid var(--color-theme-primary);
	border-radius: 50%;
	background-image: url(../../assets/images/solid_arrow_blue_butler.svg);
	background-repeat: no-repeat;
	background-size: 16px auto;
	background-position: center;
	background-color: var(--color-theme-white);
}

.news-swiper-button-next:hover,
.news-swiper-button-prev:hover,
.news-swiper-button-next:focus,
.news-swiper-button-prev:focus {
	background-color: var(--color-theme-primary) !important;
	border-color: var(--color-theme-primary);
	background-image: url(../../assets/images/solid_arrow_white.svg);
}

.news-swiper-button-next::after,
.news-swiper-button-prev::after {
	content: '';
}

.news-swiper-button-next:hover::after,
.news-swiper-button-prev:hover::after,
.news-swiper-button-next:focus::after,
.news-swiper-button-prev:focus::after {
	background-color: var(--color-theme-primary);
	border-color: var(--color-theme-primary);
	background-image: url(../../assets/images/solid_arrow_white.svg);
}

.news-swiper-button-prev {
	transform: rotate(180deg) !important;
}

/* Style updates */
.news--disable-slider {
	margin: 90px auto !important;
	padding-top: 0;
}
.news--disable-slider .news__heading {
	margin-bottom: 30px;
	text-align: center;
}
.news--disable-slider .news__heading h2.wysiwyg-content {
	margin-top: 0;
	font-size: clamp(52px, calc(52px + 26 * ((100vw - 390px) / 1050)), 78px);
}
.news--disable-slider .news__cards {
	display: block;
	scroll-snap-type: none;
	transform: none;
}
.news--disable-slider .news__card {
	margin-bottom: 30px;
	padding: 0;
	width: 100%;
}
.news--disable-slider .news__card > a {
	border-radius: 0;
	background: transparent !important;
}
.news--disable-slider .news_cardImgWrapper {
	display: block;
	margin-bottom: 15px;
	height: 190px;
	overflow: hidden;
}
.news--disable-slider .news_cardImgWrapper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.news--disable-slider .news_cardImgWrapper:hover img {
	transform: scale(1.1);
}
.news--disable-slider .news__cardMeta {
	padding: 0;
}
.news--disable-slider .news__cardCategory {
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 300;
	font-size: clamp(12px, calc(12px + 2 * ((100vw - 390px) / 1050)), 14px);
	line-height: 1.52;
	font-family: var(--highlight-font-family);
	text-transform: uppercase;
}
.news--disable-slider .news__cardLink {
	display: block;
	font: 400 24px/1.1 var(--global-font-family);
	text-decoration: none;
	color: var(--color-theme-primary);
}
.news--disable-slider .news__cardLink::after {
	display: inline-block;
	content: '';
	margin-left: 10px;
	width: 20px;
	height: 17px;
	background: url('data:image/svg+xml;utf8,<svg width="20" height="17" viewBox="0 0 20 17" fill="none" xmlns="http://www.w3.org/2000/svg">									<path d="M11.3795 16.33L18.3477 8.665L11.3795 1" stroke="%2300A3E0" stroke-width="2"/><path d="M17.885 8.66504L0 8.66504" stroke="%2300A3E0" stroke-width="2"/></svg>')
		no-repeat center;
	transition: transform 0.3s ease;
}
.news--disable-slider .news__cardLink:hover::after {
	transform: translateX(10px);
}
.news--disable-slider .news__cardLInk svg {
	margin-left: 10px;
}
.news--disable-slider .news-cta {
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.news--disable-slider {
		margin: 133px auto 111px !important;
	}
	.news--disable-slider .news__heading {
		margin-bottom: 40px;
	}
	.news--disable-slider .news__heading h2.wysiwyg-content {
		text-align: left;
	}
	.news--disable-slider .news__cards {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-gap: 22px;
	}
	.news--disable-slider .news__heading {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.news--disable-slider .news_cardImgWrapper {
		height: 203px;
	}
	.news--disable-slider .news__cardMeta {
		max-height: none;
		overflow: visible;
	}
}
