/* Phase 5A — Personalized feed preview */

.lab-personalized-feed-section {
  margin-bottom: 14px;
}

.lab-pfeed {
  padding: 2px 0 0;
}

.lab-pfeed__head {
  margin-bottom: 6px;
}

.lab-pfeed__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 1000;
  color: var(--mint, #00ff99);
}

.lab-pfeed__hint {
  margin: 0 0 12px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted, #9eb0ad);
}

.lab-pfeed__state {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted, #9eb0ad);
}

.lab-pfeed__state.is-error {
  color: #ff8fa3;
}

.lab-pfeed__section {
  margin-top: 12px;
}

.lab-pfeed__section-title {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--text, #eafffb);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.85;
}

.lab-pfeed__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lab-pfeed__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #00ffcc22;
  border-radius: 12px;
  background: #0a0a0a;
}

.lab-pfeed__label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text, #eafffb);
  line-height: 1.35;
}

.lab-pfeed__detail {
  margin-top: 3px;
  font-size: 0.78rem;
  color: var(--muted, #9eb0ad);
  line-height: 1.35;
}

.lab-pfeed__reason {
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--mint, #00ff99);
  opacity: 0.9;
}

.lab-pfeed__time {
  flex: 0 0 auto;
  font-size: 0.72rem;
  color: var(--muted, #9eb0ad);
  white-space: nowrap;
  padding-top: 2px;
}

@media (max-width: 600px) {
  .lab-pfeed__row {
    flex-direction: column;
    gap: 4px;
  }

  .lab-pfeed__time {
    align-self: flex-start;
  }
}
