/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  width: 100%;
  min-width: 0;
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
}

.search-box button {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 8px;
  white-space: nowrap;
}

.widget {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* RECENT POST PREMIUM */
.recent-post {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 8px;
  transition: 0.3s;
}

/* hover effect */
.recent-post:hover {
  background: #f9fafb;
}

/* thumbnail */
.recent-post img {
  width: 60px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

/* title link */
.recent-post a {
  color: #222; /* FIX: tidak biru */
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  transition: 0.3s;
}

/* hover link */
.recent-post a:hover {
  color: #ff9900;
}

/* divider antar item */
.recent-post + .recent-post {
  border-top: 1px solid #f1f1f1;
  padding-top: 15px;
}

/* TABLET */
@media (min-width: 768px) {
  .recent-post img {
    width: 70px;
    height: 55px;
  }

  .recent-post a {
    font-size: 14px;
  }
}

.recent-date {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}