/* ===============================
   CARD BASE
=================================*/
.uni-card {
  border-radius: 0 20px 20px 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.uni-card:hover {
  transform: translateY(-5px);
}

/* ===============================
   HEADER
=================================*/
.uni-header {
  background: #14293E;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}

/* ===============================
   IMAGE
=================================*/
.uni-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===============================
   BODY
=================================*/
.uni-body {
  padding: 15px;
}

.uni-body p {
  margin: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.uni-body i {
  color: #14293E;
  margin-right: 8px;
  font-size: 14px;
}

/* ===============================
   FOOTER BUTTONS
=================================*/
.uni-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
}

.uni-footer .btn-apply,
.uni-footer .btn-know {
  flex: 1;
  background: #14293E;
  color: #fff;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  transition: 0.3s;
}

.uni-footer .btn-apply:hover,
.uni-footer .btn-know:hover {
  background: #0f1f30;
  color: #fff;
}

/* ===============================
   TABLET RESPONSIVE
=================================*/
@media (max-width: 992px) {
  .uni-img {
    height: 160px;
  }
}

/* ===============================
   MOBILE RESPONSIVE
=================================*/
@media (max-width: 576px) {

  .uni-card {
    border-radius: 0 15px 15px 15px;
  }

  .uni-header {
    font-size: 14px;
    padding: 10px;
  }

  .uni-img {
    height: 140px;
  }

  .uni-body {
    padding: 12px;
  }

  .uni-body p {
    font-size: 13px;
  }

  /* Buttons stack (mobile friendly) */
  .uni-footer {
    flex-direction: column;
  }

  .uni-footer .btn-apply,
  .uni-footer .btn-know {
    width: 100%;
    font-size: 13px;
    padding: 10px;
  }

  /* Remove hover effect on mobile */
  .uni-card:hover {
    transform: none;
  }
}
