/* Small, intentional differences from the archived WordPress theme. */
.footer__search {
  margin-bottom: 0;
}

@media only screen and (min-width: 1280px) {
  .sidebar {
    position: fixed;
    z-index: 10000;
    top: 0;
    bottom: 0;
    left: 0;
    width: max(20vw, 320px);
    min-width: 0;
    height: 100vh;
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
  }

  .sidebar__wrapper {
    position: relative;
    top: auto;
    width: 100%;
    min-height: 100%;
  }

  .content {
    flex: 0 0 calc(100% - max(20vw, 320px));
    width: calc(100% - max(20vw, 320px));
    margin-left: max(20vw, 320px);
  }

  .search-overlay {
    left: max(20vw, 320px);
    width: calc(100% - max(20vw, 320px));
  }
}
