/* =========================================================
   FRIDAI — WHO WE HELP PAGE
   People-first editorial directory
   Loads after public-site.css
   ========================================================= */


/* =========================================================
   PAGE FOUNDATIONS
   ========================================================= */

.audience-page {
  background: var(--paper);
}

.audience-page main {
  overflow: hidden;
}

.audience-page .desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.audience-page .desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.audience-page .mobile-nav a[aria-current="page"] {
  color: var(--brand-bright);
  border-color: rgba(29, 185, 84, 0.3);
  background: rgba(29, 185, 84, 0.08);
}

.audience-section-marker {
  margin-bottom: 18px;
  color: var(--brand-deep);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.audience-section-marker.light-marker {
  color: var(--brand-bright);
}


/* =========================================================
   PEOPLE-FIRST ENTRANCE
   ========================================================= */

.audience-entry {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  padding: 150px 0 96px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 79% 24%,
      rgba(29, 185, 84, 0.25),
      transparent 27%
    ),
    radial-gradient(
      circle at 8% 84%,
      rgba(29, 185, 84, 0.1),
      transparent 28%
    ),
    linear-gradient(
      125deg,
      #030b06 0%,
      #06120c 48%,
      #0d321c 100%
    );
}

.audience-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    transparent 100%
  );
}

.audience-entry::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(3, 11, 6, 0.72)
  );
}

.audience-entry-architecture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audience-entry-architecture span {
  position: absolute;
  bottom: -220px;
  width: 330px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 165px 165px 0 0;
}

.audience-entry-architecture span:nth-child(1) {
  left: -170px;
}

.audience-entry-architecture span:nth-child(2) {
  left: calc(50% - 165px);
  opacity: 0.72;
}

.audience-entry-architecture span:nth-child(3) {
  right: -170px;
}

.audience-entry-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(390px, 0.92fr);
  gap: 96px;
  align-items: center;
}

.audience-entry-copy {
  max-width: 730px;
}

.audience-entry-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(3.8rem, 6.5vw, 6.7rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.audience-entry-copy h1 em {
  display: block;
  margin-top: 0.1em;
  color: var(--brand-bright);
  font-style: italic;
  line-height: 1.05;
  text-shadow: 0 0 45px rgba(29, 185, 84, 0.2);
}

.audience-entry-lead {
  max-width: 650px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.72;
}

.audience-entry-support {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  line-height: 1.78;
}

.audience-entry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.audience-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.audience-entry-link span {
  color: var(--brand-bright);
  transition: transform 0.2s ease;
}

.audience-entry-link:hover {
  color: var(--white);
}

.audience-entry-link:hover span {
  transform: translateX(5px);
}

.audience-entry-link:focus-visible {
  outline: 3px solid rgba(29, 185, 84, 0.42);
  outline-offset: 5px;
}


/* =========================================================
   LEARNER CARD
   ========================================================= */

.learner-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--ink);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(238, 230, 215, 0.99)
    );
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.42),
    12px 12px 0 rgba(29, 185, 84, 0.07);
  transform: rotate(0.8deg);
}

.learner-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(25, 20, 20, 0.08);
}

.learner-card-header,
.learner-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 22px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--deep-green);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.learner-card-footer span:last-child {
  color: var(--brand-bright);
  font-size: 1rem;
}

.learner-card-body {
  position: relative;
  z-index: 1;
  padding: 38px 42px 44px;
}

.learner-card-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  margin: 0 auto 28px;
  border: 1px solid rgba(29, 185, 84, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 0 0 8px rgba(29, 185, 84, 0.07),
    0 16px 30px rgba(29, 185, 84, 0.14);
}

.learner-card-mark::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px dashed rgba(29, 73, 37, 0.22);
  border-radius: 50%;
}

