/* =====================================================
   SHARED INNER-PAGE STYLES
   Used by: about.html, esuite.html, blog.html,
            case-studies.html, promotion.html,
            eportal.html, etoolkit.html, eradio.html

   Typography tokens (must match styles.css exactly):
     .section-heading  → 54px / 600 / 64px  / var(--font-sans)
     .section-subtitle → 22px / 300 / 28px  / var(--font-sans)
     body p / li       → 18px / 400 / 1.55  / var(--font-sans)
     card h3           → 21px / 700 / 1.3   / var(--font-sans)
     label             → 16px / 600 / upper / var(--font-sans)
===================================================== */

.bg-wave-bottom {
  top: 3558px;
}

/* ── Push content below fixed header ── */
.about-main {
  padding-top: var(--nav-h, 160px);
}


/* =====================================================
   SHARED TWO-COLUMN LAYOUT HELPER
===================================================== */
.au-two-col {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 52px;
}
.au-two-col--img-left  { flex-direction: row; }
.au-two-col--img-right { flex-direction: row-reverse; }

.au-col-img  { flex: 0 0 45%; }
.au-col-text { flex: 1 1 0; min-width: 0; }

.au-side-img {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  border: 3px solid var(--teal);
}


/* =====================================================
   PAGE TITLE BANNER (centred above hero)
===================================================== */
.au-page-title {
  text-align: center;
  margin-bottom: 80px;
}
/* Same size range as .section-heading */
.au-page-title-text {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
}


/* =====================================================
   HERO SECTION
===================================================== */
.about-hero-section { padding-top: 50px; }

.au-hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* Mirrors .section-heading exactly */
.au-h1 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.185;
  color: var(--white);
  margin-bottom: 16px;
}

/* Mirrors .section-subtitle exactly */
.au-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 14px;
  text-align: left;
}

/* Body paragraph — global p token */
.au-body {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 28px;
}

.au-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── e-Radio hero: “Your radio” sample control (pill + overlapping play disc) ── */
.eradio-sample {
  position: relative;
  align-items: center;
  margin-top: 25px;
  max-width: 100%;
}

.eradio-sample audio {
  display: none;
}

.eradio-sample__ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #525d76;
  border: 3px solid var(--teal);
  pointer-events: none;
}

.eradio-sample__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin: 3px;
  border-radius: 999px;
  overflow: visible;
  min-height: 68px;
}

.eradio-sample__text {
  flex: 1 1 auto;
  min-width: 0;
  padding: 20px 40px;
}

.eradio-sample__line1 {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.eradio-sample__accent {
  color: var(--teal);
}

.eradio-sample__line2 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin: 4px 0 0;
  opacity: 0.95;
}

/* ── Audio progress bar (slim teal-filled track + tiny time readout) ── */
.eradio-sample__progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 2px;
  cursor: pointer;
  /* So tabindex focus is visible without a hard outline on the wrap. */
  outline: none;
}

.eradio-sample__progress-track {
  position: relative;
  flex: 1 1 auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.eradio-sample__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;                                /* set by JS */
  background: var(--teal);
  border-radius: 999px;
  /* Smooth widening between timeupdate events (which fire ~4×/sec). */
  transition: width 0.18s linear;
  box-shadow: 0 0 8px rgba(0, 200, 200, 0.45);
}

.eradio-sample__progress-time {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;        /* numbers don't jitter */
}

.eradio-sample__progress:hover .eradio-sample__progress-track,
.eradio-sample__progress:focus-visible .eradio-sample__progress-track {
  background: rgba(255, 255, 255, 0.32);
}

.eradio-sample__progress:focus-visible {
  /* Subtle focus ring just on the track, no big halo. */
  box-shadow: 0 0 0 2px rgba(0, 200, 200, 0.45);
  border-radius: 999px;
}

/* While the user is scrubbing, disable the smoothing transition so the
   fill follows the cursor 1-for-1 instead of trailing behind. */
.eradio-sample.is-scrubbing .eradio-sample__progress-fill {
  transition: none;
}

.eradio-sample__toggle {
  position: relative;
  isolation: isolate;
  flex: 0 0 auto;
  width: 120px;
  height: 122px;
  margin: -8px -2px -8px 4px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  background: #d1eded;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.15s ease, background 0.2s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

/* Expanding rings while audio plays */
.eradio-sample__toggle::before,
.eradio-sample__toggle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 200, 0.55);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.eradio-sample.is-playing .eradio-sample__toggle::before {
  animation: eradio-ripple-out 1.75s ease-out infinite;
}

