/* ============================================================
   Keokuk Forum — Recent Posts & PWA UI CSS
   Append to forum.css
   ============================================================ */

/* --- Recent Posts Feed ------------------------------------ */
.kf-recent-post {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.12s;
}
.kf-recent-post:hover { border-color: var(--border-hover); }

.kf-recent-post__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kf-avatar--sm {
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.kf-recent-post__uname {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.kf-recent-post__uname:hover { color: var(--accent); }
.kf-recent-post__meta {
  font-size: 0.76rem;
  color: var(--text-3);
  margin-left: 6px;
}
.kf-recent-post__meta a { color: var(--text-3); }
.kf-recent-post__meta a:hover { color: var(--accent); }

.kf-recent-post__thread {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  line-height: 1.3;
}
.kf-recent-post__thread:hover { text-decoration: underline; }

.kf-recent-post__body {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}
