/* Liberation Vision 2.0 — Dashboard-Shell nach Blueprint docs/blueprints/sammlung5.png
   Struktur: Sidebar 250px | Feed-Mitte | Rail 480px · Hero als kompaktes Banner in der Mitte.
   Nutzt ausschließlich die Foundation-Tokens aus liberation-foundation-v52.css. */

/* ===== Shell: Sidebar | Mitte | Rail (Blueprint: 250 / ~690 / ~485 auf 1536) ===== */
.home-digest-section .container.dash-shell {
  width: min(1720px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 480px;
  gap: 22px;
  align-items: start;
}

.home-digest-section {
  padding-top: 28px;
}

/* ===== Hero-Banner (Blueprint: ~195px hohes Banner in der Mittelspalte) ===== */
.dash-hero {
  position: relative;
  min-height: 200px;
  border-radius: var(--lp-card-radius);
  border: 1px solid var(--lp-border-gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 26px 30px;
  background: #060402;
}

.dash-hero-eye {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 30%;
  opacity: 0.96;
}

.dash-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 4, 2, 0.96) 0%, rgba(5, 4, 2, 0.82) 32%, rgba(5, 4, 2, 0.25) 58%, rgba(5, 4, 2, 0) 100%);
}

.dash-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.dash-hero-copy h1 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--lp-text-cream);
}

.dash-hero-copy h1 em {
  font-style: normal;
  color: var(--lp-primary-gold);
}

.dash-hero-copy p {
  margin: 10px 0 0;
  color: rgba(255, 246, 223, 0.85);
  font-size: 0.95rem;
}

.dash-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.dash-hero-actions .btn {
  padding: 11px 20px;
  font-size: 0.88rem;
}

/* ===== Linke Sidebar (Blueprint: flacher Panel-Streifen, Status + User unten) ===== */
.dash-nav {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 12px;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(180deg, rgba(14, 11, 7, 0.96), rgba(9, 7, 4, 0.96));
}

.dash-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 14px;
  border-bottom: 1px solid var(--lp-border-gold);
}

.dash-nav-logo {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.dash-nav-brand strong {
  color: var(--lp-text-cream);
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dash-nav-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--lp-text-muted);
  font-weight: 700;
  font-size: 0.87rem;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.dash-nav-item .lc-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.dash-nav-item:hover {
  color: var(--lp-text-cream);
  background: rgba(255, 255, 255, 0.05);
}

.dash-nav-item.is-active {
  color: var(--lp-bright-gold);
  background: var(--lp-soft-gold);
  border: 1px solid rgba(243, 199, 91, 0.3);
}

.dash-nav-item.is-soon {
  cursor: default;
  opacity: 0.55;
}

.dash-nav-item.is-soon:hover {
  background: none;
  color: var(--lp-text-muted);
}

.dash-nav-item.is-soon small {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--lp-border-gold);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-text-muted);
}

/* Status-Card (Blueprint: "Dein Status" über der User-Card) */
.dash-status-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--lp-border-gold);
  background: rgba(255, 255, 255, 0.04);
}

.dash-status-label {
  display: block;
  color: var(--lp-text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.dash-status-card > strong {
  display: block;
  margin: 4px 0 10px;
  color: var(--lp-text-cream);
  font-size: 1.05rem;
}

.dash-status-card .v48-progress-bar {
  margin: 0 0 10px;
}

.dash-status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--lp-bright-gold);
  font-weight: 800;
  font-size: 0.85rem;
}

.dash-status-row .lc-icon {
  width: 14px;
  height: 14px;
}

.dash-status-row em {
  font-style: normal;
  color: var(--lp-text-muted);
  font-weight: 700;
}

.dash-user-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--lp-border-gold);
  background: rgba(255, 255, 255, 0.04);
}

.dash-user-copy {
  min-width: 0;
  flex: 1;
}

.dash-user-copy strong {
  display: block;
  color: var(--lp-text-cream);
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-user-copy span {
  display: block;
  color: var(--lp-text-muted);
  font-size: 0.76rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Mitte ===== */
.dash-center {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.dash-center .dash-stats-row,
.dash-center .dash-actions-row {
  margin-bottom: 0;
}

/* Composer (Blueprint: Avatar + Eingabe + Posten, darunter Chip-Reihe) */
.dash-composer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.dash-composer-avatar {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--lp-border-gold);
}

.dash-composer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-composer input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--lp-border-gold);
  background: rgba(255, 255, 255, 0.045);
  color: var(--lp-text-cream);
  font: inherit;
  outline: none;
}

