.sapc-widget,
.sapc-widget * {
	box-sizing: border-box;
}

.sapc-widget {
	--sapc-gap: 24px;
	--sapc-nav-visible: 3;
	--sapc-active-width: 42%;
	--sapc-nav-width: auto;
	--sapc-sticky-offset: 24px;
	--sapc-sticky-z-index: 2;
	--sapc-container-flex-direction: row;
	--sapc-arrow-size: 40px;
	--sapc-arrow-spacing: 10px;
	--sapc-arrow-offset-x: 0px;
	--sapc-arrow-offset-y: 0px;
	--sapc-pagination-offset-x: 0px;
	--sapc-pagination-offset-y: 0px;
	display: flex;
	flex-direction: var(--sapc-container-flex-direction);
	align-items: stretch;
	gap: var(--sapc-gap);
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
	color: #162033;
	position: relative;
}

.sapc-widget-empty {
	min-height: 1px;
}

.sapc-main-layout-active-left {
	flex-direction: row;
}

.sapc-main-layout-active-right {
	flex-direction: row;
}

.sapc-main-layout-active-top,
.sapc-display-active_above {
	flex-direction: column;
}

.sapc-main-layout-active-bottom,
.sapc-display-active_below {
	flex-direction: column;
}

.sapc-main-layout-active-left .sapc-active-panel,
.sapc-display-active_above .sapc-active-panel {
	order: 0;
}

.sapc-main-layout-active-left .sapc-nav-panel,
.sapc-display-active_above .sapc-nav-panel {
	order: 1;
}

.sapc-main-layout-active-right .sapc-active-panel,
.sapc-display-active_below .sapc-active-panel {
	order: 1;
}

.sapc-main-layout-active-right .sapc-nav-panel,
.sapc-display-active_below .sapc-nav-panel {
	order: 0;
}

.sapc-main-layout-active-top .sapc-active-panel {
	order: 0;
}

.sapc-main-layout-active-top .sapc-nav-panel {
	order: 1;
}

.sapc-main-layout-active-bottom .sapc-active-panel {
	order: 1;
}

.sapc-main-layout-active-bottom .sapc-nav-panel {
	order: 0;
}

.sapc-align-start {
	justify-content: flex-start;
}

.sapc-align-center {
	justify-content: center;
}

.sapc-align-end {
	justify-content: flex-end;
}

.sapc-align-stretch {
	justify-content: stretch;
}

.sapc-valign-top {
	align-items: flex-start;
}

.sapc-valign-middle {
	align-items: center;
}

.sapc-valign-bottom {
	align-items: flex-end;
}

.sapc-valign-stretch,
.sapc-equal-height {
	align-items: stretch;
}

.sapc-active-panel {
	flex: 0 0 var(--sapc-active-width);
	width: var(--sapc-active-width);
	max-width: 100%;
	min-width: 0;
}

.sapc-main-layout-active-top .sapc-active-panel,
.sapc-main-layout-active-bottom .sapc-active-panel,
.sapc-display-active_above .sapc-active-panel,
.sapc-display-active_below .sapc-active-panel {
	flex-basis: auto;
	width: 100%;
}

.sapc-active-sticky .sapc-active-panel {
	position: sticky;
	top: var(--sapc-sticky-offset);
	z-index: var(--sapc-sticky-z-index);
	align-self: flex-start;
}

.sapc-nav-panel {
	position: relative;
	flex: 1 1 var(--sapc-nav-width);
	min-width: 0;
	width: var(--sapc-nav-width);
}

.sapc-display-simple_nav .sapc-nav-panel {
	width: 100%;
}

.sapc-active-card {
	position: relative;
	display: flex;
	flex-direction: var(--sapc-active-flex-direction, var(--sapc-active-default-direction, row));
	align-items: stretch;
	gap: var(--sapc-gap);
	width: 100%;
	min-height: 280px;
	padding: 24px;
	border: 1px solid #d6dde8;
	border-radius: 8px;
	background: #ffffff;
	color: inherit;
	box-shadow: 0 14px 36px rgba(22, 32, 51, 0.1);
	overflow: hidden;
	text-decoration: none;
	transition-property: background-color, border-color, box-shadow, color, opacity, transform;
	transition-duration: 160ms;
}

