/* Start custom CSS for html, class: .elementor-element-db037d5 */:root{
  --dsr-card-radius:18px;
  --dsr-shadow:0 10px 25px rgba(0,0,0,.15);
  --dsr-gap:22px;
}

.dsr-strip{
  background:transparent !important;
  padding:22px 18px;
}

.dsr-viewport{
  overflow:hidden;
  border-radius:22px;
}

.dsr-track{
  display:flex;
  gap:var(--dsr-gap);
  padding:4px;
  overflow:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  scroll-snap-type:x mandatory;
  cursor:grab;
  user-select:none;
  -webkit-overflow-scrolling:touch;
}
.dsr-track:active{ cursor:grabbing; }
.dsr-track::-webkit-scrollbar{ display:none; }

.dsr-card{
  flex:0 0 calc((100% - (var(--dsr-gap) * 2)) / 3); /* Desktop 3 */
  background:#fff;
  border-radius:var(--dsr-card-radius);
  box-shadow:var(--dsr-shadow);
  text-decoration:none;
  color:#111;
  display:flex;
  flex-direction:column;
  min-height:270px;
  scroll-snap-align:start;
  overflow:hidden;
}

.dsr-cta::before{
  content: "↗";
  font-size:16px;
  font-weight:700;
}

.dsr-img{
  margin:14px 14px 0 14px;
  border-radius:calc(var(--dsr-card-radius) - 2px);
  overflow:hidden;
  aspect-ratio:16/10;
  background:#e9eef5;
}
.dsr-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .25s ease;
}
.dsr-card:hover .dsr-img img{ transform:scale(1.02); }

.dsr-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  padding:14px 14px 16px;
}
.dsr-title{
  font-size:16px;
  line-height:1.15;
  margin:0;
  font-weight:700;
  max-width:80%;
}
.dsr-cta{
  width:38px;
  height:38px;
  border-radius:999px;
  background:var(--dsr-blue);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
  flex:0 0 auto;
}

.dsr-nav{
  width:44px;
  height:44px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,.20);
  color:#fff;
  font-size:30px;
  line-height:44px;
  display:grid;
  place-items:center;
  transition:transform .15s ease, background .15s ease;
  user-select:none;
}
.dsr-nav:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.30);
}
.dsr-nav:disabled{
  opacity:.45;
  cursor:not-allowed;
}

.dsr-dots{
  max-width:1100px;
  margin:14px auto 0;
  display:flex;
  justify-content:center;
  gap:8px;
}
.dsr-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  border:0;
  cursor:pointer;
}
.dsr-dot[aria-current="true"]{
  background:#fff;
  width:22px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablet Portrait → 2 cards */
@media (max-width: 980px){
  .dsr-card{
    flex:0 0 calc((100% - var(--dsr-gap)) / 2);
  }
}

/* Mobile → 1 full card */
@media (max-width: 640px){

  .dsr-nav{ 
    display:none; 
  }

  .dsr-card{ 
    flex:0 0 100%;   /* 🔥 changed from 88% to 100% */
  }

  .dsr-viewport{ 
    overflow:hidden;   /* 🔥 removed overflow:visible */
  }

  .dsr-track{ 
    padding-left:0; 
  }
}/* End custom CSS */