.dash-composer input:focus {
  border-color: var(--lp-primary-gold);
}

.dash-composer input::placeholder {
  color: var(--lp-text-muted);
}

.dash-composer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.dash-composer-chips button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--lp-border-gold);
  background: rgba(255, 255, 255, 0.04);
  color: var(--lp-text-muted);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.dash-composer-chips button:hover {
  color: var(--lp-bright-gold);
  border-color: var(--lp-primary-gold);
}

.dash-composer-chips .lc-icon {
  width: 14px;
  height: 14px;
  color: currentColor;
}

/* Feed-Posts (Blueprint: volle Post-Card — Kopf, Text, breites Medium, Aktionszeile) */
.dash-feed-list.db-post-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.dash-feed-list .db-post-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-radius: var(--lp-card-radius);
}

.dash-feed-list .db-post-head {
  order: 1;
  margin-bottom: 0;
  align-items: center;
}

.dash-feed-list .db-post-card p {
  order: 2;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.dash-feed-list .db-post-media {
  order: 3;
  width: 100%;
  height: 170px;
  max-height: none;
  margin: 0;
  object-fit: cover;
  border-radius: 12px;
}

.dash-feed-list .db-post-meta {
  order: 4;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.84rem;
}

.dash-feed-list .db-post-meta span:last-of-type {
  margin-left: auto;
  color: var(--lp-bright-gold);
  font-weight: 800;
}

.dash-feed-list .db-post-meta .ghost-inline {
  display: none;
}

.dash-feed-list video.db-post-media {
  pointer-events: none;
}

/* ===== Guide (Blueprint: kompakte Card unter dem Feed) ===== */
.dash-guide {
  padding: 20px;
  border-radius: var(--lp-card-radius);
  border: var(--lp-card-border);
  background: var(--lp-card-bg);
}

.dash-guide-sub {
  margin: 2px 0 14px;
  color: var(--lp-text-muted);
  font-size: 0.86rem;
}

.dash-guide-form {
  display: flex;
  gap: 10px;
}

.dash-guide-form .ask-search-shell {
  flex: 1;
  min-width: 0;
}

.dash-guide .prompt-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dash-guide .ask-response {
  margin-top: 14px;
}

/* ===== Rechte Rail (Blueprint: ~480px, Duo-Reihe für Trends + Top Creator) ===== */
.dash-rail {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: 88px;
}

.dash-rail .dash-widget {
  padding: 16px;
}

.dash-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.dash-widget-head h4 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-text-cream);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dash-widget-link {
  color: var(--lp-primary-gold);
  font-weight: 800;
  font-size: 0.82rem;
}

.dash-widget-chip {
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--lp-border-gold);
  color: var(--lp-text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.dash-widget-footer {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 212, 99, 0.12);
  color: var(--lp-primary-gold);
  font-weight: 800;
  font-size: 0.84rem;
  text-align: center;
}

.dash-value-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.dash-value-cols strong {
  display: block;
  color: var(--lp-bright-gold);
  font-size: 1.05rem;
}

.dash-value-cols div:nth-child(2) strong {
  color: var(--lp-text-cream);
}

.dash-value-cols span {
  display: block;
  margin-top: 2px;
  color: var(--lp-text-muted);
  font-size: 0.72rem;
}

.dash-engine-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dash-engine-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(255, 212, 99, 0.1);
}

.dash-engine-list li:last-child {
  border-bottom: none;
}

.dash-engine-emoji {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 9px;
  background: var(--lp-soft-gold);
  font-size: 0.85rem;
}

.dash-engine-list div {
  min-width: 0;
  flex: 1;
}

.dash-engine-list strong {
  display: block;
  color: var(--lp-text-cream);
  font-size: 0.85rem;
  font-weight: 700;
}

.dash-engine-list b {
  flex: none;
  color: var(--lp-bright-gold);
  font-size: 0.84rem;
  white-space: nowrap;
}

.dash-rail-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.dash-trend-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dash-trend-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
}

