/* Simple Accordion – Styles */

.sa-accordion {
	max-width: 100%;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
	font-family: inherit;
}

.sa-item {
	border-bottom: 1px solid #e0e0e0;
}

.sa-item:last-child {
	border-bottom: none;
}

.sa-item-heading {
	margin: 0;
}

.sa-item-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding: 14px 18px;
	background: #f7f7f7;
	border: none;
	cursor: pointer;
	font-size: 1em;
	font-weight: 600;
	text-align: left;
	color: #23282d;
	transition: background-color 0.15s ease-in-out;
}

.sa-item-trigger:hover,
.sa-item-trigger:focus-visible {
	background: #eeeeee;
}

.sa-item-trigger:focus-visible {
	outline: 2px solid #2271b1;
	outline-offset: -2px;
}

.sa-item.is-open .sa-item-trigger {
	background: #eeeeee;
}

.sa-item-title {
	flex: 1;
}

.sa-item-icon {
	position: relative;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.sa-item-icon::before,
.sa-item-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #23282d;
	transition: transform 0.2s ease-in-out;
}

.sa-item-icon::before {
	width: 14px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.sa-item-icon::after {
	width: 2px;
	height: 14px;
	transform: translate(-50%, -50%);
}

.sa-item.is-open .sa-item-icon::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.sa-item-panel {
	background: #fff;
}

.sa-item-panel-inner {
	padding: 16px 18px;
}

.sa-item-panel-inner p:first-child {
	margin-top: 0;
}

.sa-item-panel-inner p:last-child {
	margin-bottom: 0;
}
