/* Bystokkeholm Guider – frontend */
.bsg-guides { max-width: 760px; }
.bsg-search {
	width: 100%;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	margin-bottom: 16px;
	box-sizing: border-box;
}
.bsg-guide-list { list-style: none; margin: 0; padding: 0; }
.bsg-guide-item { margin: 0 0 8px; }
.bsg-guide-item a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 8px;
	text-decoration: none;
	color: #1a1a1a;
	transition: border-color .15s, box-shadow .15s;
}
.bsg-guide-item a:hover {
	border-color: #b0b0b0;
	box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.bsg-guide-title { font-weight: 600; }
.bsg-guide-cat {
	font-size: 12px;
	color: #666;
	background: #f2f2f2;
	padding: 2px 8px;
	border-radius: 10px;
	white-space: nowrap;
}
.bsg-empty, .bsg-notice { color: #777; font-style: italic; }
.bsg-noresult { color: #777; font-style: italic; }

/* Kategori-filterknapper (innebygd i [guider]) */
.bsg-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}
.bsg-filter-btn {
	cursor: pointer;
	padding: 7px 14px;
	font-size: 14px;
	border: 1px solid #d0d0d0;
	background: #f6f6f6;
	color: #333;
	border-radius: 18px;
	transition: background .15s, border-color .15s, color .15s;
}
.bsg-filter-btn:hover { background: #ececec; }
.bsg-filter-btn.is-active {
	background: #1a1a1a;
	border-color: #1a1a1a;
	color: #fff;
}
.bsg-filter-hint { font-size: 12px; color: #888; margin: 0 0 14px; }

.bsg-cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.bsg-cat-list a {
	display: inline-block;
	padding: 8px 14px;
	background: #f2f2f2;
	border-radius: 18px;
	text-decoration: none;
	color: #222;
	font-size: 14px;
}
.bsg-cat-list a:hover { background: #e4e4e4; }
