/* ============================================================
   PPK MSF — Agenda Kegiatan

   Device visualnya beda dari fitur lain (bukan garis emas/marun lagi
   yang sudah dipakai Teman Keluarga & Perjalanan) -- di sini pakai
   "date-block" ala kalender sobek: kotak navy dengan tanggal besar,
   pas untuk konten yang memang berbasis tanggal, bukan sekadar
   dekorasi generik.
   ============================================================ */

.agenda_area {
  background-color: #F9FAFB;
}

.agenda-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1A3A6B;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8edf3;
}

.agenda-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid #e8edf3;
  padding: 22px;
  margin-bottom: 16px;
}
.agenda-card.selesai {
  opacity: 0.65;
}

.agenda-date-block {
  flex: none;
  width: 72px;
  height: 72px;
  background: #1A3A6B;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.agenda-date-block .day {
  font-size: 26px;
  font-weight: 700;
}
.agenda-date-block .month {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  opacity: 0.85;
}

.agenda-body {
  flex: 1;
  min-width: 0;
}
.agenda-jenis {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #1B6EC2;
  margin-bottom: 6px;
}
.agenda-title {
  font-size: 17px;
  font-weight: 700;
  color: #1A3A6B;
  margin-bottom: 6px;
}
.agenda-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #747E88;
  margin-bottom: 8px;
}
.agenda-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.agenda-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 10px;
}
.agenda-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #C0392B;
}

@media (max-width: 575px) {
  .agenda-card {
    padding: 16px;
    gap: 14px;
  }
  .agenda-date-block {
    width: 58px;
    height: 58px;
  }
  .agenda-date-block .day {
    font-size: 20px;
  }
  .agenda-date-block .month {
    font-size: 10px;
  }
  .agenda-title {
    font-size: 15px;
  }
}

.agenda-empty-note {
  padding: 20px 0;
  color: #aaa;
  font-size: 14px;
}

/* ---- Preview di homepage ---- */
.agenda-preview-area {
  padding: 60px 0;
  background: #fff;
}
