.results{overflow:hidden}

.results-carousel{
  position:relative;
  width:min(100%,1380px);
  margin:42px auto 0;
  display:grid;
  grid-template-columns:58px minmax(0,1fr) 58px;
  grid-template-areas:
    "prev viewport next"
    ". dots .";
  align-items:center;
  gap:20px;
}

.results-viewport{
  grid-area:viewport;
  min-width:0;
  overflow:hidden;
  border-radius:28px;
}

.results-track{
  display:flex;
  width:100%;
  will-change:transform;
  transform:translate3d(0,0,0);
}

.results-page{
  flex:0 0 100%;
  width:100%;
  min-width:100%;
}

.results-page-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  padding:2px;
}

.result-card{
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(255,90,18,.28);
  border-radius:24px;
  background:linear-gradient(180deg,#111,#080808);
  box-shadow:0 20px 55px rgba(0,0,0,.34);
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}

.result-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,90,18,.52);
  box-shadow:0 26px 70px rgba(0,0,0,.42),0 0 28px rgba(255,90,18,.06);
}

.result-image-wrap{
  position:relative;
  width:100%;
  aspect-ratio:4/5;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#050505;
}

.result-main-image{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  background:#050505;
}

.result-badge{
  position:absolute;
  z-index:3;
  top:14px;
  left:14px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(4,4,4,.82);
  border:1px solid rgba(255,90,18,.48);
  color:#ff6b29;
  font:800 9px Montserrat,Inter,sans-serif;
  letter-spacing:.1em;
  backdrop-filter:blur(8px);
}

.result-card-meta{
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:15px 17px;
  border-top:1px solid rgba(255,255,255,.06);
}

.result-card-meta strong{
  font:800 13px Montserrat,Inter,sans-serif;
  letter-spacing:.03em;
}

.result-card-meta span{
  color:#777;
  font-size:11px;
}

.results-arrow{
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid rgba(255,90,18,.48);
  background:rgba(8,8,8,.94);
  color:#ff641e;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow:0 12px 30px rgba(0,0,0,.36);
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}

.results-arrow:hover{
  transform:scale(1.06);
  background:#111;
  border-color:rgba(255,90,18,.75);
}

.results-prev{grid-area:prev}
.results-next{grid-area:next}

.results-dots{
  grid-area:dots;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  margin-top:14px;
}

.result-dot{
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:999px;
  background:#444;
  cursor:pointer;
  transition:.22s ease;
}

.result-dot.active{
  width:28px;
  background:#ff5a12;
  box-shadow:0 0 14px rgba(255,90,18,.3);
}

@media(max-width:1050px) and (min-width:701px){
  .results-carousel{
    width:min(100%,1040px);
    grid-template-columns:52px minmax(0,1fr) 52px;
    gap:15px;
  }

  .results-page-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }

  .result-image-wrap{aspect-ratio:4/5}
}

@media(max-width:700px){
  .results-carousel{
    width:100%;
    margin-top:26px;
    grid-template-columns:1fr 1fr;
    grid-template-areas:
      "viewport viewport"
      "prev next"
      "dots dots";
    gap:14px 12px;
  }

  .results-viewport{border-radius:20px}

  .results-page-grid{
    grid-template-columns:1fr;
    gap:0;
    padding:0;
  }

  .result-card{
    border-radius:20px;
  }

  .result-image-wrap{
    aspect-ratio:auto;
    min-height:240px;
  }

  .result-main-image{
    width:100%;
    height:auto;
    object-fit:contain;
  }

  .results-arrow{
    width:44px;
    height:44px;
    justify-self:center;
  }

  .results-prev{
    justify-self:end;
    margin-right:8px;
  }

  .results-next{
    justify-self:start;
    margin-left:8px;
  }

  .results-dots{
    padding:0 10px;
    flex-wrap:wrap;
  }
}

@media(prefers-reduced-motion:reduce){
  .results-track,
  .result-card,
  .results-arrow,
  .result-dot{
    transition:none !important;
  }
}