.slider-button {
  display: none;
}

.slider-button:hover {
  color: #f00;
  cursor: pointer;
}

.slider-button:focus {
  outline: none;
}

.slideshow {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 880px;
  padding-top: 3em;
}

.slideshow .slide {
  display: inline-block;
  width: 100%;  
  height: 0;
  margin-bottom: 4em;
  padding-top: 80%;
  padding-left: 0;
  padding-right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.slideshow .slide-active {
  display: inline-block;
  width: 100%;  
  height: 0;
  margin-bottom: 4em;
  padding-top: 80%;
  padding-left: 0;
  padding-right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.slide-label {
  width: 100%;
  font: 1em "Georgia", serif;
  text-align: center;
  display: inline-block;
  position: relative;
}

@media (min-width: 48em) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    flex-direction: unset;
    min-width: 100%;
    height: 100%;
    margin: auto;
  }

  .slider-button {
    display: inline-block;
    width: 5%;
    border: none;
    background: transparent;
    color: #00f;
    font-size: 2em;
  }

  .slideshow {
    padding-bottom: 2em;
  }

  .slideshow .slide {
    display: none;
  }

  .slideshow .slide-active {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 1em;
    padding-right: 1em;
  }

  .slideshow .slide-active .slide-label {
    display: inline-block;
    width: 100%;
    position: absolute;  
    bottom: -2em;
    right: 0;
  }
}