/* ══════════════════════════════════════════
   LOST.CSS — Lost & Found
   ══════════════════════════════════════════ */

.lf-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.post-btn {
  background: var(--accent); color: white;
  border: none; padding: 10px 18px;
  border-radius: 12px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.18s; font-family: inherit;
}
.post-btn:hover { background: var(--accent2); }
.lf-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 16px; margin-bottom: 10px;
  transition: transform 0.15s;
}
.lf-card:hover { transform: translateY(-1px); }
.lf-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 700; margin-bottom: 8px;
}
.lf-lost  { background: rgba(255,45,120,0.12) !important; color: var(--neon-pink) !important; border: 1px solid rgba(255,45,120,0.3) !important; box-shadow: 0 0 10px rgba(255,45,120,0.15) !important; }
.lf-found { background: rgba(0,255,136,0.12) !important; color: var(--neon-green) !important; border: 1px solid rgba(0,255,136,0.3) !important; box-shadow: 0 0 10px rgba(0,255,136,0.15) !important; }
.lf-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.lf-meta  { font-size: 13px; color: var(--text2); }
.lf-desc  { font-size: 14px; margin-top: 8px; line-height: 1.5; }
.lf-contact {
  margin-top: 10px; padding: 8px 12px;
  background: var(--surface2); border-radius: 10px;
  font-size: 13px; color: var(--text2);
  display: flex; align-items: center; gap: 6px;
}
