
/* SEO mosaic — fully clickable linked photo grids */
.section--seo-mosaic { padding-block: clamp(2rem, 5vw, 3.5rem); }
.seo-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
}
.seo-mosaic__cell {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  background: var(--rs-bg-dark, #1c1917);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(28, 25, 23, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.seo-mosaic__cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(185, 28, 28, .15);
}
.seo-mosaic__media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  display: block;
}
.seo-mosaic__media img,
.seo-mosaic__media .ambient-video,
.seo-mosaic__media .ambient-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}
.seo-mosaic__media .ambient-video {
  position: absolute;
  inset: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.seo-mosaic__media .ambient-video video {
  display: block;
  object-fit: cover;
  object-position: top center;
}
.category-hero + .section--seo-mosaic {
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
}
.seo-mosaic__cell:hover .seo-mosaic__media img { transform: scale(1.04); }
.seo-mosaic__play {
  position: absolute;
  right: .65rem;
  bottom: .65rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(185, 28, 28, .92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.seo-mosaic__caption {
  padding: .75rem .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background: var(--rs-bg, #f5f0e8);
  flex: 1;
}
.seo-mosaic__caption strong {
  font-size: .82rem;
  line-height: 1.32;
  color: var(--rs-ink, #1c1917);
}
.seo-mosaic__caption span {
  font-size: .85rem;
  font-weight: 700;
  color: var(--rs-red, #b91c1c);
}
.section--seo-links .card__utp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .88rem;
  color: var(--rs-muted);
  margin: .35rem 0 0;
}
.product-gallery-viewer__link {
  display: block;
  position: relative;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.product-gallery-thumbs__link {
  display: block;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  text-decoration: none;
}
.product-gallery-thumbs__link.is-active { border-color: var(--rs-red, #b91c1c); }
