.ia-news-slider {
	--ia-news-primary: var(--iac-brand-light-blue, #047bcb);
	--ia-news-secondary: var(--iac-brand-blue, #093c8b);
	--ia-news-surface: #fff;
	--ia-news-text: #323232;
	--ia-news-muted: #404751;
	--ia-news-border: #d9d9d9;
	--ia-news-gap: 29px;
	background: var(--ia-news-surface);
	color: var(--ia-news-text);
	font-family: var(--iac-font-main) !important;
	margin: 0 auto;
	max-width: none;
	overflow: visible;
	padding: 32px 0 36px;
	width: 100%;
}

.ia-news-slider,
.ia-news-slider * {
	box-sizing: border-box;
}

.ia-news-slider__header {
	margin: 0 0 29px;
}

.ia-news-slider__header-content {
	min-width: 0;
}

.ia-news-slider__heading {
	font-weight: 600;
	margin: 0 0 24px;
	padding: 0 !important;
}

.ia-news-slider__heading span {
	font-weight: 600;
}

.ia-news-slider__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

.ia-news-slider__filter {
	align-items: center;
	background: var(--ia-news-secondary);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 0.76rem;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 38px;
	min-width: 76px;
	padding: 8px 18px;
	text-align: center;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.ia-news-slider__filter:hover,
.ia-news-slider__filter:focus-visible {
	transform: translateY(-1px);
}

.ia-news-slider__filter.is-active {
	background: var(--ia-news-primary);
	border-color: var(--ia-news-primary);
	color: #fff;
}

.ia-news-slider__carousel {
	position: relative;
}

.ia-news-slider__viewport {
	min-width: 0;
	overflow: hidden;
	width: 100%;
}

.ia-news-slider__track {
	display: flex;
	gap: var(--ia-news-gap);
	overflow-x: auto;
	padding: 0 0 12px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.ia-news-slider__track::-webkit-scrollbar {
	display: none;
}

.ia-news-slider__card {
	color: var(--ia-news-text);
	flex: 0 0 calc((100% - (var(--ia-news-gap) * 3)) / 4);
	min-width: 0;
	scroll-snap-align: start;
}

.ia-news-slider__card.is-hidden {
	display: none;
}

.ia-news-slider__image-link {
	background: #e7e7e7;
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.ia-news-slider__image {
	aspect-ratio: 16 / 8;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.ia-news-slider__image--placeholder {
	background:
		linear-gradient(135deg, rgba(4, 123, 203, 0.12), rgba(9, 60, 139, 0.18)),
		#e7e7e7;
}

.ia-news-slider__body {
	display: grid;
	gap: 15px;
	margin-top: 20px;
}

.ia-news-slider__title {
	color: #323232;
	display: -webkit-box;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	overflow: hidden;
	padding: 0 !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ia-news-slider__title a {
	color: #323232;
	font-weight: 700;
	text-decoration: none;
}

.ia-news-slider__title a:hover,
.ia-news-slider__title a:focus-visible {
	color: var(--ia-news-primary);
}

.ia-news-slider__excerpt {
	color: #000;
	font-family: var(--iac-font-main) !important;
	font-weight: 300;
	line-height: 1.55;
	margin: 0;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.ia-news-slider__arrow {
	align-items: center;
	aspect-ratio: 1;
	color: var(--ia-news-secondary);
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	line-height: 1;
	min-width: 0;
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 44px;
	z-index: 2;
}

.ia-news-slider .ia-news-slider__arrow::before {
	content: attr(data-icon);
	font-family: "Font Awesome 5 Free", "FontAwesome", sans-serif;
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
}

.ia-news-slider .ia-news-slider__arrow::after {
	content: none !important;
	display: none !important;
}

.ia-news-slider .ia-news-slider__arrow--prev {
	left: -56px !important;
	right: auto !important;
}

.ia-news-slider .ia-news-slider__arrow--next {
	left: auto !important;
	right: -56px !important;
}

.ia-news-slider__arrow:hover,
.ia-news-slider__arrow:focus-visible {
	color: var(--ia-news-primary);
}

.ia-news-slider__arrow[aria-disabled="true"] {
	color: #a8a8a8 !important;
	cursor: not-allowed;
	opacity: 0.55;
}

.ia-news-slider__arrow[aria-disabled="true"]:hover {
	color: #a8a8a8 !important;
}

.ia-news-slider__arrow.is-hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.ia-news-slider__empty {
	background: #fff;
	border: 1px solid var(--ia-news-border);
	border-radius: 4px;
	color: var(--ia-news-muted);
	margin: 0;
	padding: 20px;
}

.ia-news-slider__empty--filtered {
	margin-top: 20px;
}

@media (max-width: 1024px) {
	.ia-news-slider__card {
		flex-basis: calc((100% - (var(--ia-news-gap) * 2)) / 3);
	}
}

@media (max-width: 760px) {
	.ia-news-slider {
		padding: 28px 0 32px;
		width: calc(100% - 32px);
	}

	.ia-news-slider__arrow {
		width: 30px;
	}

	.ia-news-slider .ia-news-slider__arrow--prev {
		left: -36px !important;
	}

	.ia-news-slider .ia-news-slider__arrow--next {
		right: -36px !important;
	}

	.ia-news-slider__card {
		flex-basis: calc((100% - var(--ia-news-gap)) / 2);
	}
}

@media (max-width: 520px) {
	.ia-news-slider__filters {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ia-news-slider__filter {
		width: 100%;
	}

	.ia-news-slider__arrow {
		font-size: 1.15rem;
		width: 26px;
	}

	.ia-news-slider .ia-news-slider__arrow--prev {
		left: -30px !important;
	}

	.ia-news-slider .ia-news-slider__arrow--next {
		right: -30px !important;
	}

	.ia-news-slider__card {
		flex-basis: 100%;
	}
}
