#room-gallery {
  width: 100%;
  padding: 0;
  margin: 0;
}
.gallery-item {
  flex: 1 1;
  margin: 5px;
  text-align: center;
}
.gallery-item img, .gallery-item iframe, .gallery-item video {
  max-width: 100%;
  height: auto;
  display: block;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  width: 100%;
  overflow: hidden;
  
}
.embed-container iframe, 
.embed-container object, 
.embed-container embed,
.embed-container video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/***/

.room-gallery-container {
  min-width: 100%;
}

.room-item {
  display: flex;
  flex-direction: row !important;
  gap: 30px;
}

.room-item .media-container {
  flex-grow: 1;
width: 100%;
display: block;
}

.room-item .media-container img,
.room-item .media-container iframe,
.room-item .media-container object,
.room-item .media-container embed,
.room-item .media-container video {
  display: block;
}

.room-item .gallery-description {
  flex-grow: 1;
  padding: 20px;
  background-color: #ffffff;
  width: 100%;
}

.room-item .gallery-description .heading {
  font-size: 20px;
}

.room-item .gallery-description .description {
  font-size: 14px;
}
