






  .module-locations-teaser .module-body {
    max-width: max(1312px, calc(1312 * var(--px)));
    margin: 0 auto;
  }
  
  .locations-teaser-grid {
    --columns: 3;
    --base-width: 100%;
    --column-width: calc((var(--base-width) - (var(--column-gap) * var(--columns))) / var(--columns));
    --column-gap: max(var(--page-padding-left), calc(32 * var(--px)));
    --row-gap: var(--column-gap);
    margin-right: calc(var(--column-gap) * -1);
    margin-bottom: calc(var(--row-gap) * -1);
    display: flex;
    flex-flow: row wrap;
  }
  
  .module-locations-teaser[data-item-count="4"] .locations-teaser-grid {
    --columns: 2;
  }
  
  .locations-teaser-grid > * {
    width: var(--column-width);
    margin-right: var(--column-gap);
    margin-bottom: var(--row-gap);
  }
  
  @media (max-width: 900px) {
    
    .module-locations-teaser .module-body {
      margin-left: calc(var(--page-padding-left) * -1);
      margin-right: calc(var(--page-padding-right) * -1);
      overflow: hidden;
      overflow-x: auto;
    }
    
    .locations-teaser-grid {
      flex-flow: row nowrap;
      margin: 0;
    }
    
    .locations-teaser-grid > * {
      width: auto;
      flex-shrink: 0;
      margin-right: 0;
      padding-left: var(--page-padding-left);
    }
    
    .locations-teaser-grid > *:last-child {
      padding-right: var(--page-padding-right);
    }
    
    .locations-teaser-grid article.locations-teaser {
      width: 274px;
    }
    
  }
  
  @media (max-width: 500px) {
    
    .module-locations-teaser .module-body {
  		-ms-overflow-style: none;
  		scrollbar-width: none;
  		-webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
    }
    
  	.module-locations-teaser .module-body::-webkit-scrollbar {
  		display: none;
  	}

    .locations-teaser-grid > * {
      scroll-snap-align: start;
      display: flex;
      flex-flow: column nowrap;
    }
    
  }
  
  
  
  
  
  
  
  
  
  
  article.locations-teaser {
    position: relative;
  }
  
  article.locations-teaser figure {
    position: relative;
  }
  
  article.locations-teaser figure::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.2;
    z-index: 2;
  }
  
  body.view-b2b article.locations-teaser {
    color: var(--base-color-black);
  }
  
  article.locations-teaser img {
    pointer-events: none;
    max-width: none;
    width: 100%;
  }
  
  article.locations-teaser img.landscape {
    display: none;
  }
  
  article.locations-teaser > .row-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    box-sizing: border-box;
    z-index: 2;
    padding: max(20px, calc(32 * var(--px)));
  }
  
  article.locations-teaser .headline {
    text-align: center;
    color: var(--base-color-white);
  }
  
  @media (min-width: 901px) {
    
    .module-locations-teaser[data-item-count="4"] article.locations-teaser img.portrait {
      display: none;
    }
    
    .module-locations-teaser[data-item-count="4"] article.locations-teaser img.landscape {
      display: block;
      aspect-ratio: 16 / 10 !important;
      object-fit: cover;
    }
    
    .module-locations-teaser[data-item-count="4"] article.locations-teaser .copy-box {
      width: fit-content;
    }
    
    .module-locations-teaser[data-item-count="4"] article.locations-teaser .headline {
      text-align: left;
    }
    
  }
  
  
  @media (max-width: 500px) {
    
    article.locations-teaser > .row-2 {
      position: static;
      background: #f0f0f4;
      flex-grow: 1;
    }
    
    article.locations-teaser .headline {
      text-align: left;
      color: inherit;
      margin-bottom: max(20px, calc(32 * var(--px)));
    }
    
    .module-locations-teaser[data-item-count] article.locations-teaser {
      display: flex;
      flex-flow: column nowrap;
      flex-grow: 1;
    }
    
    .module-locations-teaser[data-item-count] article.locations-teaser img.portrait {
      display: none;
    } 
    
    .module-locations-teaser[data-item-count] article.locations-teaser img.landscape {
      display: block;
      aspect-ratio: 16 / 10 !important;
      object-fit: cover;
      object-position: center bottom;
    } 
    
    
  }
  
  
  
  
  
  
  
  
  .location-box {
    margin-top: auto;
    background: var(--base-color-white);
    padding: max(16px, calc(16 * var(--px)));
  }
  
  .location-box .row-1 {
    line-height: 1.45;
  }
  
  .location-box .row-2 {
    margin: max(12px, calc(12 * var(--px))) 0;
  }
  
  .location-box .row-3 {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    border-top: 1px dashed #d0d0d0;
    padding-top: max(8px, calc(12 * var(--px)));
  }
  
  .location-box .row-3 > li:not(:last-child)::after {
    content: '|';
    display: inline-block;
    padding: 0 0.5em;
    top: 2px;
    position: relative;
  }
  
  .location-box .address span {
    display: inline-block;
  }
  
  
  @media (max-width: 1100px) {
    
    .location-box .row-3 {
      flex-flow: column nowrap;
      align-items: flex-start;
    }
    
    .location-box .row-3 > li::after {
      display: none !important;
    }
    
  }
  
  
  
  
  
  
  