
.d2cav9 {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.d2cav9-column {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.d2cav9-item-shell {
	width: 100%;
}

.d2cav9-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 16px 0;
}

.d2cav9-column > .d2cav9-item-shell:first-child .d2cav9-item {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.d2cav9-heading {
	margin: 0;
}

.d2cav9-title {
	width: 100%;
	background: none;
	border: 0;
	padding: 0;
	text-align: left;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	color: #c8ff7a;
	font-size: 20px;
	line-height: 1.3;
}

.d2cav9-title-text {
	display: block;
	flex: 1 1 auto;
}

.d2cav9-icon {
	position: relative;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	margin-top: 4px;
}

.d2cav9-icon::before,
.d2cav9-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 1.5px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.d2cav9-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

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

.d2cav9-panel {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: height 0.35s ease, opacity 0.25s ease;
}

.d2cav9-item.is-open .d2cav9-panel {
	opacity: 1;
}

.d2cav9-panel-inner {
	padding-top: 14px;
	color: #dddddd;
	line-height: 1.7;
}

.d2cav9-panel-inner > *:last-child {
	margin-bottom: 0;
}

.d2cav9-source {
	display: none !important;
}

.d2cav9-item-shell.captured-from-sibling {
	margin: 0 !important;
}

@media (max-width: 980px) {
	.d2cav9 {
		flex-direction: column;
		gap: 0;
	}
	.d2cav9-column {
		width: 100%;
	}
}
