.archive-property-wrapper {
  max-width: 1500px;
  width:100%;
  /* min-width:100%; */
  margin: 0 auto;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: #424B53;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }


   .archive-property-page-grid {
    /* grid-template-columns: 1fr 2fr; */
    display: grid;
    grid-template-columns: auto 1fr; 
    gap: 2rem;
    align-items: start;
  }
  
   /* 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: grid;
    gap: 1rem;
    /* grid-template-columns: repeat(3, 1fr); */
    /* grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(320px, 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 { 
      height: 50vh;
      max-height:700px;
      border-radius:32px;
      max-width:500px;
   }

   .property-inner-card {
    height: 50vh;
    max-height:700px;
      padding:1rem;
      display:flex;
      flex-direction: column;
      justify-content: space-between;
      border-radius:32px;
   }

   .property-info-bubble {
      min-height:40px;
      height:auto;
      width:200px;
      background: #FAF7F2;
      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;
  }
}


