.aci-read-more-boundary {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	width: 100vw;
	max-height: 180px;
	margin: 24px calc(50% - 50vw) -50px;
	overflow: hidden;
	padding: 76px max(18px, calc((100vw - 1456px) / 2)) 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(24, 128, 203, 0.95) 58%, #080f47 100%);
	opacity: 1;
	text-align: center;
	transform: translateY(0);
	transition: max-height 0.55s ease-in, opacity 0.38s ease-in, padding 0.55s ease-in, transform 0.42s ease-in;
	will-change: max-height, opacity, padding, transform;
}

.aci-read-more-boundary.is-expanded {
	max-height: 0;
	opacity: 0;
	padding-top: 0;
	padding-bottom: 0;
	pointer-events: none;
	transform: translateY(34px);
}

.aci-read-more-boundary[hidden] {
	display: none !important;
}

.aci-read-more-toggle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	border: 0;
	background: transparent;
	color: #0f3d87;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	padding: 10px 18px;
	text-transform: uppercase;
}

.aci-read-more-toggle:hover,
.aci-read-more-toggle:focus {
	color: #ed7d21;
	outline: none;
}

.aci-read-more-toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.aci-read-more-icon {
	display: block;
	width: 22px;
	height: 22px;
	border-right: 3px solid currentColor;
	border-bottom: 3px solid currentColor;
	transform: rotate(45deg);
}

.aci-read-more-content {
	--aci-read-more-content-gap: 50px;
	display: flow-root;
	max-height: 0;
	margin-top: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(28px);
	transition: max-height 0.68s ease, margin-top 0.68s ease, opacity 0.48s ease, transform 0.58s ease;
	will-change: max-height, margin-top, opacity, transform;
}

.aci-read-more-content.is-expanded {
	margin-top: var(--aci-read-more-content-gap);
	opacity: 1;
	transform: translateY(0);
	will-change: auto;
}

.aci-read-more-debug-toggle {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 100000;
	border: 0;
	border-radius: 999px;
	background: #0f3d87;
	box-shadow: 0 8px 24px rgba(15, 61, 135, 0.24);
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	padding: 12px 18px;
}

.aci-read-more-debug-toggle:hover,
.aci-read-more-debug-toggle:focus {
	background: #ed7d21;
	outline: none;
}

.aci-read-more-debug-toggle:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.aci-read-more-boundary,
	.aci-read-more-content {
		transition: none;
	}
}
