.bdm-wrap {
	display: flex;
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	font-family: inherit;
	align-items: flex-start;
	flex-wrap: wrap;
}

/* Sidebar */
.bdm-sidebar {
	flex: 0 0 330px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.bdm-cat-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	color: #111;
	font-size: 16px;
    font-weight: bold;
	transition: background 0.15s, color 0.15s;
}

.bdm-cat-item:last-child {
	border-bottom: none;
}

.bdm-cat-item:hover {
	background: #f5f5f5;
}

.bdm-cat-item.is-active {
	background: #cd0001;
	color: #fff;
	font-weight: 600;
}

.bdm-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid currentColor;
	font-size: 14px;
}

/* Content */
.bdm-content {
	flex: 1 1 500px;
	min-width: 280px;
}

.bdm-year-tabs {
	display: flex;
	gap: 5px;
	margin-bottom: 20px;
}

.bdm-year-tab {
	border: 1px solid #ddd;
	background: #f2f2f2;
	color: #999;
	padding: 0 10px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.15s, color 0.15s;
	height: 42px !important;
}

.bdm-year-tab.is-active {
	background: #cd0001;
	color: #fff;
	border-color: #cd0001;
}

.bdm-year-tab:hover:not(.is-active) {
	background: #e8e8e8;
}

.bdm-quarter-block {
	background: #fff;
	border-radius: 12px;
	margin-bottom: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.25);
	overflow: hidden;
}

.bdm-quarter-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 22px;
	cursor: pointer;
	font-size: 22px;
	font-weight: 600;
	color: #111;
}

.bdm-toggle-icon {
	font-size: 18px;
	line-height: 1;
	color: #555;
}

.bdm-quarter-entries {
	padding: 0 22px 12px;
}

.bdm-entry {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-top: 1px solid #eee;
	font-size: 16px;
	color: #000;
}

.bdm-entry-title {
	padding-right: 12px;
}

.bdm-entry-link {
	flex: 0 0 auto;
	border: 1px solid #cd0001;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #cd0001;
	font-size: 15px;
	transition: background 0.15s;
	padding: 6px 12px;
	gap:7px;
	font-weight: 700;
}

.bdm-entry-link:hover {
	background: #f2f2f2;
}

.bdm-empty {
	color: #888;
	font-size: 13px;
	padding: 10px 0;
	margin: 0;
}

@media (max-width: 780px) {
	.bdm-wrap {
		flex-direction: column;
	}
	.bdm-sidebar {
		flex: 1 1 100%;
		width: 100%;
	}
}
