diff --git a/src/patterns/04-components/content-grid-list/_content-grid-list.scss b/src/patterns/04-components/content-grid-list/_content-grid-list.scss
index 18ebc9bc70690b9b00ee9c28a8cd605db40113b8..e17e1d904b975dc53a19c3203e81a95b9e9664ea 100644
--- a/src/patterns/04-components/content-grid-list/_content-grid-list.scss
+++ b/src/patterns/04-components/content-grid-list/_content-grid-list.scss
@@ -108,3 +108,86 @@
     }
   }
 }
+.block-uw-cbl-manual-list {
+  .service {
+    .uw-content--grid-list__layout {
+      display: grid;
+      grid-row-gap: inherit;
+      .card {
+        flex: inherit;
+        flex-wrap: inherit;
+        column-gap: var(--grid-gutter);
+        order: inherit;
+        width: inherit;
+        .card__body{
+          height: inherit;
+        }
+
+        &:first-of-type {
+          flex: inherit;
+          flex-wrap: inherit;
+          column-gap: var(--grid-gutter);
+          order: inherit;
+          width: inherit !important;
+        }
+        &.card--show-hover {
+          border: 1px solid transparent;
+          box-shadow: inherit;
+          transition: inherit;
+          padding: inherit;
+          &:hover,
+          &:focus-within {
+            border-bottom: 1px solid inherit;
+            box-shadow: inherit;
+          }
+        }
+        .card__header {
+          margin: 0;
+          .card__title{
+            font-size: var(--font-size-1);
+            margin: var(--size-1) 0 0 0;
+            font-family: inherit;
+            line-height: inherit;
+            padding: inherit;
+            width: inherit;
+            a {
+              text-decoration: underline;
+              &:focus,
+              &:hover {
+                text-decoration: none;
+              }
+            }
+          }
+        }
+        .card__content {
+          margin: 0;
+          p {
+            margin: 0;
+          }
+        }
+      }
+    }
+    .view-content {
+      flex: inherit;
+      flex-flow: inherit;
+      gap: inherit;
+      .views-row {
+        flex: inherit;
+        flex-wrap: inherit;
+        column-gap: inherit;
+        width: inherit !important;
+        order: inherit;
+        &:first-of-type {
+          flex: inherit;
+          flex-wrap: inherit;
+          column-gap: inherit;
+          order: inherit;
+          width: inherit !important;
+        }
+        p {
+          margin: 0;
+        }
+      }
+    }
+  }
+}