.last-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin: 3rem auto;
  max-width: 1300px;
  padding: 0 1rem;
}

.last-room-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.last-room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}


.info {
    padding: 1.3rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.info h3 {
  font-size: 2.2rem;
  color: #0c1f47;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.info h3 a {
    text-decoration: none;
    color: #0c1f47;
    font-size: 24px;
    text-align: center;
    font.weight:  bold;
    border-bottom: none !important;
}

.info h3 a:hover {
  text-decoration: underline;
}

.info .dates {
    font-size: 1.5rem;
    color: #526a97;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info .desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.3rem;
  line-height: 1.4;
}

.bottom {
  margin-top: auto;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.price {
    display: block;
    color: #00a65a;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.btn-book {
    display: block;
    width: 100%;
    text-align: center;
    background: #ffcc00;
    color: #0c1f47;
    font-weight: 700;
    font-size: 2.05rem;
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.btn-book:hover {
  background: #ffb400;
  transform: scale(1.02);
}

.no-rooms-msg {
  text-align: center;
  color: #666;
  margin: 3rem 0;
  font-size: 1.2rem;
}

