/* modules/posts/style.css */
/* Styles specific to Post Feed and Cards */
/*
 * Transition note:
 * - This file remains the public compatibility stylesheet for posts.
 * - Internal concerns will be extracted into canonical private slices such as
 *   posts-detail.css, posts-form.css, posts-card.css, and posts-responsive.css.
 * - New work should prefer the canonical slice for its concern once extracted,
 *   while templates keep depending on this stable entrypoint during the
 *   migration window.
 */
@import url("./posts-detail.5ace08cbd680.css");
@import url("./posts-form.5430243a7aea.css");
@import url("./posts-card.d904d13d16cf.css");

/* Feed/card styles moved to posts-card.css (compat imported by style.css). */

/* =========================
   Dashboard Manage Toolbar
   ========================= */
.dash-head {
  margin-bottom: 24px;
}

.h-big {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.dash-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.dash-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #F1F5F9;
  flex: 1;
}

.dash-tab {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 0 0 10px 0;
  position: relative;
  transition: color .15s ease;
}

.dash-tab:hover {
  color: var(--text);
}

.dash-tab.active {
  color: var(--brand-dark);
}

.dash-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-dark);
}

.dash-tools {
  display: flex;
  gap: 12px;
}

.dash-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.dash-search-wrap svg {
  position: absolute;
  left: 10px;
  color: var(--muted);
  pointer-events: none;
}

.dash-search {
  padding: 8px 12px 8px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  width: 200px;
  transition: all 0.2s;
  outline: none;
}

.dash-search:focus {
  border-color: var(--brand-dark);
  width: 240px;
}

.dash-sort {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  outline: none;
  color: var(--text);
}

.dash-sort:focus {
  border-color: var(--brand-dark);
}


/* Card engagement styles moved to posts-card.css (compat imported by style.css). */
