/** Shopify CDN: Minification failed

Line 219:0 Expected "}" to go with "{"

**/
/* =========================
   Reviews — New / Clean
   ========================= */

.reviews-new .container{
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 20px;
}

.reviews-new .surface{
  position: relative;
  background: var(--rv-bg, #111111);
  color: var(--section-dark-text);
  border-radius: var(--rv-radius, 44px);
  margin-block: var(--rv-mt, 80px) var(--rv-mb, 80px);
  padding: var(--rv-pad-y, 80px) var(--rv-pad-x, 80px) calc(var(--rv-pad-y, 80px) + 24px);
  overflow: hidden;
}

/* Header: title left, Trustpilot right */
.reviews-new .head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}

.reviews-new .title{
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-display, 'Clash Grotesk', system-ui, sans-serif);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  color: var(--section-dark-heading);
  font-size: var(--rv-title-d, 48px);
  letter-spacing: normal;
}

.reviews-new .tp-inline{
  flex: 0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  text-decoration:none;
}

.reviews-new .tp-inline__img{
  display:block;
  width:160px;
  height:auto;
}

/* Slider */
.reviews-new .slider{ position: relative; margin-inline: auto; }

.reviews-new .track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 347px;
  gap: var(--gap, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  list-style: none;
  margin: 0;
  padding: 8px 0 12px 0;
}
.reviews-new .track::-webkit-scrollbar{ display:none; }

/* Card */
.reviews-new .card{
  scroll-snap-align: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  padding: 0 0 18px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Quote */
.reviews-new .quote{
  width: 22px;
  height: auto;
  display: block;
  margin-bottom: 25px;
  opacity: 1;
}

/* Body */
.reviews-new .card-body{
  margin: 0;
  color: inherit;
  max-width: 90%;
  white-space: normal;
}

.reviews-new .meta{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.reviews-new .avatar{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.reviews-new .byline{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews-new .author{
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.reviews-new .role{
  font-size: 14px;
  opacity: .75;
}

/* Nav */
.reviews-new .nav{
  position: absolute;
  right: var(--rv-pad-x, 80px);
  bottom: -5px;
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
}

.reviews-new .nav .prev,
.reviews-new .nav .next{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
}

.reviews-new .nav svg{
  width: 32px;
  height: 20px;
  display: block;
}

.reviews-new .nav .prev svg{
  transform: scaleX(-1);
  transform-origin: 50% 50%;
}

.reviews-new .nav .prev:focus-visible,
.reviews-new .nav .next:focus-visible{
  outline: 2px solid rgba(255, 255, 255, .6);
  outline-offset: 3px;
}

/* Tablet */
@media (max-width: 1024px){
  .reviews-new .surface{
    margin-block: 56px 56px;
    padding: 48px 48px 64px;
  }
  .reviews-new .title{ font-size: var(--rv-title-t, 36px); }
}

/* Mobile */
@media (max-width: 767px){
  .reviews-new .surface{
    margin-block: 32px 32px;
    padding: 36px 24px 64px;
  }

  .reviews-new .title{ font-size: var(--rv-title-m, 28px); }

  .reviews-new .tp-inline__img{ width: 120px; }

  .reviews-new .track{ grid-auto-columns: 100%; }

  .reviews-new .card{ padding: 0 0 12px; }

  .reviews-new .card-body{ max-width: 100%; }

  /* Center nav on mobile */
@media (max-width: 767px){
  .reviews-new .nav{
    left: 50%;
    transform: translateX(-50%) translateX(-4px); /* ← optisk korrigering */
    bottom: -12px;
    gap: 40px;
    width: max-content;
  }
}
