/* Audience pages — Why Azoogi sticky stack (inherits #cards from style_demo) */

.audience-main {
  padding: 0;
  background: var(--bg);
}

.audience-hero {
  position: relative;
  min-height: var(--hero-max);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
  width: 100%;
}

.audience-hero-media {
  position: absolute;
  inset: 0;
}

.audience-hero-media img,
.audience-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.15) brightness(0.72) saturate(1.05);
  animation: audienceSlowZoom 22s ease-out forwards;
}

@keyframes audienceSlowZoom {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.1);
  }
}

.audience-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.52) 48%,
      rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.audience-hero-copy {
  position: relative;
  z-index: 1;
  padding: var(--hero-pad-y-top) var(--hero-pad-x) var(--hero-pad-y-bottom);
  width: 100%;
}

.audience-hero-copy > * {
  max-width: var(--site-max, 1400px);
}

.audience-hero-copy h1,
.audience-hero-title {
  margin: 0 0 16px;
  max-width: 24ch;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: #fff;
}

.audience-hero-copy h1 span,
.audience-hero-title span {
  font-family: var(--font-outline);
}

.audience-hero-lead,
.audience-lead {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-lead);
  line-height: 1.65;
  padding-bottom: 0;
}

.audience-hero-lead p,
.audience-lead p {
  margin: 0 0 14px;
  padding: 0;
}

.audience-hero-lead p:last-child,
.audience-lead p:last-child {
  margin-bottom: 0;
}

.audience-cards-wrap.card-in {
  padding-top: var(--section-y);
  padding-bottom: calc(var(--section-y) + 16px);
}

.audience-page {
  --card-height: min(72svh, 600px);
}

.audience-page #cards {
  padding-top: 0;
  margin-top: 0;
}

/* Content chrome only — sticky / scale come from style_demo #cards */
.audience-cards .card__content {
  background: var(--bg-2);
}

.audience-cards .card__body {
  grid-area: text;
  width: 80%;
  place-self: center;
  text-align: left;
  display: grid;
  gap: 1em;
  place-items: start;
  padding: 0;
  min-height: 0;
}

.audience-cards .card__copy {
  display: grid;
  gap: 0.85em;
}

.audience-cards .card__body h2 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-h2-section);
  line-height: 1.15;
  margin: 0;
}

.audience-cards .card__body h2 span {
  color: var(--accent);
}

.audience-cards .card__copy p {
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.55;
}

.audience-cards .card__copy p a {
  color: var(--accent);
}

.audience-cards .card__copy p a:hover {
  text-decoration: underline;
}

.audience-cards .card__cta {
  padding-top: 4px;
}

.audience-cards .card__cta .btn {
  display: inline-block;
}

.audience-cards .card__content > figure {
  grid-area: img;
  display: block;
  margin: 0;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.audience-cards .card__content > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.audience-loading,
.audience-error {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}

.audience-error .btn {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .audience-cards .card__content {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 720px) {
  .audience-page {
    --card-height: min(70svh, 520px);
  }

  .audience-cards-wrap {
    padding-bottom: calc(var(--section-y) + 16px);
  }

  .audience-cards .card__body {
    width: 100%;
    max-width: none;
    padding: 18px 18px 20px;
    place-self: stretch;
  }

  .audience-cards .card__body h2 {
    font-size: var(--fs-h3);
    line-height: 1.2;
  }

  .audience-cards .card__copy p {
    font-size: var(--fs-body);
    line-height: 1.55;
  }

  .audience-cards .card__cta .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .audience-hero .h2 {
    font-size: var(--fs-h2);
  }
}
