.feed-shell {
  gap: 28px;
  max-width: 720px;
}

.feed-shell .brand {
  text-decoration: none;
  color: inherit;
}

.feed-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0;
}

.feed-hero .lede {
  margin-top: 10px;
}

.feed-status {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.feed-status.is-error {
  color: oklch(70% 0.12 25);
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feed-card {
  display: block;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 24px 48px -36px oklch(0% 0 0 / 0.65);
}

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

.feed-card-meta {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin: 0;
}

.feed-card-meta strong {
  color: var(--primary);
  font-weight: 600;
}

.feed-card-mode {
  text-transform: capitalize;
}

.feed-card-open,
.feed-card-detail {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.feed-card-open:hover,
.feed-card-detail:hover {
  text-decoration: underline;
}

.feed-card-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  background: oklch(12% 0.02 40);
  aspect-ratio: 16 / 9;
}

.feed-card-media.is-image {
  aspect-ratio: 4 / 3;
}

.feed-card-media.is-empty {
  aspect-ratio: auto;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--border);
}

.feed-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feed-card-clip {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: oklch(0% 0 0 / 0.7);
  color: #fff;
  backdrop-filter: blur(6px);
}

.feed-card-clip-only {
  margin: 0;
  color: var(--muted-foreground);
  font-weight: 600;
}

.feed-card-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: oklch(18% 0.02 40);
  background: var(--gradient-orange);
  box-shadow: var(--shadow-orange);
  pointer-events: none;
}

.feed-card-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.feed-card-quote {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--primary);
  background: oklch(100% 0 0 / 0.03);
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  line-height: 1.45;
}

.feed-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 6px;
}

.feed-card-take-block {
  margin: 0 0 12px;
}

.feed-card-take {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--foreground);
  white-space: pre-wrap;
}

.feed-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
}

.feed-card-source {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  text-decoration: none;
}

.feed-card-source:hover {
  color: var(--primary);
}

.feed-empty {
  padding: 28px 18px;
  text-align: center;
  color: var(--muted-foreground);
  border: 1px dashed var(--border);
  border-radius: 16px;
}

.feed-gate {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed-gate[hidden] {
  display: none;
}

.feed-gate-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feed-gate-copy {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.45;
}

.feed-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.btn-feed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-feed-primary {
  border: none;
  color: var(--primary-foreground);
  background: var(--gradient-orange);
  box-shadow: var(--shadow-orange);
}

.btn-feed-ghost {
  background: transparent;
}

.top .pill {
  text-decoration: none;
  color: inherit;
}