a.sapc-active-card:hover,
a.sapc-active-card:focus {
	color: inherit;
	text-decoration: none;
}

.sapc-active-card.sapc-overflow-visible {
	overflow: visible;
}

.sapc-card-direction-row .sapc-active-card,
.sapc-active-layout-content_left {
	--sapc-active-default-direction: row;
}

.sapc-card-direction-row-reverse .sapc-active-card {
	--sapc-active-default-direction: row-reverse;
}

.sapc-active-layout-image_left {
	--sapc-active-default-direction: row;
}

.sapc-active-layout-image_right,
.sapc-active-layout-content_left {
	--sapc-active-default-direction: row;
}

.sapc-active-layout-image_left,
.sapc-active-layout-content_left {
	--sapc-active-default-direction: row;
}

.sapc-active-layout-image_top {
	--sapc-active-default-direction: column;
}

.sapc-active-layout-content_top {
	--sapc-active-default-direction: column;
}

.sapc-active-layout-overlay,
.sapc-active-layout-background_overlay {
	display: grid;
	min-height: 320px;
}

.sapc-active-layout-overlay > *,
.sapc-active-layout-background_overlay > * {
	grid-area: 1 / 1;
}

.sapc-active-layout-background_overlay .sapc-active-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.sapc-active-layout-background_overlay .sapc-active-content,
.sapc-active-layout-overlay .sapc-active-content {
	position: relative;
	z-index: 1;
	margin: 24px;
	max-width: min(620px, calc(100% - 48px));
	background: rgba(255, 255, 255, 0.88);
}

.sapc-active-content {
	display: flex;
	flex: 1 1 var(--sapc-active-content-width, 55%);
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	min-width: 0;
	padding: 0;
}

.sapc-active-media {
	position: relative;
	flex: 0 0 var(--sapc-active-image-width, 45%);
	width: var(--sapc-active-image-width, 45%);
	min-height: 220px;
	overflow: hidden;
	border-radius: 8px;
	background: #e9edf3;
}

.sapc-active-layout-image_top .sapc-active-media {
	order: 0;
	width: 100%;
}

.sapc-active-layout-image_top .sapc-active-content {
	order: 1;
}

.sapc-active-layout-content_top .sapc-active-content {
	order: 0;
}

.sapc-active-layout-content_top .sapc-active-media {
	order: 1;
	width: 100%;
}

.sapc-active-layout-image_left .sapc-active-media {
	order: 0;
}

.sapc-active-layout-image_left .sapc-active-content {
	order: 1;
}

.sapc-active-layout-content_left .sapc-active-content {
	order: 0;
}

.sapc-active-layout-content_left .sapc-active-media,
.sapc-active-layout-image_right .sapc-active-media {
	order: 1;
}

.sapc-active-layout-image_right .sapc-active-content {
	order: 0;
}

.sapc-active-content-align-left {
	text-align: left;
	align-items: flex-start;
}

.sapc-active-content-align-center {
	text-align: center;
	align-items: center;
}

.sapc-active-content-align-right {
	text-align: right;
	align-items: flex-end;
}

.sapc-active-content-valign-top .sapc-active-content {
	justify-content: flex-start;
}

.sapc-active-content-valign-center .sapc-active-content {
	justify-content: center;
}

.sapc-active-content-valign-bottom .sapc-active-content {
	justify-content: flex-end;
}

.sapc-active-content-valign-space-between .sapc-active-content {
	justify-content: space-between;
}

.sapc-overlay-top-left .sapc-active-content,
.sapc-overlay-top-left .sapc-nav-content {
	align-self: start;
	justify-self: start;
}

.sapc-overlay-top-center .sapc-active-content,
.sapc-overlay-top-center .sapc-nav-content {
	align-self: start;
	justify-self: center;
}

.sapc-overlay-top-right .sapc-active-content,
.sapc-overlay-top-right .sapc-nav-content {
	align-self: start;
	justify-self: end;
}

