.hero {
  background:
    radial-gradient(circle at 22% 18%, rgba(60, 161, 153, 0.24), transparent 38%),
    radial-gradient(circle at 80% 4%, rgba(150, 72, 144, 0.2), transparent 32%);
}

.hero-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 4px solid var(--text-primary);
  min-height: 320px;
}

.hero-image {
  width: 100%;
  height: 220px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(26, 26, 28, 0.06),
    rgba(26, 26, 28, 0.06) 10px,
    rgba(60, 161, 153, 0.2) 10px,
    rgba(60, 161, 153, 0.2) 20px
  );
  border-radius: var(--radius-md);
  border: 3px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-meta {
  display: grid;
  gap: 14px;
}

.display-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 900;
  line-height: 1.05;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
}

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

.feed-subtitle {
  color: var(--text-muted);
}

.feed-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-brand {
  background: #fff;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
  padding: 6px 12px;
  border-radius: 0;
  font-size: 0.8rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(26, 26, 28, 1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.loading-state {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 3px solid var(--text-primary);
}

.error-state {
  background: #ffe4ea;
  border-radius: var(--radius-md);
  border: 3px solid var(--text-primary);
  padding: 24px;
}

.error-state details {
  color: var(--text-muted);
  margin-top: 12px;
}

.sentinel {
  height: 32px;
}
