.empReviews {
  --bg: #0d0d0d;
  --bg-deep: #080808;
  --surface: #151515;
  --surface-2: #191919;
  --surface-3: #1d1d1d;
  --red: #c1121f;
  --red-bright: #e12636;
  --red-deep: #8f0000;
  --red-soft: rgba(193, 18, 31, 0.14);
  --text: #ffffff;
  --muted: #b9bcc5;
  --muted-2: #858995;
  --gold: #ffca3a;
  --line: rgba(255, 255, 255, 0.085);
  --line-strong: rgba(255, 255, 255, 0.14);
  --container: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

/* The page assumes a dark theme background. If your Invision theme is light,
   uncomment this to give the block its own dark canvas: */
/*
.empReviews {
  padding: 1px 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(193, 18, 31, 0.08), transparent 40%),
    #0d0d0d;
}
*/

.empReviews,
.empReviews *,
.empReviews *::before,
.empReviews *::after {
  box-sizing: border-box;
}

.empReviews a {
  color: inherit;
  text-decoration: none;
}

.empReviews a:hover {
  text-decoration: none;
}

.empReviews button,
.empReviews input,
.empReviews textarea {
  font: inherit;
}

.empReviews button {
  color: inherit;
}

.empReviews svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.empReviews h1,
.empReviews h2,
.empReviews h3,
.empReviews p,
.empReviews strong,
.empReviews b {
  color: inherit;
  font-family: var(--font);
}

.empReviews h1,
.empReviews h2 {
  color: var(--text);
}

.empReviews .container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.empReviews .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.empReviews .button:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.empReviews .button svg {
  width: 17px;
  height: 17px;
}

.empReviews .button-compact {
  min-height: 39px;
  padding-inline: 16px;
  border-color: rgba(193, 18, 31, 0.7);
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
}

.empReviews .button-primary {
  border-color: #dd2635;
  background: linear-gradient(135deg, #df2635, #9e0914);
  box-shadow: 0 13px 34px rgba(193, 18, 31, 0.18);
}

.empReviews .button-primary:hover {
  border-color: #f24a57;
  background: linear-gradient(135deg, #ee3241, #ad0a16);
  box-shadow: 0 17px 42px rgba(193, 18, 31, 0.28);
}

.empReviews .button-leading {
  fill: currentColor;
  stroke: none;
}

.empReviews .hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 45px;
}

.empReviews .hero::before {
  position: absolute;
  z-index: -1;
  top: 17%;
  left: 50%;
  width: 760px;
  height: 420px;
  border-radius: 50%;
  background: rgba(193, 18, 31, 0.08);
  content: "";
  filter: blur(110px);
  transform: translateX(-50%);
}

.empReviews .hero-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.empReviews .headline-panel {
  width: min(100%, 900px);
  margin-top: 28px;
  padding: 27px 34px 30px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 42%),
    rgba(21, 21, 21, 0.88);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
}

.empReviews .headline-panel h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 830;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.empReviews .headline-panel h1 span {
  color: var(--red-bright);
}

.empReviews .headline-panel h1 em {
  color: #888b93;
  font-style: normal;
  font-weight: 500;
}

.empReviews .review-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 540px);
  min-height: 72px;
  margin-top: 0;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(34, 29, 30, 0.96), rgba(22, 22, 22, 0.96));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}

.empReviews .ticker-stars {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
  animation: emp-star-glow 2.8s ease-in-out infinite alternate;
}

.empReviews .ticker-stars span {
  display: inline-block;
  animation: emp-star-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--i, 0) * 80ms);
}

@keyframes emp-star-pop {
  from { opacity: 0; transform: scale(0.3) translateY(5px) rotate(-18deg); }
  to { opacity: 1; transform: scale(1) translateY(0) rotate(0deg); }
}

@keyframes emp-star-glow {
  from { text-shadow: 0 0 8px rgba(255, 202, 58, 0.22); }
  to { text-shadow: 0 0 15px rgba(255, 202, 58, 0.55), 0 0 26px rgba(255, 202, 58, 0.18); }
}

.empReviews .review-ticker > i {
  flex: 0 0 auto;
  width: 1px;
  height: 22px;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.24);
}