.sapc-overlay-center-left .sapc-active-content,
.sapc-overlay-center-left .sapc-nav-content {
	align-self: center;
	justify-self: start;
}

.sapc-overlay-center .sapc-active-content,
.sapc-overlay-center .sapc-nav-content {
	align-self: center;
	justify-self: center;
}

.sapc-overlay-center-right .sapc-active-content,
.sapc-overlay-center-right .sapc-nav-content {
	align-self: center;
	justify-self: end;
}

.sapc-overlay-bottom-left .sapc-active-content,
.sapc-overlay-bottom-left .sapc-nav-content {
	align-self: end;
	justify-self: start;
}

.sapc-overlay-bottom-center .sapc-active-content,
.sapc-overlay-bottom-center .sapc-nav-content {
	align-self: end;
	justify-self: center;
}

.sapc-overlay-bottom-right .sapc-active-content,
.sapc-overlay-bottom-right .sapc-nav-content {
	align-self: end;
	justify-self: end;
}

.sapc-image,
.sapc-card-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sapc-media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	background: linear-gradient(135deg, #eef2f7, #d8e0ec);
}

.sapc-active-heading {
	margin: 0;
	color: #162033;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.sapc-active-subtitle {
	color: inherit;
	font-size: 1rem;
	line-height: 1.55;
	overflow-wrap: anywhere;
	opacity: 0.78;
}

.sapc-card-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	max-width: 100%;
	padding: 10px 16px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: #1457d9;
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	text-decoration: none;
	overflow-wrap: anywhere;
	transition-property: background-color, color, border-color, transform, opacity;
	transition-duration: 160ms;
}

.sapc-card-action:hover,
.sapc-card-action:focus {
	color: #ffffff;
	text-decoration: none;
}

.sapc-card-action:focus-visible,
.sapc-nav-card:focus-visible,
.sapc-arrow:focus-visible,
.sapc-pagination:focus-visible,
.sapc-pagination-dot:focus-visible,
.sapc-nav-track:focus-visible {
	outline: 2px solid #1457d9;
	outline-offset: 3px;
}

.sapc-nav-controls {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: var(--sapc-arrow-spacing);
	margin-bottom: var(--sapc-arrow-spacing);
	transform: translate(var(--sapc-arrow-offset-x), var(--sapc-arrow-offset-y));
	z-index: 2;
}

.sapc-arrow-position-top-left .sapc-nav-controls,
.sapc-arrow-position-bottom-left .sapc-nav-controls {
	justify-content: flex-start;
}

.sapc-arrow-position-top-center .sapc-nav-controls,
.sapc-arrow-position-bottom-center .sapc-nav-controls {
	justify-content: center;
}

.sapc-arrow-position-top-right .sapc-nav-controls,
.sapc-arrow-position-bottom-right .sapc-nav-controls {
	justify-content: flex-end;
}

.sapc-arrow-position-bottom-left .sapc-nav-controls,
.sapc-arrow-position-bottom-center .sapc-nav-controls,
.sapc-arrow-position-bottom-right .sapc-nav-controls {
	order: 3;
	margin-top: var(--sapc-arrow-spacing);
	margin-bottom: 0;
}

.sapc-arrow-position-inside-sides .sapc-nav-controls,
.sapc-arrow-position-outside-sides .sapc-nav-controls,
.sapc-arrow-position-custom .sapc-nav-controls {
	position: absolute;
	inset: 50% auto auto 0;
	width: 100%;
	justify-content: space-between;
	pointer-events: none;
}

.sapc-arrow-position-inside-sides .sapc-arrow,
.sapc-arrow-position-outside-sides .sapc-arrow,
.sapc-arrow-position-custom .sapc-arrow {
	pointer-events: auto;
}

.sapc-arrow-position-outside-sides .sapc-arrow-prev {
	transform: translateX(calc(-100% - var(--sapc-arrow-spacing)));
}

.sapc-arrow-position-outside-sides .sapc-arrow-next {
	transform: translateX(calc(100% + var(--sapc-arrow-spacing)));
}

