/* =========================================================================
   AUDIENCE.CSS — shared styles for the persona landing pages
   (for-agencies.html, for-employers.html, for-recruiters.html).
   Loaded alongside global.css / components.css / landing.css, which already
   provide the shared nav, section scaffolding, buttons, features/stats/
   testimonials/CTA blocks and footer reused on these pages too.
   ========================================================================= */

.aud-hero {
  padding: 8.5rem 1.5rem 3rem;
  text-align: center;
}

.aud-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.aud-heading {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.aud-heading .gradient-text {
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aud-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.aud-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Optional short pull-quote / persona callout under the hero CTAs. */
.aud-quote {
  max-width: 640px;
  margin: 3rem auto 0;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.aud-quote-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aud-quote-text {
  font-size: 0.9375rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.55;
}

.aud-quote-author {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  font-style: normal;
}

@media (max-width: 640px) {
  .aud-hero { padding-top: 7rem; }
  .aud-quote { flex-direction: column; }
}
