/* Room cards grid layout for static display */
.section-margin #rooms .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.section-margin #rooms .card-explore {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 12px;
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-margin #rooms .card-explore__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
/* Wider cards on large screens: make 3 columns instead of 4 */
@media (min-width: 992px) {
  .section-margin #rooms .col-lg-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* slightly taller thumbnails to match wider layout */
  .section-margin #rooms .card-explore__img img {
    height: 220px;
  }
  .section-margin #rooms .row { gap: 28px; }
}
@media (max-width: 991px) {
  .section-margin #rooms .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .section-margin #rooms .col-md-4, .section-margin #rooms .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Small UX improvements: align icons, prices and make CTA full width on small screens */
.section-margin #rooms .card-explore__titl a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}
.section-margin #rooms .card-explore__title {
  margin: 8px 0 6px;
  font-size: 1.05rem;
}
.section-margin #rooms .card-explore__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
}
.section-margin #rooms .card-explore__link {
  width: 100%;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .section-margin #rooms .card-explore__link { padding: 10px 12px; }
  .section-margin #rooms .card-explore__price { font-size: 1rem; }
}