.dash-trend-list span {
  color: var(--lp-primary-gold);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-trend-list b {
  color: var(--lp-text-muted);
  font-weight: 700;
  white-space: nowrap;
}

.dash-top-creators {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dash-top-creators li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px;
}

.dash-top-creators li > b {
  flex: none;
  width: 16px;
  color: var(--lp-bright-gold);
  font-size: 0.86rem;
}

.dash-top-creators .dash-avatar-chip {
  width: 30px;
  height: 30px;
  font-size: 0.68rem;
}

.dash-top-creators div {
  min-width: 0;
  flex: 1;
}

.dash-top-creators strong {
  display: block;
  color: var(--lp-text-cream);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-top-creators div span {
  display: block;
  color: var(--lp-text-muted);
  font-size: 0.72rem;
}

.dash-top-empty {
  padding: 10px;
  color: var(--lp-text-muted);
  font-size: 0.8rem;
  border: 1px dashed var(--lp-border-gold);
  border-radius: 12px;
  text-align: center;
  list-style: none;
}

/* ===== Responsive ===== */
@media (max-width: 1500px) {
  .home-digest-section .container.dash-shell {
    grid-template-columns: 240px minmax(0, 1fr) 400px;
  }
}

@media (max-width: 1280px) {
  .home-digest-section .container.dash-shell {
    grid-template-columns: 64px minmax(0, 1fr) 340px;
  }
  .dash-nav {
    padding: 14px 8px;
    align-items: center;
  }
  .dash-nav-brand strong,
  .dash-nav-item > small,
  .dash-user-copy,
  .dash-user-card .ghost-inline,
  .dash-status-card {
    display: none;
  }
  .dash-nav-item {
    justify-content: center;
    padding: 11px;
    font-size: 0;
    gap: 0;
  }
  .dash-nav-brand {
    padding: 4px 0 12px;
    justify-content: center;
  }
  .dash-user-card {
    justify-content: center;
    padding: 8px;
    border: none;
    background: none;
  }
  .dash-rail-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dash-composer {
    flex-wrap: wrap;
  }
  .dash-composer input {
    flex: 1 1 100%;
    order: 3;
  }
  .dash-guide-form {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .home-digest-section .container.dash-shell {
    grid-template-columns: 1fr;
  }
  .dash-nav {
    position: static;
    max-height: none;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    overflow-x: auto;
  }
  .dash-nav-brand,
  .dash-status-card {
    display: none;
  }
  .dash-nav-list {
    display: flex;
    flex: 1;
    gap: 4px;
  }
  .dash-nav-item {
    flex: none;
    font-size: 0.84rem;
    justify-content: flex-start;
    gap: 8px;
  }
  .dash-user-card {
    display: none;
  }
  .dash-rail {
    position: static;
  }
  .dash-hero {
    min-height: 180px;
    padding: 20px;
  }
}

/* ===== Feed Blueprint (v5.4) ===== */
#feed.feed-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(229, 165, 41, 0.12), transparent 34%),
    radial-gradient(circle at 42% 0%, rgba(231, 184, 74, 0.07), transparent 42%),
    linear-gradient(180deg, #040301 0%, #050402 100%);
}

#feed.feed-section::before {
  content: "";
  position: absolute;
  width: min(42vw, 680px);
  aspect-ratio: 1 / 1;
  right: -12%;
  top: 22%;
  background: url("assets/images/app-icon-eye.png") center / contain no-repeat;
  opacity: 0.06;
  filter: blur(1px) saturate(0.9);
  pointer-events: none;
}

#feed.feed-section::after {
  content: "";
  position: absolute;
  width: min(64vw, 820px);
  height: 420px;
  left: 40%;
  top: 100px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(223, 154, 28, 0.14) 0%, rgba(223, 154, 28, 0.03) 32%, transparent 68%);
  pointer-events: none;
}

#feed .feed-stage {
  position: relative;
  z-index: 1;
  width: min(1420px, calc(100% - 34px));
  display: grid;
  grid-template-columns: 148px minmax(0, 780px) 116px;
  justify-content: center;
  gap: 20px;
  align-items: start;
}

#feed .feed-left-rail {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 201, 84, 0.2);
  background: linear-gradient(180deg, rgba(13, 10, 6, 0.96), rgba(7, 5, 3, 0.95));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.45);
}

#feed .feed-rail-item {
  border: 1px solid transparent;
  border-radius: 15px;
  min-height: 68px;
  padding: 8px 6px;
  display: grid;
  place-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 240, 208, 0.82);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

