.booking-rental-showcase {
  padding-top: clamp(2.25rem, 5vw, 4.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.75rem);
}

.booking-rental-showcase__intro {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.booking-rental-showcase__intro h2 {
  margin: 0.25rem 0 0.55rem;
}

.booking-rental-showcase__intro > :last-child {
  margin-bottom: 0;
  color: var(--muted, #465466);
}

.booking-rental-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.booking-rental-showcase__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #b8dff5;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgb(20 64 105 / 10%);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.booking-rental-showcase__card:hover {
  border-color: #72bee9;
  box-shadow: 0 16px 34px rgb(20 64 105 / 15%);
  transform: translateY(-2px);
}

.booking-rental-showcase__card.is-selected {
  border-color: #0878be;
  box-shadow: 0 0 0 3px rgb(8 120 190 / 16%), 0 16px 34px rgb(20 64 105 / 15%);
}

.booking-rental-showcase__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaf7ff;
}

.booking-rental-showcase__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.booking-rental-showcase__badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.7rem);
  padding: 0.35rem 0.65rem;
  color: #083b63;
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.booking-rental-showcase__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.15rem;
}

.booking-rental-showcase__body h3 {
  margin: 0;
  color: #102f4e;
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  line-height: 1.18;
}

.booking-rental-showcase__description {
  margin: 0;
  color: #465466;
  line-height: 1.55;
}

.booking-rental-showcase__size,
.booking-rental-showcase__setup {
  margin: 0;
  color: #29475f;
  font-size: 0.9rem;
  line-height: 1.4;
}

.booking-rental-showcase__size strong,
.booking-rental-showcase__setup strong {
  color: #103c60;
}

.booking-rental-showcase__prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
}

.booking-rental-showcase__price {
  min-width: 0;
  min-height: 4.65rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.3rem;
  padding: 0.6rem 0.45rem;
  text-align: center;
  background: #edf8ff;
  border: 1px solid #c9e8f8;
  border-radius: 10px;
}

.booking-rental-showcase__price dt {
  color: #37566e;
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.2;
}

.booking-rental-showcase__price dd {
  margin: 0;
  color: #075f9a;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.booking-rental-showcase__select {
  width: 100%;
  min-height: 3rem;
  margin-top: auto;
}

.booking-rental-showcase__select:focus-visible {
  outline: 3px solid #ffcb3d;
  outline-offset: 3px;
}

.booking-rental-showcase__status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: #075f9a;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1080px) {
  .booking-rental-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .booking-rental-showcase {
    padding-top: 2rem;
    padding-bottom: 1.75rem;
  }

  .booking-rental-showcase__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .booking-rental-showcase__body {
    padding: 1rem;
  }

  .booking-rental-showcase__price {
    min-height: 4.5rem;
  }

  .booking-rental-showcase__status {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-rental-showcase__card {
    transition: none;
  }

  .booking-rental-showcase__card:hover {
    transform: none;
  }
}
