.acf-container {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* ruimte tussen de items */
}

.acf-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.acf-item-image {
  flex: 0 0 200px; /* vaste breedte links */
}

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

.acf-item-content {
  flex: 1;
}

.acf-item-title {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.acf-item-info {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 1rem;
}

.acf-item-description {
  font-size: 0.95rem;
  color: #666;
}