/* Static homepage showcase — replaces Visual Portfolio slider */
.sf-home-gallery {
  padding: 0 12px 24px;
  max-width: 100%;
  overflow: hidden;
}
.sf-home-gallery__track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  min-height: 300px;
  align-items: stretch;
}
.sf-home-gallery__track::-webkit-scrollbar {
  height: 6px;
}
.sf-home-gallery__track::-webkit-scrollbar-thumb {
  background: #2297a5;
  border-radius: 3px;
}
.sf-home-gallery__item {
  flex: 0 0 auto;
  width: min(280px, 42vw);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.sf-home-gallery__figure {
  margin: 0;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #e8e0c8;
  min-height: 300px;
}
.sf-home-gallery__figure img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  vertical-align: middle;
}
.sf-home-gallery__caption {
  background: #2297a5;
  color: #fff;
  text-align: center;
  padding: 12px 8px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.sf-home-gallery__caption:hover {
  background: #1a7a85;
}

/* Online showroom: multi-column wrap instead of single row */
.sf-showroom-grid__track {
  flex-wrap: wrap;
  overflow-x: visible;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sf-showroom-grid .sf-home-gallery__item {
  width: min(320px, 30vw);
}
