/* Vinayak Sidebar Recent Posts */

.bb-premium-sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bb-post-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.06),
    0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bb-post-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.16),
    0 4px 10px rgba(0,0,0,0.08);
}

.bb-post-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.bb-post-thumb img,
.bb-thumb-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: #e5e7eb;
}

.bb-post-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #1f2933;
}

.bb-post-date {
  font-size: 12.5px;
  color: #6b7280;
}

.bb-post-link:hover .bb-post-title {
  color: #2f6f4e;
}

/* Lazy blur */
.bb-lazy-img {
  filter: blur(12px);
  transform: scale(1.05);
  opacity: 0;
  transition: filter 0.6s ease, transform 0.6s ease, opacity 0.6s ease;
}

.bb-lazy-img:not([src=""]) {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

@media (prefers-color-scheme: dark) {
  .bb-post-item {
    background: #121212;
  }
  .bb-post-title {
    color: #e5e7eb;
  }
  .bb-post-date {
    color: #9ca3af;
  }
}