#feed .feed-rail-item .lc-icon {
  width: 22px;
  height: 22px;
}

#feed .feed-rail-item:hover {
  border-color: rgba(255, 204, 96, 0.26);
  color: #ffe4a2;
}

#feed .feed-rail-item.is-active {
  border-color: rgba(255, 206, 101, 0.54);
  color: #ffe7aa;
  background: linear-gradient(145deg, rgba(245, 187, 62, 0.2), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 0 1px rgba(255, 206, 101, 0.2) inset, 0 12px 36px rgba(0, 0, 0, 0.34);
}

#feed .feed-rail-level {
  margin-top: 8px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 206, 101, 0.24);
  background: rgba(255, 255, 255, 0.02);
}

#feed .feed-rail-level strong {
  display: block;
  color: #ffd97f;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

#feed .feed-rail-level span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 242, 216, 0.65);
  font-size: 0.74rem;
}

#feed .feed-main-column {
  width: 100%;
  display: grid;
  gap: 10px;
}

#feed .feed-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#feed .feed-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#feed .feed-filters button,
#feed .feed-filter-tools {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 203, 90, 0.22);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 243, 218, 0.86);
  font-weight: 800;
}

#feed .feed-filters button.is-active {
  border-color: rgba(255, 206, 96, 0.54);
  background: linear-gradient(140deg, rgba(246, 185, 54, 0.22), rgba(255, 255, 255, 0.03));
  color: #ffe6a8;
  box-shadow: 0 0 0 1px rgba(255, 206, 96, 0.16) inset;
}

#feed .feed-filter-tools {
  width: 46px;
  padding: 0;
  display: grid;
  place-items: center;
}

#feed .feed-filter-tools .lc-icon {
  width: 18px;
  height: 18px;
}

#feed .feed-quick-composer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 203, 90, 0.2);
  background: linear-gradient(165deg, rgba(13, 10, 6, 0.95), rgba(8, 6, 3, 0.95));
}

#feed .feed-composer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 203, 90, 0.38);
  flex: none;
}

#feed .feed-composer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#feed #postInput {
  flex: 1;
  min-width: 0;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 203, 90, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #fff6df;
  padding: 0 14px;
}

#feed #postInput::placeholder {
  color: rgba(255, 241, 211, 0.5);
}

#feed .feed-meta-note {
  margin: 0 0 2px;
  color: rgba(255, 238, 202, 0.62);
  font-size: 0.79rem;
}

#feed .feed-wall.lc-real-feed-wall {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 14px;
}

#feed .feed-wall .lc-post-card {
  position: relative;
  border: 1px solid rgba(255, 203, 90, 0.18);
  border-radius: 24px;
  background: linear-gradient(170deg, rgba(10, 8, 5, 0.98), rgba(6, 5, 3, 0.95));
  padding: 14px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.44);
}

#feed .feed-wall .lc-post-head {
  margin-bottom: 9px;
}

#feed .feed-wall .lc-avatar.small {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

#feed .feed-wall .lc-author strong {
  font-size: 0.96rem;
  font-weight: 800;
}

#feed .feed-wall .lc-author span {
  font-size: 0.82rem;
  color: rgba(255, 243, 218, 0.56);
}

#feed .feed-wall .lc-post-body {
  margin: 0 0 10px;
  font-size: 1.01rem;
  line-height: 1.38;
  color: #f9f2e1;
}

#feed .feed-wall .lc-media-wrap {
  position: relative;
}

#feed .feed-wall .lc-media,
#feed .feed-wall .lc-video-frame {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  border: 1px solid rgba(255, 203, 90, 0.16);
  overflow: hidden;
  background: #040302;
}

#feed .feed-wall .lc-video-frame video,
#feed .feed-wall .lc-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#feed .lc-post-badges {
  position: absolute;
  inset: auto 10px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

#feed .lc-post-cat,
#feed .lc-post-media-meta {
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 104, 0.28);
  background: rgba(4, 3, 2, 0.76);
  color: #ffe6ac;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 11px;
}

#feed .lc-post-actions {
  margin-top: 10px !important;
  border-top-color: rgba(255, 203, 90, 0.16) !important;
  gap: 10px !important;
  padding-top: 10px !important;
}

