.card-text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.trumbowyg-box {
  min-height: auto;
}
.trumbowyg-box textarea {
  display: none;
}

/*! Simple Lightbox CSS (minimal) */
.simple-lightbox-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.simple-lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 20px #000;
  border-radius: 8px;
}
.simple-lightbox-overlay .close-btn {
  position: absolute;
  top: 2vw;
  right: 2vw;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
}
.simple-lightbox-overlay .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.simple-lightbox-overlay .arrow.left {
  left: 2vw;
}
.simple-lightbox-overlay .arrow.right {
  right: 2vw;
}