slide-show {
  height: 1080px;
  width: 1920px;
}
.slide-show-controls {
  text-align: center;
}

slide-show .slide {
  cursor: pointer;
}

slide-show video {
  width: 100%;
}

slide-show ul {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-gap: var(--pad-s);
  padding: var(--pad-s) 6rem;
}

slide-show li {
  white-space: nowrap;
}

slide-show button {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  font-size: 1rem;
  color: var(--text-black-transparent);
  width: 100%;
  text-align: center;
}

slide-show button.active,
slide-show button:active {
  color: var(--text-brown);
}

.bg-grey-dark slide-show button {
  color: var(--text-white-transparent);
}

.bg-grey-dark slide-show button.active,
.bg-grey-dark slide-show button:active {
  color: white;
}

@media only screen and (max-width: 480px) {
  .slide-show-controls {
    width: 100vw;
    overflow-x: scroll;
    margin: 0 calc(-1 * var(--pad-s));
  }

  .slide-show-controls ul {
    padding: var(--pad-s);
  }
}
