.sidebar-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2em;
  width: 100%;
}

#sidebar {
  position: sticky;
  top: 2em;
  height: fit-content;
}

#sidebar lastfm-tracks {
  width: 100%;
  height: 700px;
  display: block;
}

@media (max-width: 900px) {
  .sidebar-layout {
    grid-template-columns: 1fr;
  }

  #sidebar {
    position: static;
    order: 2;
    width: 100%;
    max-width: 400px;
    margin: 0.5em auto 2em;
  }

  #sidebar lastfm-tracks {
    width: 100%;
    max-width: 400px;
    height: 600px;
    min-height: 600px;
    margin: 0 auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  main {
    order: 1;
  }
}