.eradio-sample.is-playing .eradio-sample__toggle::after {
  animation: eradio-ripple-out 1.75s ease-out infinite 0.55s;
}

@keyframes eradio-ripple-out {
  0% {
    transform: scale(0.88);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

@keyframes eradio-toggle-glow {
  0%,
  100% {
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.22),
      0 0 0 0 rgba(0, 200, 200, 0.4);
  }
  50% {
    box-shadow:
      0 12px 34px rgba(0, 0, 0, 0.26),
      0 0 0 14px rgba(0, 200, 200, 0);
  }
}

.eradio-sample.is-playing .eradio-sample__toggle {
  animation: eradio-toggle-glow 1.35s ease-in-out infinite;
  background: rgba(209, 237, 237, 0.98);
}

.eradio-sample.is-playing .eradio-sample__ring {
  animation: eradio-ring-breathe 2s ease-in-out infinite;
}

@keyframes eradio-ring-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(0, 200, 200, 0.4));
  }
}

.eradio-sample__toggle:hover {
  transform: scale(1.03);
  background: #e4f4f4;
}

.eradio-sample__toggle:focus-visible {
  outline: 2px solid var(--azure);
  outline-offset: 3px;
}

.eradio-sample__icon {
  position: relative;
  z-index: 1;
  font-size: 50px;
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* White play on pale disc: use primary disc behind icon */
}

.eradio-sample__icon i {
  color: #ffffff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.eradio-sample__icon--pause {
  display: none;
}

.eradio-sample.is-playing .eradio-sample__icon--play {
  display: none;
}

.eradio-sample.is-playing .eradio-sample__icon--pause {
  display: flex;
}

.eradio-sample.is-playing .eradio-sample__icon--pause i {
  animation: eradio-pause-nudge 0.9s ease-in-out infinite;
}

@keyframes eradio-pause-nudge {
  0%,
  100% {
    transform: scale(1);
    opacity: 2;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eradio-sample.is-playing .eradio-sample__toggle,
  .eradio-sample.is-playing .eradio-sample__toggle::before,
  .eradio-sample.is-playing .eradio-sample__toggle::after,
  .eradio-sample.is-playing .eradio-sample__ring,
  .eradio-sample.is-playing .eradio-sample__icon--pause i {
    animation: none !important;
  }
}

@media (max-width: 520px) {
  .eradio-sample__text {
    padding-left: 16px;
    padding-right: 8px;
  }

  .eradio-sample__line1 {
    font-size: 15px;
  }

  .eradio-sample__line2 {
    font-size: 12px;
  }

  .eradio-sample__toggle {
    width: 76px;
    height: 76px;
    margin: -6px -4px -6px 2px;
  }

  .eradio-sample__icon {
    font-size: 22px;
  }
}

.au-hero-img-wrap { flex: 0 0 45%; }
.au-hero-text     { flex: 1 1 0; min-width: 0; }

.au-hero-img {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}


/* =====================================================
   SECTION BODY — LEAD, BULLETS, QUOTE
===================================================== */

/* Sub-heading inside a section — mirrors problem-card h3 */
.au-lead {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 20px;
}

/* Bullet list — item text mirrors body paragraph */
/* Site-wide bullet list — white circle + azure tick marker
   (matches .check-list / .es-feature-list look so every list across
   the site uses the same modern "ticked" look). */
.au-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.au-bullet-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 12px;
  align-items: start;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--white);
}

/* White circle + azure check (combined "fa-circle-check" look) */
.au-bullet-list li::before,
.au-bullet-list li::after {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  line-height: 1;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.au-bullet-list li::before {
  content: "\f111";
  color: var(--white);
  font-size: 22px;
  margin-top: 2px;
}
.au-bullet-list li::after {
  content: "\f00c";
  color: var(--azure);
  font-size: 14px;
  margin-top: 7px;
  z-index: 1;
}

@media (max-width: 480px) {
  .au-bullet-list li {
    grid-template-columns: 24px 1fr;
    column-gap: 10px;
  }
  .au-bullet-list li::before { font-size: 18px; }
  .au-bullet-list li::after  { font-size: 11px; margin-top: 6px; }
}

/* Pull-quote — label-text size (16px / 400) */
.au-quote-bar {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--teal);
  padding-left: 14px;
  margin-top: 4px;
}