.learner-card-mark img {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.learner-card-label {
  margin-bottom: 10px;
  color: var(--brand-deep);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-align: center;
}

.learner-card-body h2 {
  max-width: 370px;
  margin: 0 auto 34px;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.05;
  font-weight: 500;
  text-align: center;
}

.learner-principles {
  border-top: 1px solid var(--line);
}

.learner-principles p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.learner-principles span {
  color: var(--brand-deep);
  font-family: var(--serif);
  font-size: 0.74rem;
}


/* =========================================================
   PEOPLE-FIRST STATEMENT
   ========================================================= */

.people-first {
  padding: 126px 0;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(29, 185, 84, 0.07),
      transparent 25%
    ),
    var(--paper);
}

.people-first-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  gap: 110px;
  align-items: start;
}

.people-first-heading {
  position: sticky;
  top: 120px;
}

.people-first-heading h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
  line-height: 1.03;
  font-weight: 500;
}

.people-first-copy {
  max-width: 700px;
  padding-top: 6px;
}

.people-first-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.people-first-copy .people-first-lead {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.45;
}

.people-first-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   AUDIENCE DIRECTORY
   ========================================================= */

.audience-directory {
  padding: 112px 0 120px;
  background: var(--paper-warm);
}

.audience-directory-heading {
  max-width: 830px;
  margin-bottom: 64px;
}

.audience-directory-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.6vw, 4.7rem);
  line-height: 1.04;
  font-weight: 500;
}

.audience-directory-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-directory-list a {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px 18px;
  min-height: 175px;
  padding: 30px 56px 30px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.audience-directory-list a::after {
  content: "↘";
  position: absolute;
  top: 30px;
  right: 28px;
  color: var(--brand);
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.audience-directory-list a:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.audience-directory-list a:hover::after {
  transform: translate(3px, 3px);
}

.audience-directory-list a > span {
  color: var(--brand-deep);
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 700;
}

.audience-directory-list strong,
.audience-directory-list small {
  grid-column: 2;
}

.audience-directory-list strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.15;
}

.audience-directory-list small {
  max-width: 450px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.62;
}


/* =========================================================
   SHARED AUDIENCE CHAPTERS
   ========================================================= */

.audience-chapter {
  position: relative;
  padding: 124px 0;
  scroll-margin-top: 80px;
}

.audience-chapter-layout {
  display: grid;
  grid-template-columns:
    78px
    minmax(0, 0.92fr)
    minmax(380px, 1.08fr);
  gap: 58px;
  align-items: start;
}

.audience-chapter-number {
  padding-top: 5px;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.audience-chapter-title h2 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 4.4vw, 4.5rem);
  line-height: 1.04;
  font-weight: 500;
}

.audience-chapter-title > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.audience-chapter-details {
  padding-top: 3px;
  border-top: 1px solid var(--line);
}

.audience-question,
.audience-opportunities {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.audience-question > p,
.audience-opportunities > p {
  margin-bottom: 14px;
  color: var(--brand-deep);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.audience-question blockquote {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid var(--brand);
}

.audience-question blockquote {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-style: italic;
  line-height: 1.48;
}

.audience-opportunities ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-opportunities li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.audience-opportunities li::before {
  content: "◇";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brand);
}


/* =========================================================
   LIGHT CHAPTER
   ========================================================= */

.audience-chapter-light {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(29, 185, 84, 0.06),
      transparent 24%
    ),
    var(--paper);
}


/* =========================================================
   WARM CHAPTER
   ========================================================= */

.audience-chapter-warm {
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(29, 185, 84, 0.07),
      transparent 26%
    ),
    var(--paper-warm);
}


/* =========================================================
   PAPER CHAPTER
   ========================================================= */

.audience-chapter-paper {
  background:
    linear-gradient(
      rgba(25, 20, 20, 0.023) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(25, 20, 20, 0.023) 1px,
      transparent 1px
    ),
    var(--paper);
  background-size: 42px 42px;
}


/* =========================================================
   DARK CHAPTER
   ========================================================= */

