.breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #555;
}

.info {
  margin-bottom: 1rem;
  font-weight: bold;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.item {
  width: calc(25% - 1rem);
  box-sizing: border-box;
}

.item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.caption {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

.loading {
  text-align: center;
  margin: 2rem 0;
  font-style: italic;
  color: #777;
}

/* Responsief gedrag */
@media (max-width: 1024px) {
  .item {
    width: calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .item {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .item {
    width: 100%;
  }
}

.folder img {
  content: url('folder.png');
}
