.pipeline-image {
  width: 90%;
  max-width: 900px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px;
  background-color: white;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pipeline-image:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pipeline-caption {
  font-style: italic;
  color: #666;
  margin-top: 1rem;
  font-size: 1.1em;
  text-align: center;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .pipeline-image {
    background-color: #2d3748;
    border: 1px solid #4a5568;
  }
  
  .pipeline-caption {
    color: #a0aec0;
  }
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .pipeline-image {
    width: 100%;
    padding: 10px;
  }
  
  .pipeline-caption {
    font-size: 0.9em;
  }
}
