.slideshow-container {
/*
  position: relative;
  width: 320px;
  height: 240px;
  overflow: hidden;
  margin: 20px;
  display: inline-block;
  background: #222;
  border-radius: 8px;
*/
    height: 59dvh;
    margin-top: 0px;
	margin-left: 10px;
    width: 70vw;
    overflow: hidden;
    position: relative;
	border-radius: 8px;
	display: inline-block;
}
.slide {
/*
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
  pointer-events: none;
*/
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
  pointer-events: none;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
/* Fade in when active */
.slide.active {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}
/* Random slide-out classes */
.slide.out-left { animation: outLeft 0.7s forwards; }
.slide.out-right { animation: outRight 0.7s forwards; }
.slide.out-top { animation: outTop 0.7s forwards; }
.slide.out-bottom { animation: outBottom 0.7s forwards; }
@keyframes outLeft { to { opacity: 0; transform: translateX(-100%); } }
@keyframes outRight { to { opacity: 0; transform: translateX(100%); } }
@keyframes outTop { to { opacity: 0; transform: translateY(-100%); } }
@keyframes outBottom { to { opacity: 0; transform: translateY(100%); } }
/* Arrow Controls */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(30,30,30,0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 40px;
  height: 60px;
  cursor: pointer;
  outline: none;
  border-radius: 6px;
  transition: background 0.2s;
  opacity: 0.85;
}
.arrow:hover { background: rgba(30,30,30,0.95); }
.arrow.left { left: 10px; }
.arrow.right { right: 10px; }
