diff --git a/themes/finc/scss/_customVariables.scss b/themes/finc/scss/_customVariables.scss
index 73eaa990f36b40d96afc4d9b144ba6884555c26f..f2291f87e9f890c735b9759c277d1dbb7f13a7e5 100644
--- a/themes/finc/scss/_customVariables.scss
+++ b/themes/finc/scss/_customVariables.scss
@@ -1205,7 +1205,7 @@ $sidebar-item-active-hover-bg: transparentize($brand-primary, .1) !default;
 $narrow-toggle-text-alignment: left !default;
 
 
-$sidebar-facet-word-break: break-all !default;
+$sidebar-facet-word-break: break-word !default;
 $sidebar-facet-word-break-sm: initial !default;
 $sidebar-facet-link-text-decoration: none !default;
 
diff --git a/themes/finc/scss/activate-on-demand/_sidebar-filter-hide-checkbox.scss b/themes/finc/scss/activate-on-demand/_sidebar-filter-hide-checkbox.scss
index a93bc985175187c29248521923676ac690778b92..78fc37d7a90a2c080497441ce91d4627497d2b72 100644
--- a/themes/finc/scss/activate-on-demand/_sidebar-filter-hide-checkbox.scss
+++ b/themes/finc/scss/activate-on-demand/_sidebar-filter-hide-checkbox.scss
@@ -10,13 +10,13 @@
       &.active {
         .text {
           // reduce padding for active filters on tablet devices #22377
-          @media (min-width: $screen-sm-min) and (max-width: $screen-sm-max) {
+          @media (min-width: $screen-sm-min) and (max-width: $screen-md-max) {
             padding-left: $sidebar-facet-active-text-inside-padding-left-sm;
           }
         }
       }
 
-      @media (min-width: $screen-sm-min) and (max-width: $screen-sm-max) {
+      @media (min-width: $screen-sm-min) and (max-width: $screen-md-max) {
         // cut text in sidebar for tablet devices #22377
         .text {
           overflow: hidden;
@@ -39,7 +39,7 @@
     .help-link,
     .facet a:not(.exclude):not(:last-of-type) {
       // reduce padding for small devices #22377
-      @media (min-width: $screen-sm-min) and (max-width: $screen-sm-max) {
+      @media (min-width: $screen-sm-min) and (max-width: $screen-md-max) {
         padding: $sidebar-item-padding-sm;
       }
     }