.audience-chapter-dark {
  color: var(--white);
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    var(--deep-green);
  background-size: 44px 44px;
}

.audience-chapter-dark .audience-chapter-title > p:last-child,
.audience-chapter-dark .audience-opportunities li {
  color: rgba(255, 255, 255, 0.6);
}

.audience-chapter-dark .audience-chapter-details,
.audience-chapter-dark .audience-question,
.audience-chapter-dark .audience-opportunities {
  border-color: rgba(255, 255, 255, 0.14);
}

.audience-chapter-dark .audience-question > p,
.audience-chapter-dark .audience-opportunities > p {
  color: var(--brand-bright);
}

.audience-chapter-dark .audience-question blockquote {
  color: rgba(255, 255, 255, 0.86);
}

.audience-chapter-dark .audience-opportunities li::before {
  color: var(--brand-bright);
}


/* =========================================================
   RURAL COMMITMENT
   ========================================================= */

.rural-commitment {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 16% 50%,
      rgba(29, 185, 84, 0.28),
      transparent 24%
    ),
    linear-gradient(
      130deg,
      #041008,
      #103b21
    );
}

.rural-commitment::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
}

.rural-commitment-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 78px;
  align-items: center;
}

.rural-commitment-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(29, 185, 84, 0.4);
  border-radius: 50%;
  background: rgba(29, 185, 84, 0.08);
  box-shadow:
    0 0 0 18px rgba(29, 185, 84, 0.035),
    0 0 0 36px rgba(29, 185, 84, 0.018);
}

.rural-commitment-mark img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
}

.rural-commitment-copy {
  max-width: 850px;
}

.rural-commitment-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  line-height: 1.03;
  font-weight: 500;
}

.rural-commitment-copy > p:not(.audience-section-marker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.rural-commitment-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CLOSING INVITATION
   ========================================================= */

.audience-invitation {
  padding: 70px 0 110px;
  background: var(--paper);
}

.audience-invitation-card {
  position: relative;
  display: grid;
  grid-template-columns:
    130px
    minmax(0, 1fr)
    minmax(240px, auto);
  gap: 58px;
  align-items: center;
  min-height: 410px;
  padding: 66px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(29, 185, 84, 0.3),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #041008,
      #0d301b
    );
  box-shadow: var(--shadow-md);
}

.audience-invitation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
}

.audience-invitation-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.023),
    0 0 0 140px rgba(255, 255, 255, 0.016);
}

.audience-invitation-symbol,
.audience-invitation-copy,
.audience-invitation-actions {
  position: relative;
  z-index: 1;
}

.audience-invitation-symbol {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.audience-invitation-symbol span {
  color: var(--brand-bright);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.audience-invitation-copy {
  max-width: 690px;
}

.audience-invitation-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.04;
  font-weight: 500;
}

.audience-invitation-copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
}

.audience-invitation-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}

.audience-library-link {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  font-weight: 800;
}

.audience-library-link span {
  color: var(--brand-bright);
  transition: transform 0.2s ease;
}

.audience-library-link:hover {
  color: var(--white);
}

