/* ==========================================================
   PROGRAM.CSS – HYUNDAI BSD CITY (FINAL CLEAN)
   ========================================================== */

/* BODY */
body.program-page {
  background-color: #f6f7fb;
  padding-top: 90px;
  color: #222;
}

/* ==========================================================
   JUDUL UTAMA
   ========================================================== */
.program-content > h1 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500; /* Hyundai Sans only has weight 500 */
  line-height: 1.4;
  color: #111;
  margin: 35px 0 30px;
}

.program-content > h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background-color: #007bff;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ==========================================================
   CARD WRAPPER
   ========================================================== */
.program-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 0 5vw 80px;
}

/* ==========================================================
   CARD ITEM
   ========================================================== */
.program-item {
  flex: 1 1 260px;
  max-width: 340px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  padding-bottom: 22px;
}

.program-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,35,104,0.18);
}

/* ==========================================================
   GAMBAR PROGRAM — NATURAL (NO CROP)
   ========================================================== */
.program-item img {
  width: 100%;
  height: auto;
  object-fit: contain;   /* NO CROP */
  display: block;
  border-bottom: 1px solid #eee;
}

/* ==========================================================
   JUDUL CARD
   ========================================================== */
.program-item h2 {
  font-family: "Hyundai Sans", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #003899;
  margin: 20px 12px 10px;
  line-height: 1.45;
}

/* ==========================================================
   DESKRIPSI CARD
   ========================================================== */
.program-item p {
  font-family: "Hyundai Sans", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500; /* Hyundai Sans weight */
  color: #555;
  line-height: 1.9;
  max-width: 85%;
  margin: 0 auto;
}

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

/* MOBILE PADDING TEKS */
@media (max-width: 600px) {
  .program-item p {
    max-width: 100%;
    padding: 0 20px;
  }
}
/* ===============================
   PROGRAM PAGE NOTES BOX
   =============================== */

.program-notes {
  max-width: 900px;
  margin: 40px auto 60px;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.program-notes ul {
  margin-left: 20px;
}

.program-notes li {
  margin-bottom: 12px;
}

.program-notes a {
  color: #002368;
  font-weight: 600;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .program-notes {
    padding: 15px 18px;
    margin: 30px auto 45px;
    font-size: 0.9rem;
  }
}
