.btm-asm-archive-sidebar {
	border-radius: 8px;
    margin-top: -24px !important;
	margin-bottom: -24px !important;
    padding: 16px;
    background: #fcfcfc;
    box-shadow: 0 0 6px -3px #00000061;
}

.btm-asm-filter-section {
	margin-bottom: 20px;
}

.btm-asm-filter-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: #313131;
}

/* === Categories (vertical) === */
.btm-asm-category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.btm-asm-category-list li {
	margin: 8px 0;
}
ul.btm-asm-category-list { padding: 0; }

.btm-asm-category-link {
	display: block;
	padding: 10px 12px;
	text-decoration: none;
	border-radius: 6px;
	color: #181818;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	background: #ecedf0;
}
.btm-asm-category-link:hover {
	color: #292929;
	background: #d0d7eb;
}
.btm-asm-category-link.active {
	color: #292929;
	background: #dee3f4;
}

/* === Access pills === */
.btm-asm-access-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 8px 0;
}
.btm-asm-pill {
	padding: 10px 14px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}
.btm-asm-pill-access {
	background: #ecedf0;
	color: #000000;
}
.btm-asm-pill-access:hover {
	background: #d0d7eb;
	color: #000000;
}
.btm-asm-pill-access.active {
	background: #d0d7eb;
	color: #000000;
}

/* === Accordion === */
.btm-asm-accordion {
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 17px;
	font-weight: bold;
	cursor: pointer;
	color: #313131;
}
.btm-asm-filter-use {
	padding-top: 20px;
	margin-bottom: 20px;
}


.btm-asm-accordion:after {
	content: '+';
	float: right;
}
.btm-asm-accordion.active:after {
	content: '-';
}
.btm-asm-accordion-content {
	list-style: none;
	padding-left: 12px;
	margin: 0;
	display: none;
}

ul.btm-asm-accordion-content {
	font-size: 15px !important;
	padding-left: 12px !important;
	padding-top: 10px !important;
}

.btm-asm-accordion-content li {
	margin: 6px 0;
}
.btm-asm-accordion-content a {
	text-decoration: none;
	color: #333;
	transition: color 0.2s ease, text-decoration 0.2s ease;
}
.btm-asm-accordion-content a:hover {
	color: #0B3BA7;
}
.btm-asm-accordion-content a.active {
	font-weight: 500;
}

@media (max-width: 900px) {
	/* Hide headings */
	.btm-asm-filter-categories .btm-asm-filter-title,
	.btm-asm-filter-access .btm-asm-filter-title {
		display: none;
	}

	/* Categories: convert to pills */
	.btm-asm-category-list {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		padding: 0 !important;
	}
	.btm-asm-category-list li { margin: 0; }

	.btm-asm-category-link {
		display: inline-block;
		padding: 12px 18px;
		border-radius: 6px;
		font-size: 17px;
		background: #ecedf0 !important;
		color: #000000 !important;
	}
	.btm-asm-category-link.active {
		background: #d0d7eb !important;
		color: #000000 !important;
	}

	.btm-asm-filter-use {
		padding-top: 10px;
		padding-left: 10px;
		margin-bottom: 20px;
	}
	.btm-asm-filter-type {
		padding-left: 10px;
		margin-bottom: 0px;
	}
}

@media (max-width: 600px) {
	.btm-asm-category-link {
		display: inline-block;
		padding: 10px 14px;
		border-radius: 6px;
		font-size: 14px;
		background: #ecedf0 !important;
		color: #000000 !important;
	}
	.btm-asm-category-link.active {
		background: #d0d7eb !important;
		color: #000000 !important;
	}
}