.bcbl-wrap { max-width: 1200px; margin: 0 auto; padding: 24px 16px; }
.bcbl-section-title { font-size: 1.5rem; margin: 0 0 16px; }

.bcbl-featured-section { margin-bottom: 32px; }
.bcbl-featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.bcbl-search-section { margin: 24px 0; }
.bcbl-search-label { display: block; font-weight: 600; margin-bottom: 8px; }
.bcbl-search-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
}
.bcbl-search-input:focus { outline: 2px solid #2271b1; border-color: #2271b1; }
.bcbl-search-status { margin-top: 6px; font-size: 0.875rem; color: #555; min-height: 1.2em; }

.bcbl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.bcbl-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
	transition: transform .15s ease, box-shadow .15s ease;
	position: relative;
}
.bcbl-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.bcbl-card__link { display: block; padding: 16px; text-decoration: none; color: inherit; }
.bcbl-card__thumb { margin: -16px -16px 12px; aspect-ratio: 16/9; overflow: hidden; background: #f2f2f2; }
.bcbl-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bcbl-card__noimg {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	background: repeating-linear-gradient(45deg, #ececec, #ececec 10px, #f5f5f5 10px, #f5f5f5 20px);
	color: #888;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}
.bcbl-card__title {
	font-size: 1.125rem;
	margin: 0 0 8px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bcbl-card__excerpt {
	font-size: 0.95rem;
	color: #444;
	margin: 0 0 10px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bcbl-card__date { font-size: 0.8rem; color: #777; }
.bcbl-card__badge {
	position: absolute;
	top: 10px; left: 10px;
	background: #ffcc00;
	color: #222;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 1;
}
.bcbl-card--featured { border-color: #ffcc00; }

.bcbl-empty { color: #777; font-style: italic; }

.bcbl-pagination {
	margin-top: 28px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}
.bcbl-pagination .page-numbers {
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: inherit;
}
.bcbl-pagination .page-numbers.current { background: #2271b1; color: #fff; border-color: #2271b1; }
