.he-insights-swiper {
	--he-insights-swiper-nav-offset: 3rem;
	position: relative;
	padding-inline: var(--he-insights-swiper-nav-offset);
}

.he-insights-swiper .swiper {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-inline: auto;
}

.he-insights-swiper__viewport.swiper:not(.swiper-initialized) {
	opacity: 0;
}

.he-insights-swiper__viewport.swiper.swiper-initialized {
	opacity: 1;
	transition: opacity 180ms ease;
}

.he-insights-swiper.is-navigation-hidden {
	padding-inline: 0;
}

.he-insights-swiper .swiper-wrapper {
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
	box-sizing: content-box;
	transform: translate3d(0, 0, 0);
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, ease);
	will-change: transform;
}

.he-insights-swiper .swiper-slide {
	position: relative;
	display: flex;
	height: auto;
	flex-shrink: 0;
	width: 100%;
	transform: translate3d(0, 0, 0);
}

.he-insights-swiper__slide {
	height: auto;
}

.he-insights-swiper__card {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.he-insights-swiper__media {
	overflow: hidden;
	aspect-ratio: 1 / 0.74;
	background: #e7ecf1;
}

.he-insights-swiper__image {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover !important;
}

.he-insights-swiper__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding-top: 1.5rem;
	align-items: flex-start;
}

.he-insights-swiper__title {
	margin: 0;
	color: #0d4f86;
	font-size: clamp(1.9rem, 2vw, 2.5rem);
	font-weight: 700;
	line-height: 1.04;
}

.he-insights-swiper__subtitle {
	margin: 0.5rem 0 0;
	color: #1c66ab;
	font-size: 1.05rem;
	line-height: 1.35;
}

.he-insights-swiper__excerpt {
	margin-top: 0.85rem;
	color: #333333;
	font-size: 1rem;
	line-height: 1.35;
}

.he-insights-swiper__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 13.75rem;
	margin-top: auto !important;
	padding: 0.85rem 1.5rem;
	border: 1px solid #d2d7de;
	border-radius: 999px;
	color: #2d2d2d;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.he-insights-swiper__button:hover,
.he-insights-swiper__button:focus-visible {
	background: #0d4f86;
	border-color: #0d4f86;
	color: #ffffff;
}

.he-insights-swiper__nav {
    position: absolute;
    top: 45%;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    cursor: pointer !important;
    transform: translateY(-50%);
    transition: background-color 180ms ease, opacity 180ms ease;
}

.he-insights-swiper__nav::before {
	content: "";
	display: block;
	width: 1.15rem;
	height: 1.15rem;
	margin: auto;
	border-top: 3px solid #acacac;
	border-right: 3px solid #acacac;
	transition: border-color 180ms ease;
}

.he-insights-swiper__nav--prev {
	left: 0;
}

.he-insights-swiper__nav--prev::before {
	transform: rotate(-135deg);
}

.he-insights-swiper__nav--next {
	right: 0;
}

.he-insights-swiper__nav--next::before {
	transform: rotate(45deg);
}

.he-insights-swiper__nav.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

.he-insights-swiper__nav.swiper-button-lock {
	display: none;
}

.he-insights-swiper.is-empty .he-insights-swiper__viewport {
	display: none;
}

.he-insights-swiper.is-empty .he-insights-swiper__nav {
	display: none;
}

.he-insights-swiper__empty {
	margin: 0;
	color: #333333;
}

@media (max-width: 1024px) {
	.he-insights-swiper {
		--he-insights-swiper-nav-offset: 2rem;
	}
}

@media (max-width: 767px) {
	.he-insights-swiper {
		padding-inline: 0;
	}

	.he-insights-swiper__nav {
		display: none;
	}

	.he-insights-swiper__title {
		font-size: 1.8rem;
	}
}
