diff --git a/themes/fid_bbi/scss/blocks/record-list.scss b/themes/fid_bbi/scss/blocks/record-list.scss
new file mode 100644
index 0000000000000000000000000000000000000000..033a94b416ffe7382249725cd8387b808f321571
--- /dev/null
+++ b/themes/fid_bbi/scss/blocks/record-list.scss
@@ -0,0 +1,11 @@
+//// Result List ol, ul that contains li.result or facet group that contains li.facet
+// comes from finc
+.record-list {
+  list-style: none;
+  margin: 0;
+  padding: 0;
+
+  li::before {
+    content: none;
+  }
+}
\ No newline at end of file
diff --git a/themes/fid_bbi/scss/compiled.scss b/themes/fid_bbi/scss/compiled.scss
index cf811b1949e520ce88e015408d5d48d72efc4617..100aebd6f2ada3c372212c0766a3e58dba38e7ac 100644
--- a/themes/fid_bbi/scss/compiled.scss
+++ b/themes/fid_bbi/scss/compiled.scss
@@ -47,6 +47,7 @@
 @import 'blocks/posts';
 @import 'blocks/post';
 @import 'blocks/record';
+@import 'blocks/record-list';
 @import 'blocks/result';
 @import 'blocks/results';
 @import 'blocks/rvk';
