.bsp-container-dc2dd184 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bsp-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bsp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.bsp-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    color: #111;
}

.bsp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bsp-list-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f9f9f9;
}

.bsp-list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bsp-list-item a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.bsp-list-item a:hover {
    color: #0073aa; /* Standard link hover color, adjustable via widget controls */
}

.bsp-count {
    color: #888;
    font-size: 13px;
    float: right;
}

.bsp-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bsp-post-thumb {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.bsp-search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bsp-search-field {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.bsp-search-field:focus {
    border-color: #333;
    outline: none;
}

.bsp-search-submit {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.bsp-search-submit:hover {
    background-color: #333;
}


/* Dark mode basic support */
@media (prefers-color-scheme: dark) {
    .bsp-card {
        background-color: #1a1a1a;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .bsp-title { 
        color: #fff; 
        border-bottom-color: #333;
    }
    .bsp-list-item {
        border-bottom-color: #2a2a2a;
    }
    .bsp-list-item a { color: #ccc; }
    .bsp-count { color: #666; }
    
    .bsp-search-field {
        background: #2a2a2a;
        border-color: #444;
        color: #fff;
    }
}