/* Page wrapper */
.results-wrapper{
  padding:80px 6%;
  background:#f5f7fb;
}

/* Section */
.results-block{
  margin-bottom:100px;
}

/* Heading */
.results-heading{
  font-size:34px;
  margin-bottom:35px;
  position:relative;
}

.results-heading::after{
  content:"";
  width:80px;
  height:4px;
  background:#c62828;
  display:block;
  margin-top:10px;
}

/* Row */
.results-row{
  display:flex;
  gap:30px;
  margin-bottom:40px;
  justify-content:center;
}

/* Card (320x420) */
.results-card{
  width:320px;
  height:420px;
  border-radius:22px;
  overflow:hidden;
  background:#000;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  flex-shrink:0;
}

/* Image */
.results-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

/* Hover */
.results-card:hover img{
  transform:scale(1.12);
}

/* Animation (YOUR EXISTING ONE) */
.animate{
  opacity:0;
  transform:translateY(50px);
  transition:all .7s ease;
}

.animate.show{
  opacity:1;
  transform:translateY(0);
}

/* Tablet: 2 per row */
@media (max-width:1024px){
  .results-row{
    flex-wrap:wrap;
    justify-content:center;
  }
}

/* Mobile: 1 per row */
@media (max-width:600px){
  .results-row{
    flex-direction:column;
    align-items:center;
  }

  .results-card{
    width:90%;
    max-width:320px;
    height:420px;
  }
}