.z5reviews,
.z5reviews * { box-sizing: border-box; }

.z5reviews {
  --z5r-heading: #101010;
  --z5r-text: #293042;
  --z5r-muted: #697080;
  --z5r-card: #f5f3f3;
  --z5r-border: #e9e5e5;
  --z5r-stars: #f9ab00;
  --z5r-accent: #e3262b;
  --z5r-arrow: #101010;
  --z5r-arrow-bg: #fff;
  --z5r-arrow-hover: #fff;
  --z5r-arrow-bg-hover: #e3262b;
  --z5r-avatar: #4285f4;
  --z5r-radius: 18px;
  --z5r-lift: 6px;
  width: 100%;
  min-width: 0;
  overflow: clip;
  background: #fff;
  color: var(--z5r-text);
  padding: 100px 32px;
  isolation: isolate;
}

.z5reviews__inner {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.z5reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.z5reviews__eyebrow {
  margin: 0 0 12px;
  color: var(--z5r-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.z5reviews__heading {
  margin: 0;
  max-width: 900px;
  color: var(--z5r-heading);
  font-size: clamp(34px, 3.2vw, 58px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.z5reviews__summary,
.z5reviews__summary:link,
.z5reviews__summary:visited,
.z5reviews__summary:hover,
.z5reviews__summary:focus,
.z5reviews__summary:active {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto;
  margin-top: 22px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--z5r-heading);
  text-decoration: none;
  box-shadow: none;
}

.z5reviews__summary:focus-visible { outline: 2px solid var(--z5r-accent); outline-offset: 7px; border-radius: 2px; }
.z5reviews__summary-stars { display: inline-flex; gap: 1px; color: var(--z5r-stars); font-size: 20px; line-height: 1; letter-spacing: -.08em; }
.z5reviews__rating-copy { font-size: 17px; line-height: 1.4; }
.z5reviews__google { display: inline-flex; flex: 0 0 auto; width: 18px; height: 18px; vertical-align: middle; }
.z5reviews__google svg { display: block; width: 100%; height: 100%; }

.z5reviews__bullet-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.z5reviews__bullet-list li { margin: 0; padding: 0; }
.z5reviews .z5reviews__bullet,
.z5reviews .z5reviews__bullet:hover,
.z5reviews .z5reviews__bullet:focus,
.z5reviews .z5reviews__bullet:active {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  outline: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  appearance: none;
  cursor: pointer;
}
.z5reviews__bullet::after {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: -1;
  border: 1px solid var(--z5r-accent);
  border-radius: inherit;
  transition: inset .45s cubic-bezier(.65,.05,0,1), opacity .3s ease;
  opacity: 0;
}
.z5reviews__bullet:hover::after,
.z5reviews__bullet:focus-visible::after,
.z5reviews__bullet.active::after { inset: -5px; opacity: 1; }
.z5reviews__bullet img,
.z5reviews__bullet > span { display: grid; place-items: center; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; background: var(--z5r-avatar); color: #fff; font-size: 13px; line-height: 1; }

.z5reviews__slider-row {
  position: relative;
  display: flex;
  width: calc(100% + 64px);
  margin: 42px -32px 0;
  padding: 16px 0 22px;
  overflow: clip;
  touch-action: pan-y;
}

.z5reviews__list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 0;
  cursor: grab;
}
.z5reviews__list:active { cursor: grabbing; }

.z5reviews__slide {
  position: relative;
  flex: none;
  width: auto;
  min-width: 0;
  padding: 10px 8px;
  opacity: 1;
  transition: opacity .35s cubic-bezier(.77,0,.175,1);
  outline: 0;
}
.z5reviews--dim:has(.z5reviews__slide.active) .z5reviews__slide:not(.active) { opacity: .5; }

.z5reviews__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 560px;
  max-width: calc(100vw - 48px);
  min-width: 0;
  height: auto;
  min-height: 310px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--z5r-border);
  border-radius: var(--z5r-radius);
  background: var(--z5r-card);
  color: var(--z5r-text);
  transform: translateY(0);
  transition: transform .55s cubic-bezier(.625,.05,0,1), border-color .4s ease, box-shadow .4s ease;
  text-decoration: none;
}
.z5reviews a.z5reviews__card:link,
.z5reviews a.z5reviews__card:visited,
.z5reviews a.z5reviews__card:hover,
.z5reviews a.z5reviews__card:focus,
.z5reviews a.z5reviews__card:active {
  background: var(--z5r-card);
  color: var(--z5r-text);
  text-decoration: none;
}
.z5reviews a.z5reviews__card:focus-visible {
  outline: 2px solid var(--z5r-accent);
  outline-offset: 3px;
}
.z5reviews__slide.active .z5reviews__card,
.z5reviews__slide:focus-within .z5reviews__card { transform: translateY(calc(var(--z5r-lift) * -1)); border-color: color-mix(in srgb, var(--z5r-accent) 25%, var(--z5r-border)); }

.z5reviews__person { display: flex; align-items: center; gap: 16px; min-width: 0; }
.z5reviews__avatar { display: grid; flex: 0 0 44px; place-items: center; width: 44px; height: 44px; overflow: hidden; border-radius: 999px; background: var(--z5r-avatar); color: #fff; font-size: 18px; font-weight: 500; line-height: 1; }
.z5reviews__avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
.z5reviews__identity { display: flex; flex: 1 1 auto; flex-direction: column; gap: 3px; min-width: 0; }
.z5reviews__name { display: block; min-width: 0; color: var(--z5r-heading); font-size: 20px; font-weight: 750; line-height: 1.2; overflow-wrap: anywhere; }
.z5reviews__date { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; min-width: 0; color: var(--z5r-muted); font-size: 14px; line-height: 1.35; overflow-wrap: anywhere; }
.z5reviews__date i { font-style: normal; }
.z5reviews__date .z5reviews__google { width: 16px; height: 16px; }
.z5reviews__stars { display: flex; gap: 2px; margin-top: 25px; color: color-mix(in srgb, var(--z5r-muted) 20%, transparent); font-size: 24px; line-height: 1; letter-spacing: -.08em; }
.z5reviews__stars .is-filled { color: var(--z5r-stars); }
.z5reviews__text {
  display: -webkit-box;
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  color: var(--z5r-text);
  font-family: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  min-height: calc(1.55em * 3);
  max-height: calc(1.55em * 3);
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.z5reviews__open-hint {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 24px 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--z5r-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.z5reviews__open-hint svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.z5reviews__card:hover .z5reviews__open-hint,
.z5reviews__card:focus-visible .z5reviews__open-hint { color: var(--z5r-accent); }
.z5reviews__active-line { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--z5r-accent); transform: scaleX(0); transform-origin: left center; transition: transform .6s cubic-bezier(.625,.05,0,1); }
.z5reviews__slide.active .z5reviews__active-line { transform: scaleX(1); }

.z5reviews--equal .z5reviews__list { align-items: stretch; }
.z5reviews--equal .z5reviews__slide { display: flex; align-items: stretch; }
.z5reviews--equal .z5reviews__card { height: 100%; }

.z5reviews .z5reviews__arrow,
.z5reviews .z5reviews__arrow:hover,
.z5reviews .z5reviews__arrow:focus,
.z5reviews .z5reviews__arrow:active {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--z5r-border);
  border-radius: 999px;
  outline: 0;
  background: var(--z5r-arrow-bg);
  color: var(--z5r-arrow);
  box-shadow: 0 8px 28px rgba(16,16,16,.08);
  transform: translateY(-50%);
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease;
  appearance: none;
  cursor: pointer;
}
.z5reviews .z5reviews__arrow:hover,
.z5reviews .z5reviews__arrow:focus-visible { border-color: var(--z5r-arrow-bg-hover); background: var(--z5r-arrow-bg-hover); color: var(--z5r-arrow-hover); }
.z5reviews .z5reviews__arrow:focus-visible { outline: 2px solid var(--z5r-accent); outline-offset: 3px; }
.z5reviews__arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.z5reviews__arrow--prev { left: max(14px, calc((100vw - min(100vw, 1800px)) / 2 + 14px)); }
.z5reviews__arrow--prev svg { transform: rotate(180deg); }
.z5reviews__arrow--next { right: max(14px, calc((100vw - min(100vw, 1800px)) / 2 + 14px)); }
.z5reviews__sr { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 767px) {
  .z5reviews { padding: 72px 20px; }
  .z5reviews__heading { font-size: clamp(31px, 10vw, 43px); }
  .z5reviews__summary { max-width: 310px; gap: 6px; }
  .z5reviews__rating-copy { font-size: 15px; }
  .z5reviews__slider-row { width: calc(100% + 40px); margin-right: -20px; margin-left: -20px; }
  .z5reviews__slide { width: 88vw; padding-right: 7px; padding-left: 7px; }
  .z5reviews__card { width: 100%; max-width: none; min-height: 0; padding: 26px; }
  .z5reviews__text { font-size: 16px; line-height: 1.55; }
  .z5reviews__name { font-size: 18px; }
  .z5reviews .z5reviews__arrow { top: auto; bottom: 0; }
  .z5reviews__arrow--prev { left: calc(50% - 54px); }
  .z5reviews__arrow--next { right: calc(50% - 54px); }
  .z5reviews__slider-row:has(.z5reviews__arrow) { padding-bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  .z5reviews *, .z5reviews *::before, .z5reviews *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .z5reviews__slide.active .z5reviews__card { transform: none; }
}
