/* ── STORY LIST ── */
.story-list {
  position: relative;
  display: flex;
  flex-direction: column;
}

.story-list-bg {
  position: absolute;
  left: -12px;
  right: -12px;
  border-radius: 10px;
  background: var(--surface);
  pointer-events: none;
  opacity: 0;
  transition:
    top    0.18s cubic-bezier(0.16,1,0.3,1),
    height 0.18s cubic-bezier(0.16,1,0.3,1),
    opacity 0.15s;
  z-index: 0;
}

.story-item {
  display: block;
  padding: 12px;
  margin: 0 -12px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}



.story-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.story-thumb {
  width: 64px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}

.story-text { flex: 1; min-width: 0; }

.story-pub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 3px;
}

.story-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-excerpt {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-arrow {
  font-size: 14px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  align-self: center;
  transition: color 0.2s;
}

.story-item:hover .story-arrow { color: var(--text-secondary); }

.empty-state {
  font-size: 14px;
  color: var(--text-tertiary);
  padding: 20px 0;
}

@media (max-width: 480px) {
  .story-thumb { display: none; }
}