.afmla-scrollshow {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  gap: 10px;
  height: 400px;
  cursor: grab;
}

.afmla-scrollshow::-webkit-scrollbar {
  display: none;
}

.afmla-slide {
  position: relative;
  flex: 0 0 auto;
}

.afmla-slide img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.afmla-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 1rem;
  padding: 4px 0;
}

@media (max-width: 768px) {
  .afmla-scrollshow {
    height: 280px;
  }
}
