.bkp-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 2rem;
}

.bkp-header {
	display: grid;
	grid-template-columns: minmax(120px, 200px) 1fr;
	gap: 1.25rem;
	padding: 1rem;
	background: #f7f9fb;
	border-radius: 12px;
}

.bkp-header-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
}

.bkp-featured-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.bkp-featured-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background: #fff;
	border: 1px solid #e4e7eb;
	border-radius: 12px;
	padding: 1rem;
	height: 100%;
}

.bkp-featured-thumb {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
}

.bkp-featured-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bkp-featured-content {
	display: grid;
	gap: 0.5rem;
}

.bkp-featured-content h3 {
	margin: 0;
}

.bkp-featured-content p {
	margin: 0;
}

.bkp-read-more {
	display: inline-block;
	margin-top: 0.5rem;
	font-weight: 600;
}

.bkp-month-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.bkp-month {
	border: 1px solid #e4e7eb;
	border-radius: 12px;
	padding: 0.75rem;
	background: #fff;
}

.bkp-month h3 {
	margin: 0 0 0.75rem;
}

.bkp-weekdays,
.bkp-days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.3rem;
}

.bkp-weekdays span {
	font-weight: 600;
	font-size: 0.82rem;
	text-align: center;
}

.bkp-day {
	min-height: 86px;
	padding: 0.3rem;
	border-radius: 8px;
	background: var(--bkp-day-color);
	overflow: hidden;
}

.bkp-day-empty {
	background: transparent;
	min-height: 20px;
}

.bkp-day-number {
	font-size: 0.78rem;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 0.2rem;
}

.bkp-day-posts {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.15rem;
}

.bkp-day-posts a {
	display: block;
	font-size: 0.68rem;
	line-height: 1.2;
	padding: 0.1rem 0.2rem;
	border-radius: 4px;
	background: #ffffff;
	border-left: 3px solid var(--bkp-entry-color);
	text-decoration: none;
	color: #111;
	font-weight: 600;
}

.bkp-single {
	max-width: 800px;
	margin: 0 auto;
	padding: 1rem;
}

.bkp-category-header {
	background: var(--bkp-header-color, #1976d2);
	margin-bottom: 1rem;
}

.bkp-category-header-inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 1rem 1.25rem;
	color: #fff;
	text-align: center;
}

.bkp-brand-link {
	display: block;
	text-align: center;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.bkp-single-date-cat {
	margin: 0;
	font-size: 0.95rem;
	opacity: 0.95;
}

.bkp-category-header .entry-title {
	margin: 0.5rem 0 0;
	color: #fff;
}

.bkp-single-thumbnail img {
	border-radius: 10px;
	width: 100%;
	height: auto;
}

.bkp-external-link {
	display: inline-block;
	padding: 0.45rem 0.75rem;
	background: #0b5fff;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
}

.bkp-rating {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid #ddd;
}

.bkp-rating-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.bkp-rate-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 0.8rem;
	border: 1px solid #d0d7de;
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
}

.bkp-attendance-separator {
	width: 1px;
	min-height: 2rem;
	background: #d0d7de;
	display: inline-block;
	margin: 0 0.2rem;
}

.bkp-rate-btn-attendance {
	background: #f0fff4;
	border-color: #9adbb5;
}

.bkp-rate-btn-attendance .bkp-rate-icon {
	font-size: 1.05em;
}

.bkp-rate-btn[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

.bkp-rate-count {
	font-weight: 700;
}

@media (max-width: 1024px) {
	.bkp-featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.bkp-month-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.bkp-header,
	.bkp-featured-grid {
		grid-template-columns: 1fr;
	}

	.bkp-day {
		min-height: 62px;
	}

	.bkp-day-posts a {
		font-size: 0.64rem;
	}

	.bkp-attendance-separator {
		width: 100%;
		height: 1px;
		min-height: 1px;
		margin: 0.1rem 0;
	}
}
