/* room-booking.css – page-specific */

.room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.room-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.room-col img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* Sizes */
.img-small {
  height: 200px;
}

.img-large {
  height: 420px;
}

@media (max-width: 768px) {
  .room-gallery {
    grid-template-columns: 1fr;
  }

  .img-small,
  .img-large {
    height: auto;
  }
}
