.microblog_collection {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;  /* 3 kolommen vullen hele breedte */
  width: 100% !important;
  gap: 20px !important;
  justify-items: stretch !important;  /* Stretch naar volle breedte */
  margin: 0 auto;
}

.microblog_collection img {
  width: 100% !important;
  height: auto !important;           /* Natuurlijke hoogte per foto */
  object-fit: cover !important;      /* Vul container zonder distortie */
  border-radius: 12px !important;
}

@media (max-width: 768px) {
  .microblog_collection {
    padding: 20px !important;       /* Gelijke padding alle kanten */
    box-sizing: border-box !important;  /* Inclusief padding in breedte */
    margin: 0 !important;
    gap: 12px !important;
  }
}
