/**
 * Block: Accordion (prefix acc_)
 * Two flex columns (left = 2nd,4th,6th… right = 1st,3rd,5th…). Height animated via JS; 0 when closed.
 */

 .acc_block {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 var(--global-padding, 32px);
	z-index: 5;
	position: relative;
}

.acc_list {
	display: flex;
	flex-direction: row;
	gap: 56px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

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

.acc_item {
	display: flex;
	flex-direction: column;
	background: transparent;
	border-bottom: 1px solid #E5E5E5;
}

.acc_item_head {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 16px 0px;
	text-align: right;
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--color-text, #151515);
	transition: background-color 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.acc_item_head:hover {
	background: rgba(0, 0, 0, 0.02);
}

.acc_item_icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc_item.is_open .acc_item_icon {
	transform: rotate(180deg);
}

.acc_item_icon_img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.acc_item_heading {
	flex: 1;
	min-width: 0;
}

.acc_item_content {
	height: 0;
	overflow: hidden;
	transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
}

.acc_item_content_inner {
	min-height: 0;
	overflow: hidden;
	padding: 0;
}

.acc_item.is_open .acc_item_content_inner {
	padding-bottom: 18px;
}

.acc_item_content_inner,
.acc_item_content_inner p {
	color: var(--color-text, #151515);
	margin: 0 0 0.5em;
}

.acc_item_content_inner p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.acc_list {
		flex-direction: column;
		gap: 0;
	}

	.acc_item_content_inner{
		font-size: 18px;
        line-height: 23px;
	}
	
	.acc_item_head {
		padding: 18px 0px;
	}
}
