.feed-input {
  border-radius: var(--radius-md);
}

.hero-panel .badge-brand {
  background: #fff;
}

.item-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 3px solid var(--text-primary);
  box-shadow: 6px 6px 0 rgba(26, 26, 28, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item-card.compact {
  padding: 14px;
  gap: 8px;
}

.item-card .item-title {
  font-size: 1.02rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.item-card .item-meta {
  color: var(--text-soft);
  font-size: 0.85rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.item-card .item-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.item-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(26, 26, 28, 0.06);
  border: 3px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.item-audio {
  width: 100%;
}

.toggle-group {
  background: #fff;
  border-radius: 0;
  padding: 6px 12px;
  border: 2px solid var(--text-primary);
  box-shadow: 3px 3px 0 rgba(26, 26, 28, 1);
}

.skeleton-card,
.skeleton-header {
  background: linear-gradient(90deg, rgba(26, 26, 28, 0.15), rgba(150, 72, 144, 0.2), rgba(60, 161, 153, 0.15));
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-md);
}

.skeleton-card {
  height: 180px;
}

.skeleton-header {
  height: 26px;
  width: 40%;
  margin-bottom: 20px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.badge-pill {
  border-radius: 0;
}

.embed-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 3px solid var(--text-primary);
}

.hero-panel.is-loaded {
  background: #fff;
}

.hero-gradient {
  background: radial-gradient(circle at top left, rgba(60, 161, 153, 0.26), transparent 45%),
    radial-gradient(circle at bottom right, rgba(150, 72, 144, 0.24), transparent 50%);
}
