/* ========================================================================= */
/* ENTORNO (PHOTO ROLL) */
/* ========================================================================= */

.photo-roll-container {
  overflow-x: auto;
  padding-bottom: 20px;
}

.photo-roll {
  display: flex;
  gap: 15px;
  padding: 15px 0;
}

.photo-item {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.photo-item:hover {
  transform: scale(1.03);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
