/* Estilos para la imagen por defecto */
.default-photo {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecf0f1;
  font-family: "Spectral", serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.default-photo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ecf0f1"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>')
    no-repeat center;
  background-size: contain;
  opacity: 0.3;
}

.default-photo-text {
  position: relative;
  z-index: 1;
}

.default-photo-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.default-photo-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .default-photo-title {
    font-size: 1rem;
  }

  .default-photo-subtitle {
    font-size: 0.8rem;
  }
}

/* Para imágenes pequeñas (thumbnails) */
.default-photo.thumbnail {
  min-height: 80px;
}

.default-photo.thumbnail::before {
  width: 30px;
  height: 30px;
}

.default-photo.thumbnail .default-photo-title {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.default-photo.thumbnail .default-photo-subtitle {
  font-size: 0.7rem;
}

/* Para imágenes medianas */
.default-photo.medium {
  min-height: 200px;
}

/* Para imágenes grandes */
.default-photo.large {
  min-height: 300px;
}
