/* ── Instagram Feed ─────────────────────────────────────────────────────── */
.bb-instagram-feed {
  background: #fff;
  padding: 48px 0 56px;
  border-top: 1px solid #e5e5e5;
  /* full-bleed: break out of any constrained parent column */
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.bb-instagram-feed__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 24px 24px;
}

.bb-instagram-feed__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
}

.bb-instagram-feed__handle {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #000;
  text-decoration: none;
}

.bb-instagram-feed__handle:hover {
  text-decoration: underline;
}

.bb-instagram-feed__track {
  display: flex;
  overflow-x: auto;
  gap: 2px;
  /* no horizontal padding — images go edge-to-edge */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bb-instagram-feed__track::-webkit-scrollbar {
  display: none;
}

.bb-instagram-feed__item {
  flex: 0 0 calc((100% - 6px) / 4);
  aspect-ratio: 1;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  display: block;
  text-decoration: none;
}

.bb-instagram-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.bb-instagram-feed__item:hover img {
  opacity: 0.85;
}

.bb-instagram-feed__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@media (max-width: 767px) {
  .bb-instagram-feed {
    padding: 36px 0 44px;
  }

  .bb-instagram-feed__header {
    padding: 0 16px 20px;
  }

  .bb-instagram-feed__item {
    /* ~2.4 items visible, peek of third */
    flex: 0 0 calc(100% / 2.4);
  }
}
