/* Extra ruimte onder de titels in de blokken */
    .blok > h2 {
      margin-bottom: 0.5rem;
    }
    /* Minder verticale ruimte tussen rijen + horizontale ruimte tussen blokken */
    .row-container {
      row-gap: 0.70rem !important;
      margin-bottom: 0.25rem !important;
      column-gap: 0.5rem;
    }

    .row-container > .blok {
      margin-bottom: 0.25rem !important;
    }
        .desktop-dashboard {
      display: none;
    }

.desktop-comingup-block {
  min-height: auto;
}

.desktop-comingup-block #comingup {
  min-height: 0;
}
    @media (min-width: 768px) {
      .desktop-dashboard {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas:
          'coming now last'
          'coming news top5';
        column-gap: 0.5rem;
        row-gap: 0.7rem;
      }

              .desktop-nowplaying-wrap,
.desktop-lastplayed-wrap,
.desktop-top5-wrap,
.desktop-news-wrap {
  min-height: 200px;
}

      .desktop-dashboard .blok {
        margin-bottom: 0 !important;
      }

      .desktop-comingup-wrap { grid-area: coming; }
      .desktop-nowplaying-wrap { grid-area: now; }
      .desktop-lastplayed-wrap { grid-area: last; }
      .desktop-news-wrap { grid-area: news; }
      .desktop-top5-wrap { grid-area: top5; }
    }
    .blok {
      border: 2px solid #5E005E;
      background-color: rgba(255,255,255,.05);
      border-radius: 6px;
      padding: 10px;
      margin-bottom: 0.25rem;
      transition: background-color .3s, transform .3s;
    }
    .blok:hover { background-color: rgba(255,255,255,.1); transform: translateY(-3px); }

/* Basis: geschikt voor 1920x1080, niet te hoog */
.site-shell {
  width: min(94vw, 1500px);
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

/* Alleen bij écht grote schermen mét genoeg hoogte, zoals 2560x1440 */
@media (min-width: 2200px) and (min-height: 1200px) {
  .site-shell {
    width: min(90vw, 1700px);
    max-width: 1700px;
  }

  .desktop-dashboard {
    gap: 0.75rem;
  }

  .blok {
    padding: 1rem;
  }

  .desktop-nowplaying-wrap img,
  #coverArt {
    width: 280px !important;
    height: 280px !important;
  }

  #nieuwsAfbeelding {
    height: 185px !important;
    max-height: 185px !important;
  }
}

/* 1080p-schermen: net iets compacter zodat de mini-scroll verdwijnt */
@media (max-height: 1100px) {
  .header-mobile-wrap {
    margin-bottom: 0.45rem !important;
  }

  .blok {
    padding: 0.75rem !important;
  }

  .desktop-dashboard {
    gap: 0.5rem !important;
  }

  .desktop-nowplaying-wrap #coverArt {
    width: 230px !important;
    height: 230px !important;
  }

  #nieuwsAfbeelding {
    height: 155px !important;
    max-height: 155px !important;
  }

  .track-item {
    padding-top: 0.42rem !important;
    padding-bottom: 0.42rem !important;
  }
}