/*! Clients page */

:root {
  --vu-clients-paper: var(--vu-team-paper, #f5f5f5);
  --clients-bg: linear-gradient(135deg, #2b1e55 0%, #5c3bb0 45%, #9c89ff 100%);
  --clients-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12));
  --clients-glass-border: rgba(156, 137, 255, 0.38);
  --clients-glass-shadow: 0 22px 40px rgba(22, 9, 54, 0.35);
}

.clients-page {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  /* Removed container-type to prevent layout collapse issues */
}

/* Hero --------------------------------------------------------- */
.clients-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: radial-gradient(120% 140% at 20% 20%, rgba(255, 217, 0, 0.18), transparent 42%),
    radial-gradient(90% 120% at 80% 10%, rgba(206, 186, 255, 0.35), transparent 48%),
    var(--clients-bg);
  color: #ffffff;
  box-shadow: var(--vu-shadow-soft, 0 26px 55px rgba(5, 7, 19, 0.28));
  container-type: inline-size;
  container-name: hero;
}

.clients-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.clients-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: min(45%, 500px);
  height: 100%;
  background: url('/wp-content/uploads/2025/11/clients-small.svg') no-repeat bottom right;
  background-size: auto 115%;
  /* Ensure vertical fill + slight overshoot */
  opacity: 0.15;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.clients-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 3.5vw, 40px);
  align-items: start;
  z-index: 1;
}

/* Container query breakpoints - hero responds to container size */
@container hero (min-width: 900px) {
  .clients-hero__inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  }
}

@container hero (max-width: 640px) {
  .clients-hero__inner {
    padding: clamp(18px, 3vw, 28px);
    gap: clamp(14px, 2.5vw, 20px);
  }

  .clients-hero__title {
    font-size: clamp(1.8rem, 3.5vw, 2.1rem);
  }
}

.clients-hero__space {
  min-height: 80px;
}

.clients-hero__meta {
  display: grid;
  gap: clamp(10px, 1.5vw, 14px);
}

.clients-hero__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.85);
}

.clients-hero__title {
  margin: 0;
  font-family: var(--vu-title-font);
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  letter-spacing: .03em;
}

