.archive-property-wrapper {
  max-width: 1500px;
  width:90%;
  /* width:100vw; */

  font-size: 15px;
  color: #36454F;
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  margin-left:1rem;
  margin-right:1rem;
  }


   .archive-property-page-grid {
    /* grid-template-columns: 1fr 2fr; */
    display: grid;
    grid-template-columns: auto 1fr; 
    gap: 2rem;
    align-items: start;
    width: 100%;
  }
  
   /* left - main */
   .archive-property-main {
    /* max-width:1440px; */
    position: relative;
    /* width:100%; */
    /* display:flex;
    justify-content: center;
    flex-direction: row;
    min-width:100%; */
     /* position:relative; */
     /* background-color: #fff; */
     /* padding: 1rem; */
     /* border: 1px solid #ddd; */
   }

   /* right - sidebar */
   .archive-property-side {
    position: relative;
    /* min-width: 250px; */
    min-width:100%;
    max-width: 250px;
    height:100%;
  }
  
  .archive-property-side .widget {
    width: 100% !important;
  }


  .archive-property-list-grid {
    display: flex;
    /* gap:2rem; */
    flex-direction: column;
    /* display: grid; 
    gap: 1rem;     */
    /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */

    

    /* grid-template-columns: repeat(3, 1fr); */
    /* grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); */

    /* justify-content: center;
    max-width: 1600px;
    width: 100%; */
        /* display:flex;
    justify-items: center;
    flex-direction: row;
    min-width:100%; */
    /* max-width: 100%; */
  }
  
   



   



   /* cards */
   .property-outer-card { 
    border-bottom: 1px solid #CCD0D4;
    
      /* height: 50vh; */
    
      /* max-height:700px; */
      /* border-radius:32px; */
      /* max-width:500px; */
   }

   .job-card-1 {
    display: block;
    text-decoration: none;
    transition: all 0.1s;
   }
   .job-card-1:hover{
    background-color: #f8f8f8;
   }

   .property-inner-card {
    /* height: 50vh; */
    /* max-height:700px; */

      padding:3rem;
      display:flex;
      flex-direction: column;
      justify-content: space-between;
      border-radius:32px;
   }

   .inner-card-header { 
    display:flex;
    flex-direction:row;
    justify-content:space-between;
   }

   .property-info-bubble {
      min-height:40px;
      height:auto;
      width:200px;
      background: #F5F5F5;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      padding-top: 5px;
      padding-bottom:5px;
      border-radius:100px;
      display:flex;
      justify-content: center;
      align-items: center;
      font-size: 12px;
      text-transform: uppercase;
      /* white-space: nowrap; */
      text-overflow: ellipsis;
    }

      



/* iPads / Mid-sized tablets */
@media (min-width: 769px) and (max-width: 1024px) { 
  .archive-property-page-grid {
    /* grid-template-columns: repeat(1, 2fr); */
        grid-template-columns: 1fr;
  }
  .archive-property-list-grid {
   /* grid-template-columns: repeat(1, 1fr); */
  }
}

/* mobile */
/* @media screen and (max-width: 768px) {  */
@media (min-width: 481px) and (max-width: 768px) {
  .archive-property-page-grid, .archive-property-list-grid {
    grid-template-columns: 1fr;
  }

}


/* small mobile */
@media (max-width: 480px) {
  .archive-property-page-grid, .archive-property-list-grid {
    grid-template-columns: 1fr;
  }
  .property-outer-card {
    max-width: 400px;
  }
}


