/* R108_BBB_ROOM_CARD_V148_ACTIVE */
#rooms .room-grid {
  align-items: start;
  gap: clamp(16px, 2vw, 24px);
}

#rooms .bbb-v148-card {
  overflow: visible;
  border: 1px solid #dce3e8;
  border-radius: 0 0 var(--radius, 22px) var(--radius, 22px);
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 35, 29, .14);
}

#rooms .bbb-v148-card .room-img {
  height: clamp(230px, 25vw, 345px);
  border-radius: var(--radius, 22px) var(--radius, 22px) 0 0;
  background-position: center;
}

#rooms .bbb-v148-card .room-body {
  position: relative;
  padding: 37px 17px 17px;
}

#rooms .bbb-v148-amenities {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  width: calc(100% - 30px);
  min-height: 68px;
  margin: -30px auto -34px;
  padding: 11px 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 25px rgba(15, 23, 42, .18);
}

#rooms .bbb-v148-amenities span {
  display: inline-grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #cce7f4;
  border-radius: 50%;
  background: #eef9ff;
  color: #1591ca;
  font-size: 17px;
  font-weight: 900;
}

#rooms .bbb-v148-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 0 11px;
}

#rooms .bbb-v148-divider i {
  height: 1px;
  background: #d5dee6;
}

#rooms .bbb-v148-divider b {
  color: #b8c2ce;
  font-size: 13px;
  letter-spacing: 2px;
}

#rooms .bbb-v148-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#rooms .bbb-v148-title-row h3 {
  margin: 0;
  color: #142235;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.3;
}

#rooms .bbb-v148-stars {
  flex: 0 0 auto;
  color: #ffb000;
  font-size: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

#rooms .bbb-v148-stars em {
  color: #cbd2d9;
  font-style: normal;
}

#rooms .bbb-v148-capacity {
  margin: 13px 0 12px;
}

#rooms .bbb-v148-capacity span {
  border: 0;
  background: #f0f6ff;
  color: #1553a0;
  font-size: 11px;
}

#rooms .bbb-v148-desc {
  display: -webkit-box;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #52606d;
  font-size: 13px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#rooms .bbb-v148-more {
  display: inline-block;
  margin-top: 2px;
  color: #064f59;
  font-size: 12px;
  font-weight: 900;
}

#rooms .bbb-v148-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 13px 0 11px;
}

#rooms .bbb-v148-price-row > span {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

#rooms .bbb-v148-price {
  background: #fff7df;
  color: #996300;
}

#rooms .bbb-v148-extra {
  border: 1px solid #d7dce2;
  background: #f6f7f9;
  color: #374151;
}

#rooms .bbb-v148-book {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: #063f48;
  box-shadow: 0 8px 0 #dce7e9;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

#rooms .bbb-v148-book:hover {
  background: #07535e;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  #rooms .room-grid {
    grid-template-columns: 1fr;
  }

  #rooms .bbb-v148-card .room-img {
    height: clamp(250px, 72vw, 390px);
  }

  #rooms .bbb-v148-card .room-body {
    padding-right: 15px;
    padding-left: 15px;
  }

  #rooms .bbb-v148-amenities {
    width: calc(100% - 32px);
    gap: 6px;
    padding-right: 10px;
    padding-left: 10px;
  }

  #rooms .bbb-v148-amenities span {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  #rooms .bbb-v148-amenities {
    gap: 4px;
  }

  #rooms .bbb-v148-amenities span {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
    font-size: 14px;
  }
}