/* Grandway's two-room rate card */
.room-grid.two-rooms {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 790px;
}

.room-info p {
  margin-bottom: 10px;
}

.room-info strong {
  display: block;
  color: #7f101e;
  font-size: 18px;
}

.room-info strong small {
  color: #777;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

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