.via-accordion {
	width: 100%;
	border-bottom: 1px solid #222;
}

.via-item {
	border-top: 1px solid #222;
}

.via-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 24px;
	padding: 28px 8px;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
}

.via-header:focus-visible {
	outline: 2px solid #8a5a2b;
	outline-offset: 2px;
}

.via-header-left {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
}

.via-left-image {
	height: 40px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

.via-header-right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.via-right-text {
	font-size: 17px;
	color: #444;
	white-space: nowrap;
}

.via-right-image {
	height: 22px;
	width: auto;
	object-fit: contain;
	display: block;
}

.via-arrow {
	display: inline-flex;
	color: #8a5a2b;
	transition: transform .25s ease;
}

/* Panah default mengarah ke atas (^) seperti screenshot; berputar saat terbuka */
.via-item.is-open .via-arrow {
	transform: rotate(180deg);
}

.via-panel {
	overflow: hidden;
}

.via-panel-inner {
	padding: 0 8px 28px;
}

/* Responsive */
@media (max-width: 600px) {
	.via-header {
		padding: 18px 6px;
		gap: 12px;
	}
	.via-left-image { height: 30px; }
	.via-right-text { font-size: 14px; }
	.via-right-image { height: 18px; }
}
