/* === Основні стилі контейнера === */
.wpmc-kb-container {
	box-sizing: border-box;
	display: flex;
	width: 100%;
}

/* === Ліва колонка (Sidebar) === */
.wpmc-kb-left {
	width: 25%;
	border-left: 0px solid #8a77c3;
	padding-right: 10px;
	overflow-y: auto;
	/* background-color: #f8f5ff; */
	box-sizing: border-box;
}

/* === Заголовок у лівій колонці === */
.wpmc-kb-left-title {
	color: #8a77c3;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-left: 5px;
	font-family: 'Open Sans';
}

/* === Правий блок (Content area) === */
.wpmc-kb-right {
	width: 75%;
	padding-left: 15px;
	box-sizing: border-box;
}

/* Заголовок у правому блоці */
.wpmc-kb-right h2 {
    font-family: 'Open Sans';
	font-size: 24px;
	font-weight: 700;
	color: #8a77c3;
	margin-top: 0;
	margin-bottom: 20px;
}

/* Витяг (excerpt) */
.wpmc-kb-post-excerpt {
	font-family: 'Open Sans';
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
	color: #333;
}

/* === Категорії === */
.wpmc-kb-term,
.wpmc-kb-term-child {
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 500;
	margin-bottom: 10px;
}

.wpmc-kb-term a,
.wpmc-kb-term-child a {
	cursor: pointer;
	text-decoration: none;
	display: block;
	padding: 6px 10px;
	color: #6a55c2;
	border-radius: 6px;
	transition: background-color 0.2s ease;
}

.wpmc-kb-term a:hover,
.wpmc-kb-term-child a:hover {
	background-color: #ece6ff;
}

/* Підкатегорії */
.wpmc-kb-term-child a {
	margin-left: 15px;
}

/* === Записи (пости) === */
.wpmc-kb-post-item a {
	text-decoration: none;
	padding: 4px 8px;
	display: block;
	color: #1a1a23;
	border-radius: 6px;
	transition: background-color 0.2s ease;
}

.wpmc-kb-post-item a:hover {
	background-color: #fba724;
	color: #fff;
}

.wpmc-kb-post-item a[style*="font-weight:bold"] {
	color: #e96be8 !important;
	font-weight: bold;
}

/* Контент запису */
.wpmc-kb-post-content {
	font-family: 'Open Sans';
	font-size: 16px;
	font-weight: 400;
	color: #333;
	line-height: 1.6;
}

/* === Мобільна адаптація === */
@media (max-width: 768px) {
	.wpmc-kb-container {
		position: relative;
		flex-wrap: nowrap;
		overflow-x: hidden;
	}

	.wpmc-kb-left {
		position: fixed;
		top: 150px;
		right: 0; /* 🟣 було left: 0 */
		width: 70%;
		height: 100%;
		background: #121212;
		color: #fff;
		z-index: 1000;
		overflow-y: auto;
		transition: transform 0.3s ease;
		transform: translateX(100%); /* 🟣 було -100% */
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2); /* 🟣 тінь зліва */
	}

	.wpmc-kb-left a {
		color: #fba724;
	}

	.wpmc-kb-left.active {
		transform: translateX(0); /* 🟣 відкривається */
	}

	.wpmc-kb-right {
		width: 100% !important;
		padding: 15px;
	}

	.wpmc-kb-toggle-button {
		display: block;
		position: fixed;
		top: 80px;
		right: 0px;
		z-index: 1001;
		background-color: #8a77c3;
		color: white;
		padding: 10px;
		border-radius: 10px 0px 0px 10px;
		text-align: center;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		font-weight: bold;
		font-size: 14px;
		line-height: 1.2;
		user-select: none;
		cursor: grab;
		touch-action: none;
	}
}


