/* Blog Widget */
.bw-wrapper {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

/* Sidebar */
.bw-sidebar {
	width: 250px;
	min-width: 250px;
	flex-shrink: 0;
}

.bw-sidebar-section {
	border-bottom: 1px solid #e0e0e0;
}

.bw-sidebar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 12px 0;
	border-bottom: 1px solid #e0e0e0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #333333;
}

.bw-sidebar-header > * {
	pointer-events: none;
}

.bw-toggle-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
	color: #333333;
}

.bw-sidebar-header.collapsed .bw-toggle-icon {
	transform: rotate(-180deg);
}

.bw-sidebar-list {
	overflow: hidden;
	transition: max-height 0.8s ease;
}

.bw-sidebar-item {
	padding: 5px 0;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.bw-sidebar-item:hover {
	opacity: 0.7;
}

.bw-sidebar-item-title {
	font-size: 13px;
	font-weight: 400;
	color: #333333;
	line-height: 1.5;
	margin-bottom: 4px;
}

.bw-sidebar-item.active .bw-sidebar-item-title {
	color: #000000;
}

.bw-sidebar-item-date {
	font-size: 11px;
	color: #d4a574;
}

/* Category Items */
.bw-category-item {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bw-category-item:hover {
	color: inherit;
}

/* Content */
.bw-content {
	flex: 1;
	min-width: 0;
}

.bw-article {
	margin-bottom: 40px;
}

.bw-article:last-child {
	margin-bottom: 0;
}

/* Category Badge */
.bw-category {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #d4a574;
	background-color: #fdf6f0;
	padding: 4px 12px;
}

/* Title */
.bw-title {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #333333;
	margin: 8px 0 15px;
	line-height: 1.4;
}

/* Excerpt */
.bw-excerpt {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: #666666;
}

/* Meta */
.bw-meta {
	font-size: 12px;
	font-style: italic;
	color: #999999;
	margin: 15px 0;
}

/* Button */
.bw-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #333333;
	background-color: #fce4d6;
	padding: 10px 25px;
	margin: 20px 0;
	text-decoration: none;
	transition: all 0.3s ease;
}

.bw-button:hover {
	background-color: #d4a574;
	color: #ffffff;
}

.bw-arrow-icon {
	width: 12px;
	height: 12px;
}

/* Featured Image */
.bw-featured-image {
	width: 100%;
	overflow: hidden;
}

.bw-featured-image img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
}

/* Responsive */
@media (max-width: 768px) {
	.bw-wrapper {
		flex-direction: column;
	}

	.bw-sidebar {
		width: 100% !important;
		min-width: 100% !important;
	}
}
