/* Remember Last Post Slide-in */
#remember-last-post-container {
  position: fixed;
  bottom: 25px;
  right: -380px; /* सुरुमा स्क्रिन बाहिर लुकेको */
  width: 320px;
  background: #ffffff;
  border-left: 5px solid #d32f2f; /* समाचार पोर्टल लुक्स */
  box-shadow: -5px 5px 25px rgba(0,0,0,0.2);
  padding: 15px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 999999;
  border-radius: 10px;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

#remember-last-post-container.show {
  right: 20px; /* ५०% स्क्रोल भएपछि यहाँ आउँछ */
}

#remember-last-post-container .close-remember {
  position: absolute;
  top: 5px;
  right: 12px;
  cursor: pointer;
  font-size: 24px;
  color: #aaa;
  line-height: 1;
}
#remember-last-post-container .close-remember:hover {
  color: #333;
}

#remember-last-post-container .remember-label {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #d32f2f;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
}

#remember-last-post-container .remember-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

#remember-last-post-container .remember-thumb {
  width: 85px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  background: #f5f5f5;
}

#remember-last-post-container .remember-link {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#remember-last-post-container .remember-link:hover {
  color: #007bff;
}