/* =====================================================
   CARDS  (au-diff-card — used on every inner page)
   Style mirrors audience-card exactly.
===================================================== */
.au-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.au-diff-card {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.au-diff-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}
.au-diff-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--teal);
  border-radius: 16px;
}

.au-diff-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-bottom: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
  border-right: 3px solid var(--teal);
  border-radius: 0 0 20px 20px;
}

/* Card title — mirrors audience-card-body h3 */
.au-diff-card-body h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--teal);
  margin: 0;
}

/* Card description — mirrors body paragraph */
.au-diff-card-body p {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}


/* =====================================================
   "WHAT MAKES US DIFFERENT" CAROUSEL  (about.html)
   Testimonial-style 3-up with wrap-around (mirrors .pilot-carousel).
   Card design (.au-diff-card) is unchanged — only the wrapping slot
   controls position / fade.
===================================================== */
.au-diff-carousel {
  overflow-x: hidden;
  overflow-y: visible;
}

.au-diff-carousel-outer {
  padding: 8px 0 24px;
}

.au-diff-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  align-items: stretch;
}

.au-diff-slot {
  flex: 0 0 var(--au-diff-slot-w, 32%);
  width: var(--au-diff-slot-w, 32%);
  min-width: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
}

.au-diff-slot .au-diff-card {
  width: 100%;
}

.au-diff-slot--active {
  opacity: 1;
  transform: scale(1);
}

.au-diff-slot--side {
  opacity: 0.45;
  transform: scale(0.96);
  pointer-events: none;
}

.au-diff-carousel-controls {
  justify-content: flex-end;
  margin-top: 25px;
}

.au-diff-carousel-source {
  display: none !important;
}

@media (max-width: 1024px) {
  .au-diff-track {
    gap: 0;
    justify-content: center;
  }

  .au-diff-slot--side {
    opacity: 0;
    pointer-events: none;
    flex: 0 0 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .au-diff-slot--active {
    flex: 0 0 100% !important;
    width: 100% !important;
    opacity: 1;
    transform: none !important;
  }

  .au-diff-carousel-controls {
    justify-content: center;
  }
}

/* =====================================================
   PILOT CAROUSEL  (promotion.html "What's included in your pilot")
   Testimonial-style 3-up with wrap-around. Card design (.au-diff-card)
   is unchanged — only the wrapping slot controls position / fade.
===================================================== */
.pilot-carousel {
  overflow-x: hidden;
  overflow-y: visible;
}

.pilot-carousel-outer {
  padding: 8px 0 24px;
}

.pilot-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  align-items: stretch;
}

.pilot-slot {
  flex: 0 0 var(--pilot-slot-w, 32%);
  width: var(--pilot-slot-w, 32%);
  min-width: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
}

.pilot-slot .au-diff-card {
  width: 100%;
}

.pilot-slot--active {
  opacity: 1;
  transform: scale(1);
}

.pilot-slot--side {
  opacity: 0.45;
  transform: scale(0.96);
  pointer-events: none;
}

.pilot-carousel-controls {
  justify-content: flex-end;
  margin-top: 25px;
}

.pilot-carousel-source {
  display: none !important;
}