#feed .lc-post-actions .lc-action {
  min-height: 38px !important;
  padding: 0 12px !important;
  border-color: rgba(255, 203, 90, 0.2) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

#feed .lc-post-actions .lc-share,
#feed .lc-post-actions .lc-save {
  color: rgba(255, 238, 202, 0.88) !important;
}

#feed .lc-comment-toggle.active {
  border-color: rgba(255, 206, 96, 0.52) !important;
  background: linear-gradient(135deg, rgba(255, 206, 96, 0.2), rgba(255, 255, 255, 0.07)) !important;
  color: #ffe6aa !important;
}

#feed .lc-post-lp {
  margin-left: auto;
  align-self: center;
  color: #f5c95f;
  font-weight: 900;
  letter-spacing: 0.02em;
}

#feed .feed-right-actions {
  position: sticky;
  top: 118px;
  display: grid;
  justify-items: center;
  gap: 12px;
}

#feed .feed-brand-orb,
#feed .feed-signal-orb {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 1px solid rgba(255, 206, 102, 0.45);
  background: radial-gradient(circle at 35% 28%, rgba(255, 206, 102, 0.28), rgba(12, 9, 6, 0.95));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  position: relative;
}

#feed .feed-brand-orb img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
}

#feed .feed-brand-orb span {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 206, 102, 0.5);
  background: #f2bf53;
  color: #1a1106;
  font-weight: 900;
  display: grid;
  place-items: center;
}

#feed .feed-action-item {
  border: 0;
  background: transparent;
  display: grid;
  justify-items: center;
  gap: 2px;
  color: rgba(255, 241, 210, 0.9);
}

#feed .feed-action-item b {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

#feed .feed-action-item[data-feed-rail-action="like"] b {
  color: #f14b60;
}

#feed .feed-action-item span {
  font-size: 0.9rem;
  color: rgba(255, 241, 210, 0.84);
}

#feed .feed-signal-orb .lc-icon {
  width: 26px;
  height: 26px;
  color: #f3c75b;
}

@media (max-width: 1300px) {
  #feed .feed-stage {
    grid-template-columns: 120px minmax(0, 1fr) 88px;
    width: min(1220px, calc(100% - 24px));
    gap: 12px;
  }
  #feed .feed-rail-item {
    min-height: 62px;
    font-size: 0.72rem;
  }
}

@media (max-width: 1060px) {
  #feed .feed-stage {
    grid-template-columns: 1fr;
  }
  #feed .feed-left-rail {
    position: static;
    grid-template-columns: repeat(9, minmax(88px, 1fr));
    overflow-x: auto;
    padding: 10px;
  }
  #feed .feed-rail-level {
    display: none;
  }
  #feed .feed-right-actions {
    position: static;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-items: stretch;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 206, 102, 0.2);
    border-radius: 16px;
    background: rgba(10, 8, 5, 0.86);
    padding: 10px;
  }
  #feed .feed-brand-orb,
  #feed .feed-signal-orb {
    width: 56px;
    height: 56px;
  }
  #feed .feed-brand-orb img {
    width: 46px;
    height: 46px;
  }
  #feed .feed-action-item b {
    font-size: 1.45rem;
  }
}

@media (max-width: 760px) {
  #feed.feed-section {
    padding-top: 16px;
  }
  #feed .feed-topbar {
    flex-direction: column;
    align-items: stretch;
  }
  #feed .feed-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 3px;
  }
  #feed .feed-filters button {
    white-space: nowrap;
  }
  #feed .feed-filter-tools {
    align-self: flex-end;
  }
  #feed .feed-quick-composer {
    flex-wrap: wrap;
  }
  #feed #postInput {
    order: 3;
    width: 100%;
  }
  #feed #postButton {
    margin-left: auto;
  }
  #feed .feed-wall .lc-post-card {
    border-radius: 18px;
    padding: 11px;
  }
  #feed .feed-wall .lc-post-body {
    font-size: 0.97rem;
  }
  #feed .feed-left-rail {
    position: fixed;
    z-index: 120;
    left: 8px;
    right: 8px;
    bottom: 8px;
    top: auto;
    border-radius: 16px;
    background: rgba(8, 6, 3, 0.94);
    box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.46);
    grid-template-columns: repeat(9, minmax(84px, 1fr));
  }
  #feed .feed-main-column {
    padding-bottom: 120px;
  }
}