.empReviews .review-ticker strong {
  overflow: hidden;
  color: #f0f0f2;
  font-size: 13px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empReviews .ticker-caret {
  width: 2px;
  height: 17px;
  margin-left: 4px;
  background: var(--red-bright);
  animation: emp-blink 1s steps(1) infinite;
}

@keyframes emp-blink {
  50% { opacity: 0; }
}

.empReviews .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 38px;
}

.empReviews .stat-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 214px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 85%, rgba(193, 18, 31, 0.1), transparent 38%),
    linear-gradient(145deg, #1a1a1a, #141414);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18), inset 0 1px rgba(255, 255, 255, 0.025);
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.empReviews .stat-card::before {
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 38, 54, 0.75), transparent);
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.empReviews .stat-card:hover {
  border-color: rgba(225, 38, 54, 0.4);
  transform: translateY(-4px);
}

.empReviews .stat-card:hover::before {
  opacity: 1;
}

.empReviews .stat-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: #c9cbd1;
}

.empReviews .stat-icon svg {
  width: 29px;
  height: 29px;
}

.empReviews .stat-card > strong {
  margin-top: 19px;
  color: var(--red-bright);
  font-size: clamp(39px, 4vw, 54px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
  text-shadow: 0 0 28px rgba(193, 18, 31, 0.18);
}

.empReviews .stat-card > span:last-child {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.empReviews .hero-scoreline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 650;
}

.empReviews .hero-scoreline b {
  color: #dedfe3;
}

.empReviews .reviews-section {
  padding: 65px 0 94px;
}

.empReviews .reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.empReviews .section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.empReviews .section-kicker span {
  width: 24px;
  height: 2px;
  background: var(--red-bright);
}

.empReviews .reviews-heading h2 {
  margin: 0;
  font-size: clamp(35px, 4.5vw, 58px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.empReviews .feed-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 32px;
}

.empReviews .sort-control {
  display: inline-flex;
  padding: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #191919;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.03);
}

.empReviews .sort-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 43px;
  padding: 0 17px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.2s ease;
}

.empReviews .sort-button svg {
  width: 15px;
  height: 15px;
}

.empReviews .sort-button.active {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: #fff;
  box-shadow: 0 8px 22px rgba(193, 18, 31, 0.23);
}

.empReviews .review-list {
  display: block;
  columns: 2;
  column-gap: 20px;
}

.empReviews .review-card {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
  margin: 0 0 20px;
  padding: 23px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(193, 18, 31, 0.09), transparent 34%),
    linear-gradient(145deg, #1b1b1b, #161616);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.17), inset 0 1px rgba(255, 255, 255, 0.025);
  opacity: 0;
  animation: emp-card-in 0.48s ease forwards;
  animation-delay: var(--delay, 0ms);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  scroll-margin-top: 28px;
}

.empReviews .review-card::before {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(193, 18, 31, 0.07);
  content: "";
  filter: blur(20px);
  pointer-events: none;
}

.empReviews .review-card > * {
  position: relative;
  z-index: 1;
}

.empReviews .review-card:hover {
  border-color: rgba(225, 38, 54, 0.38);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(193, 18, 31, 0.05);
  transform: translateY(-3px);
}

.empReviews .review-card:target,
.empReviews .review-card.is-linked {
  border-color: rgba(238, 50, 65, 0.92);
  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.27),
    0 0 0 3px rgba(225, 38, 54, 0.16),
    0 0 40px rgba(193, 18, 31, 0.22);
}

.empReviews .review-card:target::after,
.empReviews .review-card.is-linked::after {
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  content: "";
  pointer-events: none;
}

@keyframes emp-card-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.empReviews .review-card-top,
.empReviews .review-identity,
.empReviews .review-tools,
.empReviews .author-line {
  display: flex;
  align-items: center;
}

.empReviews .review-card-top {
  justify-content: space-between;
  gap: 18px;
}

.empReviews .review-identity {
  min-width: 0;
  gap: 13px;
}

.empReviews .review-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: linear-gradient(145deg, var(--avatar-a, #c1121f), var(--avatar-b, #4b070c));
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  place-items: center;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.26);
}

