/* assets/ss-reveal.css */

.ss-reveal {
	margin: 0;
	overflow-anchor: none;

	/* Prevent fixed headers from covering anchored sections */
	scroll-margin-top: 120px;
}

.ss-reveal__h2 {
	margin: 0;
	text-align: center;
	color: white;
	font-size: 24px;
	margin-bottom: 0;
	padding-bottom: 0;
}

.ss-reveal__trigger {
	all: unset;
	display: inline-block;
	cursor: pointer;
	line-height: 1.2;
}

.ss-reveal__title {
	display: inline;
	position: relative;
	transition: opacity 180ms ease;
}

.ss-reveal__trigger:hover .ss-reveal__title::after,
.ss-reveal__trigger:focus-visible .ss-reveal__title::after {
	opacity: 0.25;
	transform: scaleX(1);
}

.ss-reveal__panel {
	margin-top: 0;
	overflow-anchor: none;
}

/* Calm, premium S-curve */
.ss-reveal__inner {
	overflow: hidden;
	max-height: 0;
	will-change: max-height;
	transition-property: max-height;
	transition-duration: 0.75s;
	transition-timing-function: cubic-bezier(0.77, 0, 0.23, 1);
	font-size: 16px;
}

.ss-reveal.is-open .ss-reveal__inner {
	transition-duration: 1.25s;
	transition-timing-function: cubic-bezier(0.77, 0, 0.23, 1);
	
}

.ss-reveal__content {
	padding-top: 12px;
	color: white;
	padding: 15px;
	border-left: 1px solid #fbb03b;
	margin-top: 40px;
	max-width: 1080px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.ss-reveal.is-disabled .ss-reveal__title {
	cursor: default;
}

.ss-reveal.is-content-only .ss-reveal__content {
	margin-top: 0;
}

/* Prevent margin collapse weirdness inside expanded content */
.ss-reveal__content > :first-child { margin-top: 0; }
.ss-reveal__content > :last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
	.ss-reveal__title,
	.ss-reveal__title::after,
	.ss-reveal__inner {
		transition: none !important;
	}
}
@media (max-width: 981px) {
	.ss-reveal__content {
		max-width: 95%;
		width: 95%;
}
