

/* CARD */
.hostel-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
}

/* TOP ACCENT */
.hostel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
  border-radius: 14px 14px 0 0;
}

/* TITLE */
.hostel-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  text-align:center;
}

/* FLOAT IMAGE */
.hostel-image {
  float: right;                 /* 🔥 KEY LINE */
  width: 350px;
  margin: 0 0 15px 20px;        /* space around image */
  border-radius: 12px;
  overflow: hidden;
}

/* IMAGE STYLE */
.hostel-image img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.hostel-image:hover img {
  transform: scale(1.05);
}

/* TEXT */
.hostel-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

/* CLEAR FLOAT */
.clearfix {
  clear: both;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .hostel-image {
    width: 280px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hostel-image {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }

  .hostel-title {
    text-align: center;
  }
}