.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  row-gap: 0.25rem;
  column-gap: 1.25rem;
  padding: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.dashboard-event {
  grid-column: 1 / -1;
  border-radius: 6px;
  overflow: hidden;
  min-height: 250px;
}

.dashboard-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.dashboard-right {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.zone-aanbevolen-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
}

.section {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e4e7ec;
  overflow: hidden;
}

.section--plain {
  background: transparent;
  border: none;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1.25rem;
}

.section__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a2e;
  margin: 0;
  padding: 1rem 1.25rem 0.75rem;
}

.section__bar {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: #1a1a2e;
  border-radius: 2px;
  flex-shrink: 0;
}

.section__link {
  font-size: 0.8rem;
  color: #5a6e88;
  text-decoration: none;
  white-space: nowrap;
}

.section__link:hover {
  text-decoration: underline;
}

.zone-acties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 5px;
}

.zone-updates {
  border-top: 1px solid #e4e7ec;
  max-height: 18.75rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.zone-updates > * + * {
  border-top: 1px solid #e4e7ec;
}

.zone-updates::-webkit-scrollbar {
  width: 10px;
}

.zone-updates::-webkit-scrollbar-thumb {
  background: #c8d0da;
  border-radius: 999px;
  border: 2px solid #fff;
}

.zone-updates::-webkit-scrollbar-track {
  background: #f7f8fa;
}

@media (max-width: 960px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-event {
    grid-column: 1;
    min-height: 340px;
  }

  .dashboard-right {
    align-self: auto;
  }
}

@media (max-width: 640px) {
  .dashboard-grid {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .dashboard-event {
    min-height: 260px;
  }

  .zone-acties {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
