.foto-container {}

.foto-imagen {}

.foto-container .foto-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.foto-container .foto-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.foto-container .foto-image .camera-icon {
 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;

  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.foto-container .foto-info {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  color: #fff;
  margin-top: -150px;
  margin-bottom: 50px;
  text-align: center;
    z-index:100;
}
.foto-container .foto-info strong {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #fff;
  font-family: helvetica condensed;
    
}

.foto-container .foto-info span::before {
    content: "";


}


.foto-container .foto-info span {display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;}

.title-gallery {color: #fff;
    font-family: helvetica condensed;
    font-size: 18px;
	font-weight: 600;
    text-shadow: black 0.1em 0.1em 0.2em}
.foto-info a:hover {color:#bb0000;}

/* Media query para dispositivos móviles (ancho máximo de 768px) */
@media only screen and (max-width: 768px) {
  .foto-container {
    width: 100%; /* Asegura que ocupe todo el ancho disponible */
    display: block; /* Cambia a mostrar en columna */
	  margin-bottom: 50px;
  }
  
  .foto {
    margin-top: 20px; /* Añade un margen superior a cada elemento de foto */
  }
}
