/* ===== PROGRAM PAGE ===== */

.program-hero{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 140px;
  border: 1px solid rgba(15,47,74,.14);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  background: url("/assets/img/gedung-aak.jpg") center/cover no-repeat;
  margin-bottom: 16px;
}
.program-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(rgba(255,255,255,.65), rgba(255,255,255,.65));
}
.program-hero__inner{
  position:relative;
  padding: 18px 16px;
}
.program-hero__inner h2{
  margin:0 0 6px;
  color:#154360;
  font-weight:1000;
}
.program-hero__inner p{
  margin:0;
  color: rgba(15,47,74,.82);
  font-weight:800;
  font-size:13px;
}

/* Program grid */
.program-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.program-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(15,47,74,.14);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.program-card h3{
  margin:0 0 6px;
  font-size: 14px;
  font-weight:1000;
  color:#154360;
}
.program-card p{
  margin:0;
  font-size: 12px;
  font-weight:800;
  color: rgba(15,47,74,.85);
  line-height:1.6;
}

/* List kegiatan */
.program-list{
  margin:0;
  padding-left: 18px;
}
.program-list li{
  margin-bottom: 8px;
  font-size: 13px;
  font-weight:800;
  color: rgba(15,47,74,.85);
}

/* Responsive */
@media (max-width:980px){
  .program-grid{
    grid-template-columns: 1fr;
  }
}
