/* #############################################
  ## HEADLINES
  ############################################# */ 
  .headline-category {
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw, 3.25rem) !important;
    line-height: 1.3;
    margin-bottom: .25rem;
  }
  
  .headline-category span {
    font-size: clamp(1.25rem, 3vw, 3.25rem) !important;
    color: #999;
    font-weight: 700;
  }

  /* Static-Menu nur für About */
#static-menu-about {
    position: fixed;
    right: 2rem;
    bottom: 4rem;
    z-index: 1000;
    text-align: right;
    padding: 0.5rem 0.5rem;
    border-radius: .75rem;
    background-color: rgba(255, 255, 255, .85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: background-color .3s ease, box-shadow .3s ease, color .3s ease;
  }
  /* Logo unten */
  #static-menu-about img {
    max-width: 120px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
  
  /* Mobile Anpassung */
  @media (max-width: 991.98px) {
    #static-menu-about {
      display: none;
    }
  }
  
  /* Quote Icon grün */
.text-success {
    color: #17d68f !important;
  }
  
  /* Bild optisch sauber */
  img.rounded {
    border-radius: .5rem;
  }
  img.shadow-sm {
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
  }

/* Grüner Badge */
.quote-badge {
    background-color: #17d68f;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  /* Icon mittig */
  .quote-icon {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    transform: translateY(8px);
  }
  .showroom {
    transition: transform .2s, box-shadow .2s;
  }
  .showroom-img {
    position: relative;
    overflow: hidden;
  }
  .showroom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .showroom-img.big { height: 400px; }
  .showroom-img.small { height: 195px; }
  
  @media (max-width: 991px) {
    .showroom-img.big,
    .showroom-img.small { height: auto; }
  }
/* Handy: keine Abstände zwischen den Kacheln */
@media (max-width: 575.98px) {
  .row.g-3 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }
  .col-12 {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Tablet: 2 nebeneinander */
@media (min-width: 576px) and (max-width: 991.98px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Desktop: 5 nebeneinander */
@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 20%;   /* 100% / 5 */
    max-width: 20%;
  }
}
