.example-container {
  position: relative;
  overflow: hidden;
  padding: 1em 0;
}

.example-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.project-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1em;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  max-width: 160px;
  text-align: center;
}

.project-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin: auto;
  max-width: 180px;
}

.project-card a {
  text-decoration: none;
  display: block;
  margin-top: 0.5em;
}

.project-card small {
  display: block;
  margin-top: 0.25em;
  color: #666;
}

.example-browse-link {
  text-align: center;
  margin-top: 1em;
}

@media (max-width: 640px) {
  .project-card {
    width: 100%;
    max-width: 90vw;
  }
}

/* Real work gallery styles */
.real-work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.real-work-item {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.real-work-item:hover {
  transform: scale(1.02);
}

.real-work-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}