.photo-strip-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 16px 0;
  }

  .photo-strip {
    display: flex;
    gap: 10px;
    animation: scroll-strip 200s linear infinite;
    width: max-content;
    margin-bottom: 40px;
  }

  .photo-strip img {
    height: 200px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .photo-strip-wrapper:hover .photo-strip {
    animation-play-state: paused;
  }

  @keyframes scroll-strip {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }