/* Nested Accordion 85b623d3 */

.na-85b623d3-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.na-85b623d3-item {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e0e0e0;
}

/* Header - Flexbox Container */
.na-85b623d3-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	cursor: pointer;
	border: none;
	outline: none;
	text-align: left;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	appearance: none;
	-webkit-appearance: none;
}

.na-85b623d3-header:focus-visible {
	outline: 2px solid #0073aa;
	outline-offset: -2px;
}

.na-85b623d3-header.na-85b623d3-icon-left {
	flex-direction: row;
}

/* Nested Header Inner - Icon + Text Block */
.na-85b623d3-header-inner {
	display: flex;
	flex: 1;
	min-width: 0;
	align-items: center;
	gap: 10px;
}

.na-85b623d3-header-inner.na-85b623d3-header-layout-row {
	flex-direction: row;
	align-items: center;
}

.na-85b623d3-header-inner.na-85b623d3-header-layout-column {
	flex-direction: column;
	align-items: flex-start;
}

/* Header Icon */
.na-85b623d3-header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
}

/* Header Text Block */
.na-85b623d3-header-text {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.na-85b623d3-header-title {
	font-weight: 600;
	margin: 0;
	padding: 0;
	line-height: 1.3;
}

.na-85b623d3-header-desc {
	font-size: 0.85em;
	opacity: 0.8;
	line-height: 1.4;
}

.na-85b623d3-header-extra {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 4px;
}

/* Toggle Icon */
.na-85b623d3-toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
}

.na-85b623d3-toggle-icon .na-85b623d3-icon-opened {
	display: none;
}

.na-85b623d3-toggle-icon .na-85b623d3-icon-closed {
	display: inline-flex;
}

.na-85b623d3-item.na-85b623d3-active .na-85b623d3-toggle-icon .na-85b623d3-icon-opened {
	display: inline-flex;
}

.na-85b623d3-item.na-85b623d3-active .na-85b623d3-toggle-icon .na-85b623d3-icon-closed {
	display: none;
}

/* Content Wrapper - Animated */
.na-85b623d3-content-wrapper {
	max-height: 0;
	overflow: hidden;
	transition: max-height 350ms ease;
}

.na-85b623d3-item.na-85b623d3-active .na-85b623d3-content-wrapper {
	max-height: none;
}

/* Content - Flexbox Container */
.na-85b623d3-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.na-85b623d3-content > * {
	max-width: 100%;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	.na-85b623d3-content-wrapper {
		transition: none;
	}
}
