/* Sentiment board — full-screen commentator feed (CF1 live sentiment) */
.cf2-main--sent-board {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cf2-main--sent-board .cf2-title-band { flex-shrink: 0; }

.sent-board-title-band .cf2-title-band__inner.sent-board-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 28px;
  width: 100%;
}

.sent-board-title-copy {
  flex: 0 1 auto;
  min-width: 0;
}

.sent-board-smart-search {
  flex: 1 1 420px;
  max-width: 560px;
  margin-left: auto;
}

.sent-board-smart-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.sent-board-smart-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.sent-board-smart-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: #0a1018;
  color: #f3f4f6;
  font-size: 15px;
  font-style: normal;
  line-height: 1.35;
}

.sent-board-smart-input::placeholder {
  color: #6b7280;
  font-size: 14px;
  font-style: italic;
  opacity: 1;
}

.sent-board-smart-input:focus::placeholder {
  color: #4b5563;
}

.sent-board-smart-input:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.15);
}

.sent-board-smart-btn {
  flex-shrink: 0;
  border: 1px solid rgba(167, 139, 250, 0.45);
  background: linear-gradient(180deg, #ddd6fe 0%, #c4b5fd 55%, #a78bfa 100%);
  color: #4c1d95;
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.sent-board-smart-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.35);
}

.sent-board-smart-hint {
  margin: 6px 0 0;
  font-size: 11px;
  color: #7dd3fc;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .sent-board-title-band .cf2-title-band__inner.sent-board-title-row {
    flex-direction: column;
  }
  .sent-board-smart-search {
    max-width: none;
    width: 100%;
    margin-left: 0;
  }
}

.sent-board-toolbar {
  flex-shrink: 0;
  padding: 0 var(--page-pad-x) 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sent-board-commentators {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.sent-board-commentators .cf2-section-label {
  display: block;
  margin-bottom: 8px;
}

.sent-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.sent-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--muted2);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.sent-chip:hover {
  border-color: #334155;
  color: var(--text);
}

.sent-chip--on {
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(52, 211, 153, 0.12);
  color: #6ee7b7;
}

.sent-board-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}

.sent-board-filters label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.sent-board-filters input,
.sent-board-filters select {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  min-width: 100px;
}

.sent-board-filters input[type="search"] { min-width: 200px; }

.sent-board-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 var(--page-pad-x) var(--desk-gap, 12px);
}

.sent-board-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: none;
}

.sent-board-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.sent-board-card--new { border-left: 3px solid var(--accent); }

.sent-board-card-layout {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 12px 28px;
  align-items: start;
}

@media (max-width: 820px) {
  .sent-board-card-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sent-board-card-rail {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 12px;
  }
}

.sent-board-card-rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sent-board-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.sent-board-card-rail-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.sent-board-rail-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.sent-board-rail-badge {
  font-size: 11px;
}

.sent-board-card-tickers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sent-board-ticker {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.sent-board-ticker:hover {
  background: rgba(56, 189, 248, 0.18);
  text-decoration: none;
}

.sent-board-card-source {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted2);
  text-decoration: none;
}

.sent-board-card-source:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.sent-board-card-date {
  font-size: 10px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: var(--muted);
  margin-top: 2px;
}

.sent-board-card-body-wrap {
  min-width: 0;
  padding: 2px 4px 2px 0;
}

.sent-board-card-body {
  font-size: 17px;
  color: #e5e7eb;
  line-height: 1.65;
  margin: 0;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.insight-badge--neutral { color: #fcd34d; }

.sent-board-more {
  display: inline;
  margin-left: 2px;
  padding: 0;
  border: none;
  background: none;
  font-size: 17px;
  font-weight: 600;
  color: #38bdf8;
  cursor: pointer;
  vertical-align: baseline;
}

.sent-board-more:hover { text-decoration: underline; }

.sent-board-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
}

/* Opened from Recommended Trades (more) — locked 3-day asset-tight view */
.sent-board--desk .sent-board-filters label:nth-child(1),
.sent-board--desk .sent-board-filters label:nth-child(2) {
  opacity: 0.65;
  pointer-events: none;
}
.sent-board--desk .sent-board-filters input,
.sent-board--desk .sent-board-filters select {
  border-color: var(--border);
}
