.hotel-card.landscape{
	background:#fff;
	display:flex;
	align-items:stretch;
}

.hotel-card.landscape .image {
  flex: 0 0 30%;
  position: relative;
  overflow: hidden;
}

.hotel-card.landscape .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills the box */
  display: block;      /* remove inline gaps */
}

.hotel-card.landscape .info{
	padding:2rem;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.star {
  position: relative;
  display: inline-block;
  font-size: 1rem; /* control size */
  width: 1em;
  height: 1em;
  color: var(--copper-color); /* filled star color */

}

.star .bg {
}

.star .fg {
  position: absolute;
  inset: 0;
  width: calc(var(--p) * 100%);
  overflow: hidden;
}



/* Accessibility helper */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
