@media (min-width: 800px) {
  .menu-toggle img {
    display: none;
  }

  .site-header {
    background-color: white;
    position: sticky;
    top: 0;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav {
    display: flex;
    max-height: min-content;
    gap: 1em;
  }

  .postlist-item {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    margin: 1.5em auto;
  }

  .site-footer::before {
    background: var(--darkgray);
    content: "";
    display: block;
    margin: 3em auto;
    height: 2px;
    width: 600px;
    transform: rotateX(-2deg);
  }

  .audio-meta {
    flex-direction: row;
  }

  .audio-meta__sep {
    display: inherit;
  }

  .system-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }
}
