/* ─── PUBLIC SCOUT REPORT PAGE ─── */

/* "Generated by FightDeck" CTA strip */
.public-cta-strip {
  background: linear-gradient(135deg, rgba(255, 58, 47, 0.08), rgba(255, 58, 47, 0.03));
  border-top: 1px solid rgba(255, 58, 47, 0.2);
  border-bottom: 1px solid rgba(255, 58, 47, 0.1);
  padding: 56px 0;
  margin-top: 60px;
}

.public-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.public-cta-left {
  flex: 1;
  min-width: 260px;
}

.public-cta-brand {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.public-cta-tagline {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
}

.public-cta-right {
  text-align: center;
  flex-shrink: 0;
}

.public-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.public-cta-btn:hover { background: #e02e24; }
.public-cta-btn:active { transform: scale(0.98); }

.public-cta-sub {
  margin-top: 10px;
  font-size: 12px;
  color: var(--fg-muted);
}

@media (max-width: 640px) {
  .public-cta-inner { flex-direction: column; text-align: center; }
  .public-cta-left { text-align: center; }
  .public-cta-tagline { max-width: none; }
}