.sapc-arrow-position-custom .sapc-arrow-prev {
	transform: translate(var(--sapc-prev-offset-x, 0px), var(--sapc-prev-offset-y, 0px));
}

.sapc-arrow-position-custom .sapc-arrow-next {
	transform: translate(var(--sapc-next-offset-x, 0px), var(--sapc-next-offset-y, 0px));
}

.sapc-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--sapc-arrow-size);
	height: var(--sapc-arrow-size);
	min-width: var(--sapc-arrow-size);
	padding: 0;
	border: 1px solid #c6cfdd;
	border-radius: 999px;
	background: #ffffff;
	color: #162033;
	font: inherit;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transition-property: background-color, border-color, color, opacity, transform;
	transition-duration: 160ms;
}

.sapc-arrow:hover,
.sapc-arrow:focus {
	background: #f3f6fb;
	color: #162033;
}

.sapc-arrow:disabled {
	opacity: 0.45;
	cursor: default;
}

.sapc-hide-disabled-arrows .sapc-arrow:disabled {
	visibility: hidden;
}

.sapc-arrows-hover-only .sapc-nav-controls {
	opacity: 0;
	transition: opacity 160ms ease;
}

.sapc-arrows-hover-only:hover .sapc-nav-controls,
.sapc-arrows-hover-only:focus-within .sapc-nav-controls {
	opacity: 1;
}

.sapc-arrow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	line-height: 1;
}

.sapc-nav-track {
	display: flex;
	gap: var(--sapc-gap);
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.sapc-nav-track::-webkit-scrollbar {
	display: none;
}

.sapc-no-snap .sapc-nav-track,
.sapc-free-scroll .sapc-nav-track {
	scroll-snap-type: none;
}

.sapc-nav-track.sapc-is-dragging {
	cursor: grabbing;
	user-select: none;
}

.sapc-orientation-horizontal .sapc-nav-track {
	flex-direction: row;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
}

.sapc-orientation-horizontal .sapc-nav-item {
	flex: 0 0 var(--sapc-nav-card-width, calc((100% - (var(--sapc-gap) * (var(--sapc-nav-visible) - 1))) / var(--sapc-nav-visible)));
	min-width: 0;
	scroll-snap-align: start;
}

.sapc-orientation-vertical .sapc-nav-track {
	flex-direction: column;
	max-height: calc((112px * var(--sapc-nav-visible)) + (var(--sapc-gap) * (var(--sapc-nav-visible) - 1)));
	overflow-x: hidden;
	overflow-y: auto;
	scroll-snap-type: y mandatory;
}

.sapc-orientation-vertical .sapc-nav-item {
	flex: 0 0 auto;
	min-width: 0;
	scroll-snap-align: start;
}

.sapc-no-snap.sapc-orientation-horizontal .sapc-nav-track,
.sapc-free-scroll.sapc-orientation-horizontal .sapc-nav-track,
.sapc-no-snap.sapc-orientation-vertical .sapc-nav-track,
.sapc-free-scroll.sapc-orientation-vertical .sapc-nav-track {
	scroll-snap-type: none;
}

.sapc-nav-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	min-height: 104px;
	padding: 14px;
	border: 1px solid #d6dde8;
	border-radius: 8px;
	background: #ffffff;
	color: #162033;
	text-decoration: none;
	overflow: hidden;
	transition-property: background-color, border-color, color, box-shadow, opacity, transform;
	transition-duration: 160ms;
}

.sapc-nav-card:hover,
.sapc-nav-card:focus {
	color: #162033;
	text-decoration: none;
}

.sapc-nav-card.sapc-is-active {
	border-color: #1457d9;
	background: #eef5ff;
	color: #102d6b;
	box-shadow: inset 0 0 0 1px #1457d9;
}

.sapc-nav-media {
	position: relative;
	flex: 0 0 var(--sapc-nav-image-size, 72px);
	width: var(--sapc-nav-image-size, 72px);
	min-width: var(--sapc-nav-image-size, 72px);
	min-height: var(--sapc-nav-image-size, 72px);
	overflow: hidden;
	border-radius: 8px;
	background: #e9edf3;
}

