.backstretch-element {
  width: 100%;
  height: 400px;
}

.mw-caption-container {
  position: absolute;
  z-index: 1000;
  max-width: 50%;
}

/* Default position (bottom left) */
.mw-caption-container.position-bottom {
  bottom: 30px;
  top: auto;
}

.mw-caption-container.position-top {
  top: 30px;
  bottom: auto;
}

.mw-caption-container.align-left {
  left: 30px;
  right: auto;
  text-align: left;
}

.mw-caption-container.align-center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.mw-caption-container.align-right {
  right: 30px;
  left: auto;
  text-align: right;
}

.mw-caption {
  background-color: transparent;
  color: #fff;
  padding: 0.5em 1.5em;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out !important;
}

.mw-caption a {
  color: #fff;
  transition: all 0.3s ease;
}

.mw-caption a:hover {
  opacity: 0.8;
}

.mw-caption.fade-in {
  display: inline-block;
  opacity: 1;
}

.mw-caption.fade-out {
  opacity: 0;
  display: none;
}
