/* Portal layout helpers (Mijn portaal + Video grid) */
.portal-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portal-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