.sapc-nav-content {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.sapc-nav-heading {
	color: inherit;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.sapc-nav-subtitle {
	color: inherit;
	font-size: 0.8125rem;
	line-height: 1.35;
	opacity: 0.72;
	overflow-wrap: anywhere;
}

.sapc-nav-label {
	display: inline-flex;
	align-self: flex-start;
	color: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
	text-decoration: none;
	opacity: 0.78;
	overflow-wrap: anywhere;
}

a.sapc-nav-label:hover,
a.sapc-nav-label:focus {
	color: inherit;
	text-decoration: underline;
}

.sapc-active-badge {
	display: inline-flex;
	align-self: flex-start;
	padding: 4px 8px;
	border-radius: 999px;
	background: #1457d9;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
}

.sapc-nav-layout-image_top,
.sapc-nav-layout-image_bottom {
	flex-direction: column;
	align-items: stretch;
}

.sapc-nav-layout-image_bottom .sapc-nav-media {
	order: 1;
	width: 100%;
}

.sapc-nav-layout-image_bottom .sapc-nav-content {
	order: 0;
}

.sapc-nav-layout-image_top .sapc-nav-media {
	order: 0;
	width: 100%;
}

.sapc-nav-layout-image_top .sapc-nav-content {
	order: 1;
}

.sapc-nav-layout-image_right {
	flex-direction: row-reverse;
}

.sapc-nav-layout-overlay,
.sapc-nav-layout-background {
	display: grid;
	min-height: 180px;
}

.sapc-nav-layout-overlay > *,
.sapc-nav-layout-background > * {
	grid-area: 1 / 1;
}

.sapc-nav-layout-overlay .sapc-nav-media,
.sapc-nav-layout-background .sapc-nav-media {
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.sapc-nav-layout-background .sapc-nav-media {
	position: absolute;
	inset: 0;
}

.sapc-nav-layout-overlay .sapc-nav-content,
.sapc-nav-layout-background .sapc-nav-content {
	position: relative;
	z-index: 1;
	margin: 12px;
	padding: 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.88);
}

.sapc-nav-layout-text_only .sapc-nav-media,
.sapc-nav-layout-image_only .sapc-nav-content {
	display: none;
}

.sapc-nav-layout-image_only {
	min-height: var(--sapc-nav-image-size, 120px);
	padding: 0;
}

.sapc-nav-layout-image_only .sapc-nav-media {
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.sapc-nav-content-align-left {
	text-align: left;
}

.sapc-nav-content-align-left .sapc-nav-content,
.sapc-nav-content-align-left .sapc-nav-label,
.sapc-nav-content-align-left .sapc-active-badge {
	align-items: flex-start;
	align-self: flex-start;
}

.sapc-nav-content-align-center {
	text-align: center;
}

.sapc-nav-content-align-center .sapc-nav-content,
.sapc-nav-content-align-center .sapc-nav-label,
.sapc-nav-content-align-center .sapc-active-badge {
	align-items: center;
	align-self: center;
}

.sapc-nav-content-align-right {
	text-align: right;
}

.sapc-nav-content-align-right .sapc-nav-content,
.sapc-nav-content-align-right .sapc-nav-label,
.sapc-nav-content-align-right .sapc-active-badge {
	align-items: flex-end;
	align-self: flex-end;
}

.sapc-nav-content-valign-top {
	align-items: flex-start;
}

.sapc-nav-content-valign-center {
	align-items: center;
}

.sapc-nav-content-valign-bottom {
	align-items: flex-end;
}

.sapc-pagination {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 6px;
	margin: 16px 0 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #d6dde8;
	appearance: none;
	cursor: pointer;
	overflow: hidden;
	transform: translate(var(--sapc-pagination-offset-x), var(--sapc-pagination-offset-y));
}

.sapc-pagination-position-above .sapc-pagination {
	margin: 0 0 16px;
}

.sapc-pagination-position-left .sapc-pagination,
.sapc-pagination-position-right .sapc-pagination {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 6px;
	height: 100%;
	margin: 0;
}

.sapc-pagination-position-left .sapc-pagination {
	left: 0;
}

.sapc-pagination-position-right .sapc-pagination {
	right: 0;
}

.sapc-pagination-position-inside-top .sapc-pagination,
.sapc-pagination-position-inside-bottom .sapc-pagination,
.sapc-pagination-position-custom .sapc-pagination {
	position: absolute;
	left: 16px;
	right: 16px;
	z-index: 2;
	margin: 0;
}

.sapc-pagination-position-inside-top .sapc-pagination,
.sapc-pagination-position-custom .sapc-pagination {
	top: 16px;
}

.sapc-pagination-position-inside-bottom .sapc-pagination {
	bottom: 16px;
}

.sapc-pagination-align-left .sapc-pagination {
	margin-right: auto;
}

.sapc-pagination-align-center .sapc-pagination {
	margin-left: auto;
	margin-right: auto;
}

.sapc-pagination-align-right .sapc-pagination {
	margin-left: auto;
}

.sapc-pagination-align-stretch .sapc-pagination {
	width: 100%;
}

.sapc-pagination-progress {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: #1457d9;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 160ms ease;
}

.sapc-pagination-position-left .sapc-pagination-progress,
.sapc-pagination-position-right .sapc-pagination-progress {
	transform: scaleY(0);
	transform-origin: center top;
}

.sapc-pagination-type-scrollbar {
	height: 10px;
}

.sapc-pagination-type-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	height: auto;
	min-height: 16px;
	background: transparent;
	border-radius: 0;
	overflow: visible;
}

.sapc-pagination-dot {
	display: inline-flex;
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #c6cfdd;
	cursor: pointer;
}

.sapc-pagination-dot.sapc-is-active {
	background: #1457d9;
}

.sapc-pagination-fraction {
	justify-content: center;
	width: auto;
	height: auto;
	background: transparent;
	color: #162033;
	font-weight: 700;
	border-radius: 0;
	cursor: default;
	overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
	.sapc-nav-track {
		scroll-behavior: auto;
	}

	.sapc-card-action,
	.sapc-arrow,
	.sapc-nav-card,
	.sapc-active-card,
	.sapc-pagination-progress {
		transition: none;
	}
}

@media (max-width: 1024px) {
	.sapc-reverse-responsive {
		flex-direction: column-reverse;
	}

	.sapc-widget {
		--sapc-active-width: 46%;
	}

	.sapc-active-heading {
		font-size: 1.75rem;
	}
}

@media (max-width: 767px) {
	.sapc-widget {
		flex-direction: column;
	}

	.sapc-reverse-responsive {
		flex-direction: column-reverse;
	}

	.sapc-active-panel {
		position: relative;
		top: auto;
		flex-basis: auto;
		width: 100%;
	}

	.sapc-active-sticky .sapc-active-panel {
		position: relative;
		top: auto;
	}

	.sapc-nav-panel {
		width: 100%;
	}

	.sapc-active-card,
	.sapc-card-direction-row .sapc-active-card,
	.sapc-card-direction-row-reverse .sapc-active-card,
	.sapc-active-layout-image_left,
	.sapc-active-layout-content_left,
	.sapc-active-layout-image_right {
		--sapc-active-default-direction: column;
		min-height: 0;
	}

	.sapc-active-media {
		flex-basis: auto;
		width: 100%;
		min-height: 180px;
	}

	.sapc-active-heading {
		font-size: 1.5rem;
	}

	.sapc-nav-controls {
		justify-content: flex-start;
	}

	.sapc-arrow-position-inside-sides .sapc-nav-controls,
	.sapc-arrow-position-outside-sides .sapc-nav-controls,
	.sapc-arrow-position-custom .sapc-nav-controls {
		position: static;
		width: auto;
		justify-content: flex-start;
		pointer-events: auto;
	}

	.sapc-arrow-position-outside-sides .sapc-arrow-prev,
	.sapc-arrow-position-outside-sides .sapc-arrow-next {
		transform: none;
	}

	.sapc-nav-card {
		align-items: flex-start;
	}
}
