/* public/assets/css/landing/sidebar.css */

.sb{
  display: grid;
  gap: 14px;
}

.sb-card{
  background: #fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.sb-card--accent{
  background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
  border-color: rgba(185,28,28,.18);
}

.sb-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.sb-title{
  font-weight: 900;
  color: #111827;
  font-size: 14px;
}

.sb-link{
  font-weight: 800;
  font-size: 12px;
  color: #b91c1c;
  text-decoration: none;
}
.sb-link:hover{ text-decoration: underline; }

.sb-miniBtn{
  border: 1px solid rgba(17,24,39,.12);
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 900;
  cursor: pointer;
}

.sb-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sb-item{
  padding: 10px 10px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 14px;
  background: #fff;
}

.sb-meta{
  font-size: 12px;
  color: rgba(17,24,39,.55);
  margin-bottom: 4px;
}

.sb-item__title{
  display: block;
  font-weight: 850;
  color: #111827;
  text-decoration: none;
  line-height: 1.25;
}
.sb-item__title:hover{ color: #b91c1c; }

.sb-stack{
  display: grid;
  gap: 10px;
}

.sb-article{
  display: block;
  text-decoration: none;
  padding: 10px 10px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 14px;
  background: #fff;
}
.sb-article__title{
  font-weight: 900;
  color: #111827;
  margin-bottom: 4px;
}
.sb-article__desc{
  color: rgba(17,24,39,.68);
  font-size: 13px;
  line-height: 1.45;
}

.sb-person{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.sb-person__photo{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.10);
  background: #f8fafc;
  flex: 0 0 52px;
}
.sb-person__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sb-person__name{
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
}

.sb-person__role{
  font-size: 12px;
  color: rgba(17,24,39,.60);
}

.sb-text{
  color: rgba(17,24,39,.74);
  line-height: 1.6;
  font-size: 13px;
}

.sb-quoteBox{
  background: rgba(17,24,39,.04);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 14px;
  padding: 12px;
  color: rgba(17,24,39,.78);
  line-height: 1.6;
  font-size: 13px;
}

.sb-quote{
  font-weight: 900;
  font-size: 16px;
  line-height: 1.45;
  color: #111827;
}

.sb-tags{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sb-tag{
  font-size: 12px;
  font-weight: 850;
  color: #b91c1c;
  background: rgba(185,28,28,.08);
  border: 1px solid rgba(185,28,28,.12);
  padding: 6px 10px;
  border-radius: 999px;
}

/* sticky di desktop */
@media (min-width: 992px){
  .sb-sticky{
    position: sticky;
    top: 96px; /* sesuaikan tinggi header */
  }
}
