$hr_color: #D7DCE3;

.mt-80 {
  margin-top: 80px;
}

.sts-single-room-alone.style-3 {
  .sts-banner {
    height: calc(100vh - 100px);
    & > .container {
      position: relative;
      height: 100%;
      .page-title {
        &.style-3 {
          text-align: left;
        }
      }
    }
  }
  .sts-other-rooms {
    margin-top: 0;
  }
}

.sts-room-gallery-grid {
  h2 {
    font-size: 24px;
    color: var(--main-color, #1A2B48);
    font-family: "Playfair Display Bold", serif;
  }
  .gallery-grid-content {
    margin-top: 40px;
    display: grid;
    grid-gap: 40px 30px;
    grid-template-columns: auto auto;
    .gallery-grid-item {
      .gallery-grid-item-image {
        width: 100%;
        height: 100%;
        max-height: 700px;
        object-fit: cover;
      }
    }
    .gallery-grid-item:nth-child(1) {
      grid-column: 1 / 3;
    }
    .gallery-grid-item:nth-child(4) {
      grid-column: 1 / 3;
    }
    .gallery-grid-item:nth-child(7) {
      grid-column-start: 2;
      grid-row: 4 / 6;
      img {
        max-height: max-content;
      }
    }
  }
}

.facility-detail {
  display: flex;
  .facility-detail-left {
    width: 370px;
    h2 {
      font-family: "Playfair Display Bold", serif;
      font-size: 24px;
      color: var(--main-color, #1A2B48);
    }
    ul {
      margin-top: 50px;
      li {
        display: flex;
        align-items: center;
        padding: 45px 0;
        border-bottom: 1px solid $hr_color;
        &:first-child {
          border-top: 1px solid $hr_color;
        }
        & > i {
          margin-right: 20px;
        }
      }
    }
  }
  .facility-detail-right {
    padding-left: 100px;
    max-height: 700px;
    width: 100%;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}