.empReviews .review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empReviews .author-line {
  gap: 6px;
}

.empReviews .review-author {
  overflow: hidden;
  margin: 0;
  color: #f1f1f3;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empReviews .verified-mark {
  color: var(--red-bright);
}

.empReviews .verified-mark svg {
  width: 15px;
  height: 15px;
}

.empReviews .coupon-winner {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  margin-left: 2px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 202, 58, 0.38);
  border-radius: 999px;
  background: rgba(255, 202, 58, 0.12);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.empReviews .coupon-winner svg {
  width: 12px;
  height: 12px;
}

.empReviews .review-stars {
  margin-top: 5px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1;
}

.empReviews .review-tools {
  flex: 0 0 auto;
  gap: 10px;
  z-index: 3;
}

.empReviews .review-date {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 650;
}

.empReviews .copy-review {
  position: relative;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-2);
  cursor: pointer;
  pointer-events: auto;
  place-items: center;
  transition: 0.2s ease;
}

.empReviews .copy-review:hover {
  border-color: rgba(225, 38, 54, 0.45);
  color: var(--red-bright);
}

.empReviews .copy-review svg {
  width: 17px;
  height: 17px;
}

.empReviews .review-text {
  margin: 19px 0 0;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  color: #bfc1c8;
  font-size: 12px;
  line-height: 1.68;
}

.empReviews .review-text::first-letter {
  color: #d4d5da;
}

.empReviews .review-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5;
  min-height: 132px;
  margin-top: 14px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #101112;
  cursor: zoom-in;
  text-align: left;
}

.empReviews .review-media[hidden] {
  display: none;
}

.empReviews .review-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: 0.25s ease;
}

.empReviews .review-media:hover img {
  opacity: 0.9;
  transform: scale(1.025);
}

.empReviews .review-media:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

.empReviews .review-media .media-privacy {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  background: rgba(8, 10, 9, 0.76);
  color: #f4f4f5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(11px) saturate(0.8);
  backdrop-filter: blur(11px) saturate(0.8);
  transform: translateZ(0);
}

.empReviews .review-media .media-privacy > svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #58d696;
}

.empReviews .review-media .media-privacy > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.empReviews .review-media .media-privacy b {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.empReviews .review-media .media-privacy small {
  margin-top: 3px;
  color: #d0d3d6;
  font-size: 9px;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

.empReviews .review-lightbox[hidden] {
  display: none;
}

.empReviews .review-lightbox {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  padding: 24px;
  opacity: 0;
  place-items: center;
  transition: opacity 0.2s ease;
}

.empReviews .review-lightbox.is-open {
  opacity: 1;
}

.empReviews .lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 4, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.empReviews .lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: #111315;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(225, 38, 54, 0.06);
  transform: translateY(12px) scale(0.975);
  transition: transform 0.22s ease;
}

.empReviews .review-lightbox.is-open .lightbox-dialog {
  transform: translateY(0) scale(1);
}

.empReviews .lightbox-dialog:focus {
  outline: none;
}

.empReviews .lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 128px);
  border-radius: 10px;
  background: #090a0b;
  object-fit: contain;
}

.empReviews .lightbox-close {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 17px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(8, 8, 9, 0.78);
  color: #fff;
  cursor: pointer;
  place-items: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.empReviews .lightbox-close:hover {
  border-color: rgba(238, 50, 65, 0.75);
  background: rgba(193, 18, 31, 0.82);
  transform: scale(1.04);
}

.empReviews .lightbox-close svg {
  width: 18px;
  height: 18px;
}

.empReviews .lightbox-privacy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  background: rgba(8, 10, 9, 0.76);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(11px) saturate(0.8);
  backdrop-filter: blur(11px) saturate(0.8);
}

.empReviews .lightbox-privacy > svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: #58d696;
}

