/* Karta pro nepřihlášené návštěvníky (CTA k registraci) — ve feedu jako poslední položka */

.feed-grid .feed-empty {
  grid-column: 1 / -1;
}

.feed-grid .guest-cta-card {
  text-align: center;
}

.guest-cta-card-title {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.35;
}

.guest-cta-card-body {
  flex: 1;
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--text-secondary, #475569);
}

.guest-cta-card-body p {
  margin: 0 0 var(--space-2);
}

.guest-cta-card-body p:last-child {
  margin-bottom: 0;
}

.guest-cta-card-footer {
  justify-content: center;
  border-top: none;
  padding-top: 0;
}

.guest-cta-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  width: 100%;
}

@media (max-width: 480px) {
  .guest-cta-card-actions .btn {
    flex: 1 1 8rem;
    min-width: 0;
  }
}
