/* 2026 accordion styles */

details.accordion-item {
	background: #ffffff;
	border-top: #d5d5d5 1px solid;
	min-height: 5rem;
	padding: 2rem 2rem 2rem 1.125rem;
}

details.accordion-item:hover {
	background: #f8f8f8;
}

details.accordion-item > summary {
	font-size: 1.5rem;
	font-weight: 700;
	list-style: none;

	display: flex;
	align-items: center; /* centers arrow + text vertically */
	gap: 12px; /* control space between arrow and text */

	cursor: pointer;
}

details.accordion-item > summary::-webkit-details-marker {
	display: none;
}

/* Optional: hide marker in browsers that support ::marker */
details.accordion-item > summary::marker {
	display: none;
}

/* Custom arrow */
details.accordion-item > summary::before {
	content: "";
	width: 21px;
	height: 11px;
	flex-shrink: 0;

	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="11" viewBox="0 0 21 11" fill="none"><path d="M17.3828 0.911133C17.9237 1.45446 17.9363 2.34155 17.3809 2.88965L10.1426 10.0898L10.1426 10.0908L10.0361 10.1865C9.48519 10.6333 8.67332 10.6031 8.16016 10.0898L8.15918 10.0908L0.913086 2.89355C0.362895 2.34674 0.360168 1.45669 0.915039 0.911132C1.46059 0.374816 2.34882 0.36327 2.89844 0.915038L9.14551 7.12207L15.3975 0.90918C15.9459 0.364405 16.8356 0.361695 17.3828 0.911133Z" fill="%23AE6042" stroke="%23AE6042"/></svg>');
	background-repeat: no-repeat;
	background-size: contain;

	transform: rotate(-90deg);
	transform-origin: center;
	transition: transform 0.2s ease;
}

details.accordion-item[open] > summary::before {
	transform: rotate(0deg);
}

details.accordion-item[open] {
	border-bottom: #4e738a 2px solid;
}