@media (max-width: 1024px) {
  .pilot-track {
    gap: 0;
    justify-content: center;
  }

  .pilot-slot--side {
    opacity: 0;
    pointer-events: none;
    flex: 0 0 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .pilot-slot--active {
    flex: 0 0 100% !important;
    width: 100% !important;
    opacity: 1;
    transform: none !important;
  }

  .pilot-carousel-controls {
    justify-content: center;
  }
}


/* =====================================================
   PARTNER / TEAM QUOTE BANNER
===================================================== */
.au-partner-inner {
  text-align: center;
  margin: 0 auto;
}

/* Large quote — scales toward section-heading range */
.au-partner-text {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
}

.au-partner-em {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  font-style: italic;
  color: var(--teal);
}


/* =====================================================
   TEAM CAROUSEL (Meet the team — about.html)
   Shows 3 cards per view on desktop; 1 on smaller screens.
   Dots bottom-right; manual navigation only (no auto-advance).
===================================================== */
.team-carousel {
  margin-top: 52px;
}

.team-carousel-viewport {
  overflow: hidden;
  width: 100%;
  /* Headroom so headshots can sit partly above the card without clipping */
  padding-top: clamp(40px, 5vw, 56px);
}

.team-carousel-track {
  display: flex;
  gap: 32px;
  align-items: stretch;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-carousel .audience-card {
  flex: 0 0 var(--team-card-w, calc((100% - 64px) / 3));
  width: var(--team-card-w, calc((100% - 64px) / 3));
  min-width: 0;
  flex-shrink: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Testimonial-style emphasis: center card prominent, side cards faded.
   Only applied on the desktop 3-up view; mobile keeps a single card at full opacity. */
.team-carousel .audience-card.team-card--side {
  opacity: 0.45;
  /* transform: scale(0.96); */
  pointer-events: none;
}

.team-carousel .audience-card.team-card--active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .team-carousel .audience-card.team-card--side {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

/* ── Team profile cards: reference layout (photo overlaps top), same colours as audience-card ── */
.team-carousel .audience-card--team {
  overflow: visible;
  text-align: center;
}

.team-carousel .audience-card-img--team {
  position: relative;
    z-index: 2;
    width: 70%;
    max-height: none;
    margin: 0 auto;
    margin-top: clamp(-52px, -12vw, -40px);
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--teal);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.team-carousel .audience-card-img--team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-carousel .audience-card-body--team {
  align-items: center;
  text-align: center;
  padding: 20px 22px 26px;
  gap: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-carousel .audience-card-body--team h3 {
  margin-top: 4px;
}

.team-carousel .au-team-role {
  margin: 0;
  font-size: 19px;
}

.team-carousel .au-team-bio {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 4px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden; */
}

.team-carousel .au-team-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
}

.team-carousel .au-team-social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.team-carousel .au-team-social:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.team-carousel .au-team-social i {
  font-size: 18px;
}

.team-carousel-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.team-carousel-dots {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (prefers-reduced-motion: reduce) {
  .team-carousel-track {
    transition: none !important;
  }
}


/* =====================================================
   TEAM CARD  (Meet the team — about.html)
===================================================== */
.au-team-qual {
  font-size: 0.58em;
  font-weight: 400;
  opacity: 0.65;
  vertical-align: middle;
}

/* Role label — label-text size */
.au-team-role {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  margin: -4px 0 6px;
  line-height: 1.4;
}

/* audience-card h3 on about page gets name-size
.audience-card-body h3 {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
} */


/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .au-hero-inner,
  .au-two-col,
  .au-two-col--img-left,
  .au-two-col--img-right {
    flex-direction: column;
    gap: 40px;
  }
  .au-hero-img-wrap,
  .au-col-img {
    flex: unset;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .au-hero-img,
  .au-side-img { min-height: 320px; }

  .au-diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero-section { padding-top: 48px; }
  .au-hero-text,
  .au-col-text { flex: unset; width: 100%; }

  /* Scale to match home page breakpoint values */
  .au-h1        { font-size: clamp(28px, 7vw, 38px); line-height: 1.2; }
  .au-subtitle  { font-size: 18px; line-height: 1.5; }
  .au-body      { font-size: 18px; }
  .au-lead      { font-size: 18px; }
  .au-bullet-list li { font-size: 18px; }
  .au-diff-card-body { padding: 18px 18px 22px; gap: 8px; }
  .au-diff-card-body h3 { font-size: 18px; }
  .au-diff-card-body p  { font-size: 18px; }

  .au-diff-grid  { grid-template-columns: 1fr; gap: 16px; }
  .au-actions    { flex-direction: column; }

  .au-partner-text { font-size: clamp(20px, 5.5vw, 28px); }
  .au-partner-em   { font-size: clamp(22px, 6vw, 32px); }

  .team-carousel-viewport {
    padding-top: clamp(36px, 8vw, 48px);
  }
  .team-carousel .audience-card-img--team {
    margin-top: -44px;
  }
  .team-carousel .audience-card-body--team {
    padding: 16px 16px 22px;
  }
  .team-carousel .au-team-bio {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .au-hero-img,
  .au-side-img { min-height: 220px; }
  .about-hero-section { padding-top: 32px; }
}
