.snap-carousel {
  position: relative;
  width: 100%;
}

.snap-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.snap-track::-webkit-scrollbar {
  display: none;
}

.snap-track > .am-item,
.snap-track > .owl-item {
  flex: 0 0 calc(50% - 5px);
  scroll-snap-align: start;
}

.snap-track.snap-5 > .am-item {
  flex: 0 0 calc(20% - 8px);
}

.snap-track.snap-2 > .owl-item {
  flex: 0 0 calc(50% - 5px);
}

.snap-track.snap-1 > .owl-item {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .snap-track.snap-5 > .am-item {
    flex: 0 0 calc(33.333% - 7px);
  }
}

@media (min-width: 992px) {
  .snap-track.snap-5 > .am-item {
    flex: 0 0 calc(20% - 8px);
  }
}

.snap-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(74, 114, 45, 0.9);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.snap-prev { left: 4px; }
.snap-next { right: 4px; }

.youtube-lite {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #000 center/cover no-repeat;
  border: 0;
}

.youtube-lite::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
}

.youtube-lite::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  z-index: 1;
}