.empReviews .lightbox-privacy > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.empReviews .lightbox-privacy b {
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.empReviews .lightbox-privacy small {
  margin-top: 2px;
  color: #d0d3d6;
  font-size: 9px;
}

.empReviews .review-skeleton {
  display: inline-block;
  width: 100%;
  min-height: 220px;
  margin: 0 0 20px;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(100deg, #151515 20%, #202020 45%, #151515 70%);
  background-size: 200% 100%;
  animation: emp-skeleton 1.4s linear infinite;
}

@keyframes emp-skeleton {
  to { background-position: -200% 0; }
}

.empReviews .load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 31px;
}

.empReviews .button-load {
  min-width: 215px;
}

.empReviews .button-load[hidden] {
  display: none;
}

.empReviews .empty-state {
  padding: 75px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.empReviews .empty-state span {
  color: var(--red-bright);
  font-size: 28px;
}

.empReviews .empty-state h3 {
  margin: 14px 0 8px;
  color: white;
}

.empReviews .empty-state p {
  margin: 0;
  font-size: 13px;
}

.empReviews .toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  padding: 13px 17px;
  border: 1px solid rgba(225, 38, 54, 0.35);
  border-radius: 9px;
  background: #1b1415;
  color: white;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.22s ease;
}

.empReviews .toast.show {
  opacity: 1;
  transform: translateY(0);
}

.empReviews .reveal {
  opacity: 0;
  animation: emp-reveal 0.65s ease forwards;
}

.empReviews .reveal-delay-1 { animation-delay: 0.08s; }
.empReviews .reveal-delay-2 { animation-delay: 0.16s; }
.empReviews .reveal-delay-3 { animation-delay: 0.24s; }
.empReviews .reveal-delay-4 { animation-delay: 0.32s; }

@keyframes emp-reveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 850px) {

  .empReviews .review-list {
    columns: 1;
  }

}

@media (max-width: 680px) {
  .empReviews .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .empReviews .hero {
    padding: 50px 0 30px;
  }

  .empReviews .headline-panel {
    margin-top: 22px;
    padding: 22px 16px 24px;
    border-radius: 15px;
  }

  .empReviews .headline-panel h1 {
    font-size: clamp(32px, 10vw, 45px);
  }

  .empReviews .review-ticker {
    min-height: 63px;
    margin-top: 0;
    padding-inline: 16px;
  }

  .empReviews .ticker-stars {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .empReviews .review-ticker > i {
    margin-inline: 11px;
  }

  .empReviews .review-ticker strong {
    font-size: 10px;
  }

  .empReviews .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 25px;
  }

  .empReviews .stat-card {
    display: grid;
    grid-template-columns: 45px auto 1fr;
    justify-content: start;
    min-height: 95px;
    padding: 18px 22px;
    text-align: left;
  }

  .empReviews .stat-card > strong {
    margin: 0 17px 0 13px;
    font-size: 36px;
  }

  .empReviews .stat-card > span:last-child {
    margin: 0;
    font-size: 8px;
  }

  .empReviews .hero-scoreline {
    font-size: 9px;
  }

  .empReviews .reviews-section {
    padding: 50px 0 74px;
  }

  .empReviews .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 26px;
  }

  .empReviews .reviews-heading .button {
    width: 100%;
  }

  .empReviews .feed-controls {
    align-items: stretch;
    min-height: auto;
    margin-bottom: 24px;
    flex-direction: column;
  }

  .empReviews .sort-control {
    width: 100%;
  }

  .empReviews .sort-button {
    flex: 1;
    justify-content: center;
    padding-inline: 10px;
  }

  .empReviews .review-card {
    padding: 18px;
  }

  .empReviews .review-card-top {
    align-items: flex-start;
  }

  .empReviews .review-avatar {
    width: 41px;
    height: 41px;
    border-radius: 11px;
  }

  .empReviews .review-date {
    display: none;
  }

  .empReviews .review-text {
    padding: 14px;
    font-size: 11px;
  }

  .empReviews .review-lightbox {
    padding: 12px;
  }

  .empReviews .lightbox-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 6px;
    border-radius: 12px;
  }

  .empReviews .lightbox-image {
    max-height: calc(100vh - 80px);
  }

  .empReviews .lightbox-close {
    top: 13px;
    right: 13px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .empReviews,
  .empReviews *,
  .empReviews *::before,
  .empReviews *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
