/* room catch phrase */
.room-catch-phrase-wrapper {
  background-image: url("../images/svg/wave_lines_bg.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.room-catch-phrase {
  font-size: 2rem;
  text-align: center;
  line-height: 1.3;
}

/* room info */
.room-info-wrapper {
  border: 2px solid #d9dfe4;
  background: white;
  width: 70%;
  padding: 1.6rem;
}

.room-info-title {
  font-size: 1.6rem;
  background: #f9f9f9;
  padding-left: 1rem;
  margin-right: 10%;
}

.room-info-body {
  padding-left: 1rem;
  margin-right: 10%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.room-info-line {
  display: flex;
  /* justify-content: space-between; */
  width: 100%;
  gap: 1rem;
}

.room-info-item-name {
  color: #747474;
  width: 112px;
  flex-shrink: 0;
}

.room-info-notice {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 520px) {
  .room-info-wrapper {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-size: 14px;
  }

  .room-info-title {
    margin-right: 0;
  }

  .room-info-body {
    margin-right: 0;
  }
}

.room-size {
  color: #747474;
  font-size: 1.2rem;
  display: flex;
  gap: 2.4rem;
  margin-bottom: 1rem;
}

.amenities-wrapper {
  border: 1px solid #d9dfe4;
  padding: 1.2rem 2rem;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.5);
}

.amenities-heading {
  font-size: 1.2rem;
  /* text-decoration: underline; */
  color: #8d8d8d;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid #d9dfe4;
}

.amenities-text {
  line-height: 1.8;
  font-size: 14px;
}

@media screen and (max-width: 1024px), (orientation: portrait) {
  .amenities-text {
    font-size: 12px;
  }
}
