/* ============================================================
   OSGKC Accordion  –  frontend styles
   ============================================================ */

.osgkc-accordion {
	margin: 1.25em 0;
	border: 1px solid #c8c8c8;
	border-radius: 4px;
	overflow: hidden;
}

/* ── Item wrapper ─────────────────────────────────────────── */

.osgkc-item {
	border-bottom: 1px solid #c8c8c8;
}

.osgkc-item:last-child {
	border-bottom: none;
}

/* ── Header button ────────────────────────────────────────── */

.osgkc-header {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 13px 16px;
	background: #f0f0f0;
	border: none;
	border-radius: 0;
	cursor: pointer;
	text-align: left;
	font-size: 1em;
	font-weight: 600;
	color: #333333;
	transition: background 0.15s ease;
	line-height: 1.4;
}

.osgkc-header:hover {
	background: #e6e6e6;
}

.osgkc-header:focus-visible {
	outline: 3px solid #2271b1;
	outline-offset: -3px;
}

.osgkc-header[aria-expanded="true"] {
	background: #e6e6e6;
}

/* ── Optional header image ────────────────────────────────── */

.osgkc-header-img {
	height: 32px;
	width: auto;
	border-radius: 3px;
	flex-shrink: 0;
}

/* ── Title text ───────────────────────────────────────────── */

.osgkc-title {
	flex: 1;
}

/* ── +/− icon (pure CSS) ──────────────────────────────────── */

.osgkc-icon {
	position: relative;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
}

.osgkc-icon::before,
.osgkc-icon::after {
	content: '';
	position: absolute;
	background: #666;
	border-radius: 1px;
}

/* horizontal bar */
.osgkc-icon::before {
	width: 14px;
	height: 2px;
	top: 6px;
	left: 0;
}

/* vertical bar – rotates to 0 when open */
.osgkc-icon::after {
	width: 2px;
	height: 14px;
	top: 0;
	left: 6px;
	transition: transform 0.2s ease;
}

.osgkc-header[aria-expanded="true"] .osgkc-icon::after {
	transform: rotate(90deg);
}

/* ── Collapsible body ─────────────────────────────────────── */

.osgkc-body[hidden] {
	display: none;
}

.osgkc-accordion .osgkc-item .osgkc-body {
	background: #ffffff;
}

.osgkc-accordion .osgkc-item .osgkc-body-inner {
	padding: 14px 18px 16px;
	background: #ffffff;
	color: #444;
	line-height: 1.65;
	font-size: 0.97em;
}

.osgkc-body-inner > *:first-child { margin-top: 0; }
.osgkc-body-inner > *:last-child  { margin-bottom: 0; }
