/* saved-articles.css - Artikel Tersimpan */

.lj-saved-articles-panel{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:24px;
  box-shadow:0 14px 40px rgba(15,23,42,.06);
}
.lj-saved-articles-panel h2{
  margin:0 0 18px;
  font-size:28px;
  font-weight:900;
}
.lj-saved-list{
  display:grid;
  gap:14px;
}
.lj-saved-item{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:14px;
  align-items:center;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:12px;
  background:#fff;
  color:#071d33;
}
.lj-saved-thumb img,
.lj-saved-thumb span{
  width:96px;
  height:72px;
  object-fit:cover;
  border-radius:14px;
  background:#f1f5f9;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
  color:#64748b;
}
.lj-saved-content b{
  display:block;
  font-size:16px;
  line-height:1.35;
  margin-bottom:6px;
}
.lj-saved-content small{
  color:#64748b;
  font-size:13px;
}
@media(max-width:640px){
  .lj-saved-item{
    grid-template-columns:1fr;
  }
  .lj-saved-thumb img,
  .lj-saved-thumb span{
    width:100%;
    height:auto;
    min-height:120px;
  }
}
