.paintinglist {
  margin: 0 5%;
}
.painting-item {
  margin-bottom: 2rem;
}
.painting-thumbnail > img {
  width: 100%;
  height: auto;
  display: block;
}
.painting-title {
  margin-bottom: 0px;
  font-size: 1.3rem;
  margin-top: 0.7rem;
}
.painting-fields p {
  margin: 0;
  font-size: 1rem;
}
.painting-overlay,
.painting-nav {
  display: none;
}


@media only screen and (min-width: 990px) {
  .paintinglist {
    height: calc(100vh - 52px - var(--wp-admin--admin-bar--height) - 40px);
    position: relative;
    user-select: none;
  }
  .painting-item {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    user-select: none;
  }
  .painting-item.current {
    display: block;
  }
  .painting-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .painting-thumbnail > img {
    object-fit: contain;
    height: 100%;
  }
  .painting-fields {
    position: fixed;
    left: 50px;
    bottom: 126px;
    width: 250px;
    user-select: none;
  }
  .painting-overlay {
    display: block;
    position: absolute;
    height: 100%;
    width: 50%;
    cursor: w-resize;
    z-index: 1;
    user-select: none;
  }
  .painting-overlay.painting-overlay-right {
    right: 0;
    cursor: e-resize;
  }
  .painting-nav {
    width: 250px;
    height: 50px;
    position: fixed;
    left: 50px;
    bottom: 70px;
    display: flex;
    justify-content: stretch;
    gap: 20px;
  }
  .painting-nav-left, .painting-nav-right {
    flex-basis: 50px;
    flex-grow: 0;
    cursor: pointer;
  }
  .painting-nav-left::before, .painting-nav-right::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-left: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(45deg);
    top: 19.5px;
    left: 2px;
  }
  .painting-nav-right::before {
    transform: rotate(225deg);
    left: auto;
    right: 2px;
  }
  .painting-nav > div::after {
    content: "";
    width: 100%;
    border-bottom: 1px solid;
    display: block;
    top: 25px;
    position: relative;
  }
  .painting-nav-center {
    flex-grow: 1;
  }
}