diff --git a/themes/fid_bbi/templates/RecordDriver/DefaultRecord/list-entry.phtml b/themes/fid_bbi/templates/RecordDriver/DefaultRecord/list-entry.phtml
index ef8b7a7490a62e85d47ee23b6d6d7561a1437e28..a9c2d0728581fc48473bd19f9dd3b8e50619c0d6 100644
--- a/themes/fid_bbi/templates/RecordDriver/DefaultRecord/list-entry.phtml
+++ b/themes/fid_bbi/templates/RecordDriver/DefaultRecord/list-entry.phtml
@@ -33,7 +33,7 @@ $formatIconMappings = json_decode(file_get_contents($formatIconMappingsFile), tr
 $icon = $formatIconMappings[$format] ?? 'unknown';
 ?>
 
-<div class="result<?php if ($this->driver->supportsAjaxStatus()): ?> ajaxItem<?php endif ?>">
+<li class="result<?php if ($this->driver->supportsAjaxStatus()): ?> ajaxItem<?php endif ?>">
   <input type="hidden" value="<?=$this->escapeHtmlAttr($id)?>" class="hiddenId"/>
   <input type="hidden" value="<?=$this->escapeHtmlAttr($source)?>" class="hiddenSource"/>
 
@@ -44,16 +44,18 @@ $icon = $formatIconMappings[$format] ?? 'unknown';
   <div class="result_details">
     <h3 class="result_title resultItemLine1">
       <?php $missing = $this->driver instanceof \VuFind\RecordDriver\Missing; ?>
+      <?php $describedById = $driver->getSourceIdentifier() . '|' . $driver->getUniqueId(); ?>
       <?php if (!$missing): ?>
         <a
           href="<?=$this->recordLink()->getUrl($this->driver)?>"
           class="getFull"
           data-view="<?=$this->params->getOptions()->getListViewOption()?>"
+          id="<?=$describedById?>"
         >
           <?=$this->record($this->driver)->getTitleHtml()?>
         </a>
       <?php else: ?>
-        <?=$this->record($this->driver)->getTitleHtml()?>
+        <span id="<?=$describedById?>"><?=$this->record($this->driver)->getTitleHtml()?></span>
       <?php endif; ?>
     </h3>
 
@@ -301,5 +303,5 @@ $icon = $formatIconMappings[$format] ?? 'unknown';
       <?php endif; ?>
     <?php endif; ?>
   </div>
-</div>
+</li>
 <!-- fid_bbi: RecordDriver - DefaultRecord - list-entry - END -->
diff --git a/themes/fid_bbi/templates/myresearch/mylist.phtml b/themes/fid_bbi/templates/myresearch/mylist.phtml
index 6313a08cfd0b65b57c8f4f5ce2692e0876274b03..ae75d713c5bec9f47856903516313d51f76d6c5d 100644
--- a/themes/fid_bbi/templates/myresearch/mylist.phtml
+++ b/themes/fid_bbi/templates/myresearch/mylist.phtml
@@ -101,10 +101,11 @@ $user = $this->auth()->isLoggedIn();
         data-lightbox-onsubmit="bulkFormHandler"
       >
         <?=$this->context($this)->renderInContext('myresearch/bulk-action-buttons.phtml', ['idPrefix' => '', 'list' => $list ?? null, 'account' => $this->account])?>
-
+        <ul class="record-list">
         <?php foreach ($this->results->getResults() as $i => $current): ?>
           <?=$this->record($current)->getListEntry($list, $user)?>
         <?php endforeach; ?>
+        </ul>
       </form>
 
       <?=$this->paginationControl($this->results->getPaginator(), 'Sliding', 'search/pagination.phtml', ['results' => $this->results])?>
diff --git a/themes/fid_bbi/templates/record/checkbox.phtml b/themes/fid_bbi/templates/record/checkbox.phtml
index f320511608a51297efb8e84599c107fd95779058..6dee80d9bff6524e8ac6629f2e7703d752c103e8 100644
--- a/themes/fid_bbi/templates/record/checkbox.phtml
+++ b/themes/fid_bbi/templates/record/checkbox.phtml
@@ -9,7 +9,7 @@
  * @author Tobias Schäfer <ts@aspectis.net>
  */
 ?>
-
+<?php $label = isset($this->context) ? 'select_item_' . $this->context : 'select_item'; ?>
 <?php $id = 'checkbox-' . uniqid(); ?>
 <?php // NOTE: `class` is required by favorites list JS ?>
 <input
@@ -20,7 +20,7 @@
   value="<?=$this->id?>"
   <?=isset($this->formAttr) ? "form='$this->formAttr'" : ""?>
   aria-describedby="<?=$this->id?>"
-  aria-label="<?=$this->transEsc('select_item')?>"
+  aria-label="<?=$this->transEsc($label)?>"
 >
 <label for="<?=$id?>">
   <?php if (strlen($this->number ?? '') > 0): ?>
diff --git a/themes/fid_bbi/templates/search/list-list.phtml b/themes/fid_bbi/templates/search/list-list.phtml
index 6a90306f783718fd2ac35a5c3c13c179cfa0b056..939c5cd06ee2567c87e2b58ea7033e190acfa966 100644
--- a/themes/fid_bbi/templates/search/list-list.phtml
+++ b/themes/fid_bbi/templates/search/list-list.phtml
@@ -6,11 +6,12 @@ if (!isset($this->indexStart)) {
 
 $i = $this->indexStart;
 ?>
-
+<?php $listStart = $this->results->getStartRecord() + $i - $this->indexStart; ?>
+<ol class="record-list" start="<?=$listStart?>">
 <?php foreach ($this->results->getResults() as $current): ?>
   <?php $i++; ?>
 
-  <div id="result<?=$i?>" class="result <?=$current->supportsAjaxStatus() ? 'ajaxItem': ''?>">
+  <li id="result<?=$i?>" class="result <?=$current->supportsAjaxStatus() ? 'ajaxItem': ''?>">
     <?php // TODO: Remove? ?>
     <?php $recordNumber = $this->results->getStartRecord() + $i - $this->indexStart; ?>
     <span id="jump<?=$recordNumber?>"></span>
@@ -20,8 +21,9 @@ $i = $this->indexStart;
     <?php endif; ?>
 
     <?=$this->record($current)->getSearchResult('list')?>
-  </div>
+  </li>
 
   <?php $i++; ?>
 <?php endforeach; ?>
+</ol>
 <!-- fid_bbi: search - list-list - END -->
diff --git a/themes/fid_bbi/templates/search/results.phtml b/themes/fid_bbi/templates/search/results.phtml
index 496cf3cfd50795df14fc7d01b0807ec4f0d22f4d..9d79541f2cc9a8a5450c30f0a191a8cb07da9638 100644
--- a/themes/fid_bbi/templates/search/results.phtml
+++ b/themes/fid_bbi/templates/search/results.phtml
@@ -1,5 +1,7 @@
 <!-- fid_bbi: search - results -->
 <?php
+$this->context = 'search_result';
+
 $lookfor = $this->results->getUrlQuery()->isQuerySuppressed() ? '' : $this->params->getDisplayQuery();
 $recordTotal = $this->results->getResultTotal();