.stores-cities-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  float: unset !important;
  padding: 0 20px;
}

.stores-cities-title{
    font-family: Lato;
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    color: #1D1D1F;
    text-align: center;
    margin-bottom: 35px;
}
.cities-cards-container{
    display: flex;
    flex-wrap: wrap;
    gap: 38px;
    width: 100%;
}
.cities-cards-details{
    width: 17.5%;
}
.citiesCardImgWrapper{
     /* width: 224px; */
     width: 100%;
    height: 210px;
    /* height: 100%; */
    overflow: hidden;
    display: block;
    border-radius: 10px;
     margin-bottom: 10px;
}
.cities-img{
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
   
    transition: transform 0.3s ease-out;
}
.citiesCardImgWrapper:hover .cities-img {
  transform: scale(1.05); /* Slight zoom effect */
  border-radius: 10px;
}
.cities-name{
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #232426;
}
.cities-name span{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #232426;
}

@media screen and (max-width:768px) {
    .stores-cities-container{
        padding: 0 16px;
    }
    .cities-cards-container{
        gap:20px 16px;

}
    .cities-cards-details{
    width: 47.5%;
}
.cities-card {
    cursor:pointer;
    display: block;
    width: 100%; 
  }
  .stores-cities-title{
    font-weight: 800;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #232426;
    margin-bottom: 20px;
  }
  .citiesCardImgWrapper{
    width: 100%;
    height: auto;
    aspect-ratio: 224 / 210;
     margin-bottom: 10px;
    display: block;
  }
    .cities-img{
        width: 100%;
        height: 100%;
    /* width: 100%;
    height: auto;
    aspect-ratio: 224 / 210; */
   
}
.cities-name{
    font-size: 16px;
    line-height: 24px;
    color: #232426;

}
.cities-name span{
   font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #232426;
}
}