.audience-library-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .audience-entry-layout {
    gap: 58px;
  }

  .audience-entry-copy h1 {
    font-size: clamp(3.5rem, 6vw, 5.7rem);
  }

  .people-first-layout {
    gap: 72px;
  }

  .audience-chapter-layout {
    grid-template-columns:
      64px
      minmax(0, 0.9fr)
      minmax(350px, 1.1fr);
    gap: 40px;
  }

  .audience-invitation-card {
    grid-template-columns: 100px 1fr;
  }

  .audience-invitation-actions {
    grid-column: 2;
    align-items: flex-start;
  }
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {
  .audience-entry {
    min-height: auto;
  }

  .audience-entry-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .audience-entry-copy {
    max-width: 780px;
  }

  .learner-card {
    width: min(100%, 600px);
    max-width: none;
    margin: 0;
    transform: none;
  }

  .people-first-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .people-first-heading {
    position: static;
    max-width: 760px;
  }

  .people-first-copy {
    max-width: 760px;
  }

  .audience-directory-list {
    grid-template-columns: 1fr;
  }

  .audience-chapter-layout {
    grid-template-columns: 70px 1fr;
  }

  .audience-chapter-number {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .audience-chapter-title {
    grid-column: 2;
  }

  .audience-chapter-details {
    grid-column: 2;
  }

  .rural-commitment-layout {
    grid-template-columns: 150px 1fr;
    gap: 52px;
  }

  .rural-commitment-mark {
    width: 130px;
    height: 130px;
  }

  .rural-commitment::after {
    display: none;
  }

  .audience-invitation-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience-invitation-symbol {
    min-height: auto;
    justify-content: flex-start;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .audience-invitation-symbol span {
    font-size: 3.4rem;
  }

  .audience-invitation-actions {
    grid-column: auto;
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 680px) {
  .audience-entry {
    padding: 120px 0 76px;
  }

  .audience-entry-architecture span:nth-child(2) {
    display: none;
  }

  .audience-entry-copy h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .audience-entry-lead {
    font-size: 1rem;
  }

  .audience-entry-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .audience-entry-actions .button {
    width: 100%;
  }

  .audience-entry-link {
    justify-content: center;
    text-align: center;
  }

  .learner-card {
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.34),
      7px 7px 0 rgba(29, 185, 84, 0.07);
  }

  .learner-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .learner-card-header,
  .learner-card-footer {
    padding: 15px 18px;
  }

  .learner-card-body {
    padding: 34px 24px 38px;
  }

  .learner-card-mark {
    width: 80px;
    height: 80px;
  }

  .learner-card-mark img {
    width: 50px;
    height: 50px;
  }

  .learner-card-body h2 {
    font-size: 2.2rem;
  }

  .people-first,
  .audience-directory,
  .audience-chapter,
  .rural-commitment {
    padding: 82px 0;
  }

  .people-first-heading h2,
  .audience-directory-heading h2,
  .audience-chapter-title h2,
  .rural-commitment-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .audience-directory-heading {
    margin-bottom: 44px;
  }

  .audience-directory-list a {
    grid-template-columns: 34px 1fr;
    min-height: auto;
    padding: 26px 44px 26px 22px;
  }

  .audience-directory-list a::after {
    top: 26px;
    right: 18px;
  }

  .audience-directory-list strong {
    font-size: 1.4rem;
  }

  .audience-chapter-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .audience-chapter-number {
    order: 1;
    padding-top: 0;
    font-size: 1.4rem;
  }

  .audience-chapter-title {
    order: 2;
  }

  .audience-chapter-details {
    order: 3;
    width: 100%;
  }

  .audience-question blockquote {
    padding-left: 18px;
    font-size: 1.3rem;
  }

  .rural-commitment-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .rural-commitment-mark {
    width: 110px;
    height: 110px;
  }

  .rural-commitment-mark img {
    width: 56px;
    height: 56px;
    }

  .audience-invitation {
    padding: 30px 0 80px;
  }

  .audience-invitation-card {
    min-height: auto;
    padding: 46px 24px;
    border-radius: 24px;
  }

  .audience-invitation-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .audience-invitation-actions {
    align-items: stretch;
  }

  .audience-invitation-actions .button {
    width: 100%;
  }
}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 420px) {
  .audience-entry-copy h1 {
    font-size: 2.8rem;
  }

  .learner-card-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .audience-directory-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .audience-directory-list a > span,
  .audience-directory-list strong,
  .audience-directory-list small {
    grid-column: 1;
  }

  .audience-directory-list a::after {
    top: 28px;
  }

  .audience-invitation-symbol span {
    font-size: 3rem;
  }
}