.photo-strip {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-7) var(--space-7) 0;
}

.photo-strip__scroll {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-top: 4px;
  padding-bottom: var(--space-2);
}

.photo-strip__scroll::-webkit-scrollbar {
  display: none;
}

.photo-strip__item {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  text-decoration: none;
  color: var(--ink);
}

.photo-strip__item img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-fast), box-shadow var(--duration-fast);
  display: block;
}

.photo-strip__item:hover img {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.photo-strip__name {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--ink-lt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  transition: color var(--duration-fast);
}

.photo-strip__item:hover .photo-strip__name {
  color: var(--coral);
}

@media (max-width: 599px) {
  .photo-strip {
    padding: var(--space-5) var(--space-4) 0;
  }

  .photo-strip__item {
    width: 110px;
  }

  .photo-strip__item img {
    width: 110px;
    height: 110px;
  }
}
