/* =========================
   A) TOPIC LIST (topic index)
   ========================= */

/* Give the whole bbPress area a consistent rhythm */
#bbpress-forums {
  --bbp-gap: 14px;
}

/* Each topic row becomes a “card” */
#bbpress-forums ul.bbp-topics li.bbp-body ul.topic {
  margin: 0 0 var(--bbp-gap) 0;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.90);
}

/* Remove the default separators (we’re using cards instead) */
#bbpress-forums ul.bbp-topics li.bbp-body ul.topic + ul.topic {
  border-top: none;
}

/* Topic title: larger + clearer */
#bbpress-forums .bbp-topic-title .bbp-topic-permalink {
  font-size: 1.05em;
  font-weight: 650;
  text-decoration: none;
}

/* Meta line (freshness, started by, voices, etc.) */
#bbpress-forums .bbp-topic-meta,
#bbpress-forums .bbp-topic-freshness {
  font-size: 0.92em;
  opacity: 0.85;
}

/* Count columns: make them less “table-like” */
#bbpress-forums .bbp-topic-voice-count,
#bbpress-forums .bbp-topic-reply-count {
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

/* Optional: slightly tighten the header row labels */
#bbpress-forums ul.bbp-topics li.bbp-header {
  padding: 10px 0 12px 0;
  opacity: 0.8;
}


/* =========================
   B) SINGLE TOPIC (main post + replies)
   ========================= */

/* Main topic and each reply become cards */
#bbpress-forums div.bbp-topic-content,
#bbpress-forums div.bbp-reply-content {
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  padding: 14px 16px;
  line-height: 1.6;
}

/* Space between replies */
#bbpress-forums .bbp-replies .bbp-reply {
  margin: 0 0 var(--bbp-gap) 0;
}

/* Make reply headers quieter + aligned */
#bbpress-forums div.bbp-reply-header,
#bbpress-forums div.bbp-topic-header {
  padding: 8px 0;
  margin: 0 0 8px 0;
  font-size: 0.92em;
  opacity: 0.85;
  border: none;
}

/* Give each reply a subtle “thread feel” (left accent) */
#bbpress-forums .bbp-replies .bbp-reply div.bbp-reply-content {
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgba(0,0,0,0.10);
}

/* Author block cleanup */
#bbpress-forums .bbp-author-name {
  font-weight: 650;
}
#bbpress-forums .bbp-author-avatar img {
  border-radius: 999px;
  display: block;
}

/* Admin links less shouty */
#bbpress-forums .bbp-admin-links a {
  font-size: 0.92em;
  opacity: 0.85;
  text-decoration: none;
}

/* =========================
   C) FORMS (reply + new topic)
   ========================= */

#bbpress-forums fieldset.bbp-form {
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.70);
}

#bbpress-forums textarea,
#bbpress-forums input[type="text"] {
  widt
