.bp-widget-container-e0f27f56 {
    display: flex;
    gap: 40px;
    font-family: sans-serif;
}
.bp-sidebar {
    width: 250px;
    flex-shrink: 0;
}
.bp-sidebar-header {
    background: #1b3b2c;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}
.bp-sidebar-header h3 {
    margin: 0;
    font-size: 16px;
}
.bp-sidebar-content {
    background: #f2f8f5;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 0 0 8px 8px;
}
.bp-sidebar-content label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.bp-sidebar-content label:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.bp-main-content {
    flex-grow: 1;
}
.bp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}
.bp-section-header h2 {
    margin: 0;
    font-size: 28px;
    color: #111;
}
.bp-view-all {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid #333;
}
.bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bp-card {
    transition: transform 0.2s ease;
}
.bp-card:hover {
    transform: translateY(-5px);
}
.bp-card h4 {
    margin: 15px 0 10px;
    font-size: 16px;
    line-height: 1.4;
}
.bp-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
.bp-img-placeholder {
    width: 100%;
    height: 180px;
    background: #eaeaea;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .bp-widget-container-e0f27f56 { flex-direction: column; }
    .bp-grid { grid-template-columns: 1fr; }
}