

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

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

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

/* IMAGE LEFT FLOAT */
.canteen-image {
  float: left;                  /* 🔥 LEFT SIDE IMAGE */
  width: 350px;
  margin: 0 20px 15px 0;
  border-radius: 12px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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