.fp-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 148px;
  padding: 2rem 1.25rem;
  border-bottom: 1px solid #2a2b2d;
  background:
    linear-gradient(180deg, rgba(18, 19, 20, 0.94) 0%, rgba(14, 15, 16, 0.98) 100%);
  text-align: center;
}

.fp-state--compact {
  min-height: 116px;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.fp-state--full-span {
  grid-column: 1 / -1;
}

.fp-state__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e84040;
}

.fp-state__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #e8e6e1;
}

.fp-state__copy {
  max-width: 42ch;
  font-size: 13px;
  line-height: 1.65;
  color: #88837b;
}

.fp-loading-dots {
  display: inline-flex;
  gap: 6px;
}

.fp-loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e84040;
  animation: farpost-pulse 1.2s ease-in-out infinite;
}

.fp-loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.fp-loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.pod-art--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes farpost-pulse {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}
