/* Interior walk-through — staging section-videos */

.video {
  background: #000;
  color: #fff;
  padding-bottom: 0;
  position: relative;
}

.video__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  /* container already pads; keep title block tight above video */
  padding-bottom: 40px;
}

.video .container {
  padding-bottom: 0;
}

.video__title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 68px;
  color: #e0bb7f;
  margin: 0;
  text-align: center;
}

.video__lead {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin: 0;
  text-align: center;
}

.video__frame {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #111 center / cover no-repeat;
}

.video__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 991px) {
  .video__frame {
    height: 50vh;
  }

  .video__title {
    font-size: 56px;
    line-height: 68px;
  }
}

@media screen and (max-width: 767px) {
  .video__title {
    font-size: 32px;
    line-height: 1.2em;
  }

  .video__lead {
    font-size: 14px;
    line-height: 1.4em;
  }
}

@media screen and (max-width: 479px) {
  .video__frame {
    height: 30vh;
  }
}
