.booking-liner {
  --bc-flex-wrap: nowrap;
  --bc-flex-gap: 2em;
  --bc-images-flex: 0 0 40%;
  --bc-info-flex: 1 1 auto;
}
.booking-liner .booking-card {
  display: flex;
  align-items: stretch;
  flex-wrap: var(--bc-flex-wrap);
  gap: var(--bc-flex-gap);
}
.booking-liner .booking-card .images {
  flex: var(--bc-images-flex);
  overflow: hidden;
  border-radius: 1em;
}
.booking-liner .booking-card .image img {
  width: 100%;
  height: auto;
}
.booking-liner .booking-card .info {
  flex: var(--bc-info-flex);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.booking-liner .booking-card .info .text {
  line-height: 1.5em;
  flex: 1 1 auto;
}
.booking-liner .booking-card .info .scores {
  display: flex;
  margin: 2em;
  gap: 2em;
}
.booking-liner .booking-card .score {
  flex: 1 1 auto;
}
.booking-liner .booking-card .score .score-title {
  margin-bottom: 2em;
}
.booking-liner .booking-card .score .score-info {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 1em;
}
.booking-liner .booking-card .score .score-info svg,
.booking-liner .booking-card .score .score-info .img {
  width: 2.3em;
  height: 2.3em;
}
.booking-liner .booking-card .score .score-info.icons svg,
.booking-liner .booking-card .score .score-info.icons .img {
  width: 2em;
  height: 2em;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
  .booking-liner {
    --bc-flex-wrap: wrap;
    --bc-flex-gap: 1em;
    --bc-images-flex: 1 1 100%;
    --bc-info-flex: 1 1 100%;
  }
  .booking-liner .scores {
    gap: 1em;
    margin: 1em 0;
    flex-wrap: wrap;
  }
  .booking-liner .score .score-title {
    font-size: 0.8em;
  }
  .booking-liner .score .score-info svg,
  .booking-liner .score .score-info .img {
    width: 2.6em;
    height: 2.6em;
  }
  .booking-liner .buttons {
    align-items: center;
    justify-content: center;
  }
  .booking-liner .site-button {
    display: flex;
  }
}