.clients-hero__lede {
  margin: 0;
  max-width: 72ch;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.clients-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.clients-hero__cta {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(32, 38, 58, 0.92), rgba(60, 68, 102, 0.9) 60%, rgba(100, 95, 136, 0.85));
  color: #ffe778;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.clients-hero__cta:hover,
.clients-hero__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.clients-hero__cta--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.clients-hero__cta--primary {
  background: linear-gradient(135deg, #ffc600, #f6e96b 60%, #ffd900);
  color: #1a1f35;
  border-color: rgba(255, 255, 255, 0.28);
}

.clients-hero__cta--secondary {
  background: linear-gradient(135deg, #ffe673, #ffd900);
  color: #1a1f35;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.clients-hero__contact {
  position: relative;
}

.clients-hero__contact-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10;
  min-width: max(260px, 100%);
  background: var(--vu-paper, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.clients-hero__contact-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.clients-hero__contact-panel a {
  color: var(--vu-slate, #141d3b);
  text-decoration: none;
}

.clients-hero__contact-panel[hidden] {
  display: none;
}

/* Shared section head ------------------------------------------ */
.clients-section-head {
  text-align: left;
  display: grid;
  gap: 6px;
  margin-bottom: clamp(10px, 1.4vw, 16px);
}

.clients-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .8rem;
  color: var(--vu-slate, #141d3b);
}

.clients-lede {
  margin: 0;
  max-width: 80ch;
  color: var(--vu-ink, #1f2c57);
  line-height: 1.65;
}

.clients-section-head h2 {
  margin: 0;
  font-family: var(--vu-title-font);
  letter-spacing: .02em;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.clients-quote-banner {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f9fafc);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 12px 26px rgba(5, 7, 19, 0.1);
  display: grid;
  gap: 12px;
  width: min(92%, var(--content-w));
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

.clients-quote-banner__inner {
  position: relative;
  min-height: 100px;
  max-height: 180px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  /* Removed imbalanced padding */
  width: 100%;
  /* space for arrows */
  transition: max-height 0.3s ease;
}

.clients-quote-banner.is-expanded .clients-quote-banner__inner {
  max-height: 1000px;
  /* Allow expansion */
}

.clients-quote-banner__controls {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}

.clients-quote-hotspot {
  pointer-events: auto;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background .18s ease;
}

.clients-quote-hotspot::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .18s ease;
}

.clients-quote-hotspot--prev::before {
  background: radial-gradient(circle at 20% 50%, rgba(255, 224, 102, 0.45), transparent 45%);
}

.clients-quote-hotspot--next::before {
  background: radial-gradient(circle at 80% 50%, rgba(255, 224, 102, 0.45), transparent 45%);
}

.clients-quote-hotspot:hover::before,
.clients-quote-hotspot:focus-visible::before {
  opacity: 1;
}

.clients-hero__quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding-right: 8px;
  box-sizing: border-box;
}

.clients-hero__quote.is-active {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
}

.clients-hero__quote blockquote {
  margin: 0;
  line-height: 1.6;
  color: var(--vu-ink, #1f2c57);
  font-size: .92rem;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.clients-hero__quote-text {
  color: var(--vu-ink, #1f2c57);
  display: block;
  max-width: 860px;
}

.clients-hero__quote-meta {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2px 6px;
  color: var(--vu-slate, #141d3b);
  font-weight: 700;
  align-items: center;
  font-size: .9rem;
}

.clients-quote-meta__name {
  font-weight: 800;
}

.clients-quote-meta__role,
.clients-quote-meta__company {
  font-weight: 600;
  font-size: .9rem;
  opacity: 0.88;
}

.clients-quote-banner .vu-testimonial-progress {
  width: min(92%, var(--content-w));
  max-width: 120px;
  margin: 8px auto 0;
  background: rgba(0, 0, 0, 0.06);
}

.clients-quote-banner .vu-testimonial-progress-bar {
  background: linear-gradient(135deg, #ffc600, #ffd900);
}

.clients-quote-banner-shell {
  width: 100%;
  max-width: 100%;
  margin: clamp(12px, 2vw, 18px) 0;
}



/* Full list + nav --------------------------------------------- */
.clients-list-shell {
  position: relative;
  background: transparent;
  color: var(--vu-ink, #1f2c57);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  --clients-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  --clients-glass-border: rgba(0, 0, 0, 0.06);
  --clients-glass-shadow: 0 18px 32px rgba(5, 7, 19, 0.12);
}

.clients-directory {
  width: 100%;
  margin: 0 auto clamp(16px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.clients-industry-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.clients-key__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--vu-ink, #1f2c57);
}

.clients-key__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--industry-accent, #d7dce5);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  display: inline-block;
}

.clients-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--industry-accent, #d7dce5);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  display: inline-block;
  position: relative;
}

.clients-dot::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 12px rgba(5, 7, 19, 0.08);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--vu-ink, #1f2c57);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 120ms ease;
  z-index: 3;
}

.clients-dot:hover::after,
.clients-dot:focus-visible::after {
  opacity: 1;
}

/* A-Z Fixed FAB Container */
.clients-az-nav {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  /* Restored! Safe now overlay is outside. */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  /* Container passes clicks */
  width: auto;
}

.clients-fab-group {
  display: flex;
  gap: 16px;
  pointer-events: auto;
  /* Buttons capture clicks */
}

/* Desktop Offset */
@media (min-width: 1024px) {
  .vu-clients-grid.has-left .clients-az-nav {
    margin-left: 150px;
  }
}

/* A-Z FAB Styling */
.clients-az-toggle-btn {
  min-height: 64px;
  width: 64px;
  border-radius: 50%;
  font-weight: 800;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
  font-size: 1.05rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  background: linear-gradient(135deg, #ffc600, #f6e96b 60%, #ffd900);
  color: #1a1f35;
}

.clients-az-toggle-btn:active {
  transform: scale(0.92);
}

.clients-az-toggle-btn[aria-expanded="true"] {
  background: #fff;
  color: #1a1f35;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* Overlay & List (Desktop + Mobile) */
.clients-az-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 28, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9998;
  /* Separated from nav, but high enough to cover page */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: auto;
}

.clients-az-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.clients-az-list {
  pointer-events: auto;
  position: absolute;
  bottom: 90px;
  /* Moved up slightly */
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0.95);
  transform-origin: bottom center;
  width: min(90vw, 600px);
  /* Slightly wider */
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  /* More padding */
  display: flex;
  /* Flex for better centering */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  /* Consistent gap */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  z-index: 10;
  /* Above overlay */

  /* Animation state: Hidden */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  list-style: none;
}

.clients-az-nav.is-open .clients-az-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.clients-az-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  /* Bigger touch target */
  height: 52px;
  font-size: 1.25rem;
  /* Larger text */
  font-weight: 700;
  color: var(--vu-slate, #141d3b);
  background: #f4f6fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.clients-az-list a:focus-visible {
  outline: 2px solid var(--vu-gold, #ffd900);
  outline-offset: 2px;
}

.clients-az-list a.is-active,
.clients-az-list a:hover {
  background: #ffc90e;
  transform: scale(1.15);
  box-shadow: 0 8px 15px rgba(255, 201, 14, 0.4);
  z-index: 2;
  border-color: transparent;
}

.clients-az-list li {
  flex: 0 0 auto;
}



.vu-clients-grid .clients-panels {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 20px);
  width: 100%;
  margin: 0 0 clamp(16px, 2.5vw, 24px);
}

.clients-panel {
  --industry-accent: var(--vu-gold, #ffd900);
  background: linear-gradient(180deg, #ffffff, #f4f6fb);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: clamp(16px, 2vw, 20px);
  box-shadow: 0 6px 12px rgba(5, 7, 19, 0.08);
  opacity: 1;
  transform: none;
  transition: none;
}

.clients-panel__head {
  margin-bottom: clamp(6px, 1vw, 10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 6px;
  text-align: left;
}

.clients-panel__meta {
  display: grid;
  gap: 4px;
}

.clients-panel__title {
  font-family: var(--vu-title-font);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  margin: 0;
  color: var(--industry-accent);
}

.clients-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(6px, 1vw, 10px);
}

.clients-panel__client {
  padding: .5em .65em;
  border-radius: 10px;
  background: #ffffff;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.3;
  opacity: 1;
  transform: none;
  transition: none;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: none;
  font-size: 0.98rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
}

.clients-panel__client span {
  display: block;
  word-break: break-word;
  color: var(--vu-night, #050713);
}

.clients-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--industry-accent, #d7dce5);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.clients-name {
  display: block;
}

.clients-letter--hash .clients-panel__title::after {
  content: '*';
  margin-left: 4px;
  font-size: .6em;
}

.clients-letter--a {
  --industry-accent: #f3b63f;
}

.clients-letter--b {
  --industry-accent: #ff7184;
}

.clients-letter--c {
  --industry-accent: #8ac6ff;
}

.clients-letter--d {
  --industry-accent: #87d9c1;
}

.clients-letter--e {
  --industry-accent: #ffe58b;
}

.clients-letter--f {
  --industry-accent: #c7a5ff;
}

.clients-letter--g {
  --industry-accent: #9de7ff;
}

.clients-letter--h {
  --industry-accent: #a6f1c5;
}

.clients-letter--i {
  --industry-accent: #ffadc5;
}

.clients-letter--j {
  --industry-accent: #c7d8ff;
}

.clients-letter--k {
  --industry-accent: #ffc681;
}

.clients-letter--l {
  --industry-accent: #cdfaad;
}

.clients-letter--m {
  --industry-accent: #fcd5ff;
}

.clients-letter--n {
  --industry-accent: #b2edff;
}

.clients-letter--o {
  --industry-accent: #ffd5ad;
}

.clients-letter--p {
  --industry-accent: #b9ffe0;
}

.clients-letter--q {
  --industry-accent: #ffc1d8;
}

.clients-letter--r {
  --industry-accent: #cad9ff;
}

.clients-letter--s {
  --industry-accent: #ffe29f;
}

.clients-letter--t {
  --industry-accent: #d6faff;
}

.clients-letter--u {
  --industry-accent: #ffd3d3;
}

.clients-letter--v {
  --industry-accent: #d8ffd0;
}

.clients-letter--w {
  --industry-accent: #f8d7ff;
}

.clients-letter--x {
  --industry-accent: #bfedff;
}

.clients-letter--y {
  --industry-accent: #fff0ab;
}

.clients-letter--z {
  --industry-accent: #dbffe1;
}

.clients-letter--hash {
  --industry-accent: #f3f3f3;
}

.clients-industry--consumer {
  --industry-accent: #f3b63f;
}

.clients-industry--energy {
  --industry-accent: #87d9c1;
}

.clients-industry--fic {
  --industry-accent: #8ac6ff;
}

.clients-industry--health {
  --industry-accent: #ffadc5;
}

.clients-industry--it {
  --industry-accent: #c7a5ff;
}

.clients-industry--government {
  --industry-accent: #cad9ff;
}

.clients-industry--transportation {
  --industry-accent: #ffd5ad;
}

.clients-industry--unclassified {
  --industry-accent: #f3f3f3;
}

/* CTA ---------------------------------------------------------- */
.clients-cta {
  background: linear-gradient(135deg, rgba(255, 217, 0, 0.18), rgba(43, 30, 85, 0.94));
  color: #fff;
  border-radius: 22px;
  padding: clamp(16px, 2.8vw, 26px);
  box-shadow: var(--vu-shadow-soft, 0 20px 42px rgba(18, 6, 50, 0.26));
}

.clients-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.6vw, 16px);
}

.clients-cta__inner h2 {
  margin: 2px 0;
  font-family: var(--vu-title-font);
}

.clients-cta__inner .clients-lede {
  color: rgba(255, 255, 255, 0.9);
}

.clients-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .clients-panel__client {
    opacity: 1;
    transform: none;
  }

  .clients-hero__quote {
    transition: none;
  }
}

.clients-quote-banner-shell {
  display: block;
}

.clients-quote-banner-shell[data-has-right="true"] {
  display: none;
}

@media (max-width: 1199px) {
  .clients-quote-banner-shell[data-has-right="true"] {
    display: block;
  }
}

/* Fallback to media queries since container clients-main was removed */
@media (max-width: 1024px) {
  .clients-floating-shell {
    position: static;
    margin: clamp(10px, 2vw, 16px) 0 0;
    max-width: 100%;
    width: 100%;
    top: auto;
    right: auto;
  }
}

@media (max-width: 900px) {
  .clients-hero {
    border-radius: 18px;
  }

  .clients-hero__cta {
    width: auto;
  }

  /* Removed .clients-hero__actions override as it was deleted from PHP */
}

@media (max-width: 720px) {

  .clients-panel__list {
    grid-template-columns: 1fr;
  }

  .clients-hero__actions,
  .clients-cta__actions {
    flex-direction: row;
    /* Keep row layout */
    justify-content: center;
    /* Center them */
    align-items: center;
  }

  .clients-hero__cta,
  .clients-cta__actions .clients-hero__cta {
    width: auto;
    /* Prevent full width expansion */
    flex: 0 0 auto;
  }
}

/* Quote Alignment Fix: Ensure text starts topleft */
.clients-quote-banner__inner {
  align-items: flex-start;
  /* Was likely center */
  text-align: left;
}

.vu-testimonial-slide__content {
  text-align: left;
  justify-content: flex-start;
}

.vu-testimonial-slide__quote {
  margin: 0;
  text-align: left;
}

/* Fix testimonial clipping below 520px */
@media (max-width: 520px) {
  .clients-quote-banner {
    width: 100%;
    padding: clamp(14px, 3vw, 20px);
    border-radius: 12px;
  }

  .clients-quote-banner__inner {
    padding: 0;
    max-width: 100%;
  }

  .clients-hero__quote {
    padding-right: 0;
  }

  .clients-hero__quote blockquote {
    font-size: 0.85rem;
  }

  .clients-hero__quote-text {
    max-width: 100%;
  }

  .clients-hero__inner {
    padding: clamp(14px, 3vw, 20px);
  }
}
