/* Homepage customer-story rail. */
.dss-reviews-section{
  max-width:1440px;
  margin:0 auto;
  padding:88px 22px 96px;
  overflow:hidden;
  background:#fff;
}
.dss-reviews-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  max-width:1200px;
  margin:0 auto 14px;
  text-align:center;
}
.dss-reviews-head>div{width:100%}
.dss-reviews-head h2{
  margin:7px 0 8px;
  color:#111;
  font-size:clamp(32px,4vw,54px);
  line-height:.98;
  letter-spacing:-.045em;
}
.dss-reviews-head p{
  max-width:600px;
  margin:0 auto;
  color:#666;
  font-size:15px;
  line-height:1.65;
}
.dss-reviews-track{
  display:flex;
  gap:18px;
  width:100%;
  max-width:1360px;
  margin:0 auto;
  padding:0 0 12px;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  cursor:grab;
  background:#fff;
}
.dss-reviews-track.is-dragging{cursor:grabbing;scroll-snap-type:none;user-select:none}
.dss-reviews-track::-webkit-scrollbar{display:none}
.dss-review-card{
  flex:0 0 clamp(260px,26vw,330px);
  min-width:0;
  overflow:hidden;
  border:1px solid #dedede;
  border-radius:20px;
  background:#fff;
  box-shadow:none;
  scroll-snap-align:start;
}
.dss-review-card__media{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  background:#ececec;
}
.dss-review-card__media:after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:28%;
  background:linear-gradient(transparent,rgba(0,0,0,.12));
  pointer-events:none;
}
.dss-review-card__media img,
.dss-review-card__media video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .45s ease;
}
.dss-review-card:hover .dss-review-card__media img,
.dss-review-card:hover .dss-review-card__media video{transform:scale(1.025)}
.dss-review-card__media[data-review-open]{cursor:zoom-in}
.dss-review-card__media[data-review-open]:focus-visible{outline:3px solid #111;outline-offset:-4px}
.dss-review-card.has-no-image .dss-review-card__media{
  display:grid;
  place-items:center;
  aspect-ratio:4/3.2;
  background:linear-gradient(145deg,#111,#303030);
}
.dss-review-card.has-no-image .dss-review-card__media span{
  color:#fff;
  font-family:Georgia,serif;
  font-size:92px;
  line-height:1;
  opacity:.9;
}
.dss-review-card__body{
  min-height:155px;
  display:flex;
  flex-direction:column;
  padding:22px 22px 20px;
}
.dss-review-stars{
  display:flex;
  gap:3px;
  margin-bottom:14px;
  color:#d4d4d4;
  font-size:16px;
  letter-spacing:.02em;
}
.dss-review-stars .is-filled{color:#c99b35}
.dss-review-card blockquote{
  flex:1;
  margin:0;
  color:#222;
  font-size:15px;
  line-height:1.65;
  font-style:normal;
}
.dss-review-card__body>p{
  margin:14px 0 0;
  padding-top:14px;
  border-top:1px solid #ececec;
  color:#111;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.dss-review-lightbox[hidden]{display:none!important}
.dss-review-lightbox{
  position:fixed;
  inset:0;
  z-index:10050;
  display:grid;
  place-items:center;
  padding:28px;
  background:rgba(0,0,0,.88);
}
.dss-review-lightbox__content{
  display:grid;
  place-items:center;
  width:100%;
  height:100%;
  pointer-events:none;
}
.dss-review-lightbox__content img,
.dss-review-lightbox__content video{
  display:block;
  width:auto;
  max-width:min(92vw,900px);
  height:auto;
  max-height:90vh;
  object-fit:contain;
  border-radius:12px;
  background:#000;
  pointer-events:auto;
}
.dss-review-lightbox__close{
  position:fixed;
  top:20px;
  right:20px;
  z-index:2;
  width:46px;
  height:46px;
  padding:0;
  border:1px solid rgba(255,255,255,.45);
  border-radius:50%;
  background:#111;
  color:#fff;
  font-size:30px;
  line-height:1;
}
.dss-review-lightbox__close:focus-visible{outline:3px solid #fff;outline-offset:3px}
body.dss-review-lightbox-open{overflow:hidden}
@media(max-width:700px){
  .dss-reviews-section{padding:64px 0 70px}
  .dss-reviews-head{align-items:center;margin:0 18px 14px}
  .dss-reviews-head h2{font-size:36px}
  .dss-reviews-head p{font-size:14px}
  .dss-reviews-track{gap:12px;padding:0 18px 12px;scroll-padding-left:18px}
  .dss-review-card{flex-basis:82vw;max-width:330px;border-radius:16px}
  .dss-review-card__body{min-height:150px;padding:20px}
  .dss-review-lightbox{padding:12px}
  .dss-review-lightbox__close{top:12px;right:12px}
}
@media(prefers-reduced-motion:reduce){
  .dss-review-card__media img,.dss-review-card__media video{transition:none}
}
