.interest-review-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 154px;
  padding: 28px 32px;
  border: 1px solid #e8e5ff;
  border-radius: 18px;
  background: linear-gradient(120deg, #fff, #f4f2ff);
}

.interest-review-hero h2 {
  margin: 10px 0 5px;
  font-size: 27px;
}

.interest-review-hero p {
  max-width: 720px;
  font-size: 13px;
}

.interest-review-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.interest-review-count {
  color: #707b90;
  white-space: nowrap;
}

.interest-review-count b {
  margin-right: 3px;
  color: #5148ca;
  font: 800 26px var(--mono);
}

.interest-review-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.interest-review-filters {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(190px, 1.25fr) repeat(4, minmax(125px, .72fr)) auto;
  gap: 12px;
  align-items: end;
  margin: 18px 0 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 12px #29334a08;
}

.interest-review-filters label {
  min-width: 0;
  color: #707b90;
  font-size: 11px;
  font-weight: 700;
}

.interest-review-filters label > span {
  display: block;
  margin-bottom: 6px;
}

.interest-review-filters input,
.interest-review-filters select {
  width: 100%;
  min-width: 0;
  height: 39px;
}

.interest-review-filter-actions {
  display: flex;
  gap: 8px;
}

.interest-review-filter-actions button {
  min-width: 68px;
  height: 39px;
}

.interest-review-note span {
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaedf3;
  color: #727d91;
  font-size: 11px;
}

.interest-review-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  width: 100%;
}

.interest-review-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e5ec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 5px 18px #29334a12;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.interest-review-card:hover {
  border-color: #cbc7f4;
  box-shadow: 0 10px 28px #3c43801a;
  transform: translateY(-1px);
}

.interest-review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.interest-review-status {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff4df;
  color: #b87517;
  font-size: 10px;
  font-weight: 800;
}

.interest-review-status.published {
  background: #e9f8ef;
  color: #238655;
}

.interest-review-status.rejected {
  background: #fff0f0;
  color: #c84d4d;
}

.interest-review-source {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f1f3f7;
  color: #6f7a8e;
  font-size: 10px;
  font-weight: 700;
}

.interest-review-source.ai {
  background: #eceaff;
  color: #5b51d8;
}

.interest-review-source.human {
  background: #e9f6ff;
  color: #3479a8;
}

.interest-review-post,
.interest-review-decision {
  min-width: 0;
}

.interest-review-post {
  flex: 1 1 auto;
  padding: 16px 16px 14px;
}

.interest-review-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.interest-review-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ece9ff;
  color: #5b51d8;
  font-size: 13px;
  font-weight: 800;
}

.interest-review-author > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.interest-review-author b {
  overflow: hidden;
  color: #30394d;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.interest-review-author code,
.interest-review-id {
  color: #8b95a8;
  font: 9px/1.5 var(--mono);
}

.interest-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin: 12px 0 8px;
  color: #8a94a7;
  font-size: 10px;
}

.interest-review-category {
  padding: 2px 7px;
  border-radius: 6px;
  background: #f2f1ff;
  color: #6258d7;
  font-weight: 700;
}

.interest-review-id {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.interest-review-content {
  margin: 6px 0 0;
  color: #323b4f;
  font-size: 13px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.interest-review-content-box {
  margin-top: 10px;
  min-height: 96px;
  max-height: 138px;
  overflow: auto;
  padding: 12px 13px;
  border: 1px solid #eef0f5;
  border-radius: 12px;
  background: #f7f8fb;
}

.interest-review-content-box > span {
  color: #929caf;
  font-size: 10px;
  font-weight: 700;
}

.interest-review-ai-reason {
  margin-top: 10px;
  padding: 10px 11px;
  border: 1px solid #e7e4ff;
  border-radius: 11px;
  background: #f6f4ff;
  color: #59637a;
}

.interest-review-ai-reason.uncertain {
  border-color: #f2d8aa;
  background: #fff8eb;
}

.interest-review-ai-reason b {
  color: #655bd4;
  font-size: 10px;
}

.interest-review-ai-reason.uncertain b {
  color: #b87517;
}

.interest-review-ai-reason p {
  margin: 4px 0;
  font-size: 11px;
  line-height: 1.55;
}

.interest-review-ai-reason small {
  color: #929caf;
  font: 9px var(--mono);
}

.interest-review-decision {
  padding: 13px 16px 15px;
  border-top: 1px solid #edf0f5;
  background: #fcfcfe;
}

.interest-review-decision label {
  margin-bottom: 8px;
  color: #525d72;
  font-size: 11px;
}

.interest-review-decision label span {
  color: #9aa3b4;
  font-size: 10px;
  font-weight: 400;
}

.interest-review-decision textarea {
  width: 100%;
  min-height: 58px;
  resize: vertical;
}

.interest-review-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.interest-review-actions button {
  min-height: 36px;
  padding-inline: 10px;
}

.interest-review-actions.single {
  grid-template-columns: 1fr;
}

.interest-review-decision.readonly b {
  color: #c84d4d;
  font-size: 11px;
}

.interest-review-decision.readonly p {
  margin: 6px 0 0;
  color: #657086;
  font-size: 11px;
  line-height: 1.55;
}

.interest-review-actions button:disabled,
#interest-review-refresh:disabled {
  cursor: wait;
  opacity: .55;
}

.interest-review-empty {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  place-content: center;
  gap: 4px;
  border: 1px dashed #dfe3eb;
  border-radius: 14px;
  background: #fff;
  color: #9ba4b5;
  text-align: center;
}

.interest-review-empty b {
  color: #667186;
}

.interest-review-empty span {
  font-size: 12px;
}

.interest-review-empty.error {
  border-color: #f1cdcd;
  background: #fffafa;
}

.interest-review-empty.error b {
  color: var(--bad);
}

@media (max-width: 1180px) {
  .interest-review-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .interest-review-filter-actions { grid-column: 1 / -1; justify-content: flex-end; }
  .interest-review-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .interest-review-hero { align-items: flex-start; flex-direction: column; padding: 22px; }
  .interest-review-hero-actions { width: 100%; justify-content: space-between; }
  .interest-review-filters { grid-template-columns: 1fr; }
  .interest-review-filter-actions { grid-column: auto; }
  .interest-review-list { grid-template-columns: 1fr; gap: 12px; }
}
