.section-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-header);

  a {
    text-decoration: none;
  }

  .desc {
    color: var(--color-grey);

  }
}


.property-swiper {
  width: 100%;
  overflow: hidden;
  height: auto;
  padding-bottom: 50px;

  .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
  }
}

/* Featured Property Card */
.property-card {
  padding: 10px;
  display: block;
  color: black;
  font-family: var(--font-heading);
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0px 4px  11px -2px white;
  transition: 0.5s;
  &:hover{
    box-shadow: 0px 4px  11px -2px gray;
    img{
      transition: 0.6s;
      scale: 1.2;
    }
  } 
  div.img {

    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    .contextual-region,
    > div:not(.visually-hidden) {

      width: 100%;
      height: 100%;
      max-height: 344px;
    }

    img {
      width: 100%;
      height: 100%;
      object-position: center;
      object-fit: cover;
      border-radius: 8px;
    }
  }

  .content {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .property-details {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    font-size: clamp(18px, 4vw, 24px);

    h3 {
      font-size: inherit;
      margin: 0;
      text-transform: none;
    }

    .property-price {
      margin: auto;
      margin-right: 5px;
      padding: 8px 10px;
      background-color: var(--primary-color);
      color: var(--color-white);
      font-size: var(--font-size-small);
      border-radius: 20px;

    }
  }

  ul {
    width: 100%;
    display: flex;
    gap: 33px;
    flex-wrap: wrap;
    color: #9A9A9A;
    list-style: none;

    li+li {
      list-style: disc;
    }
  }
}

/* Property listing*/
.property-listing {
  padding-bottom: 30px;
  header {
    p {
      margin: 0px;
    }

    .header-section {
      padding-bottom: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      .desc {
        color: var(--color-grey);
        text-align: center;
      }


    }

    .fitlers-header {
      font-size: 20px;
      font-weight: 600;
    }
  }

  .views-exposed-form {
    padding-top: 10px;
    padding-bottom: 30px;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;

    input.form-submit {
      padding: 8px 20px;
      background-color: var(--primary-color);
      color: var(--color-white);
      font-size: var(--font-size-small);
      border-radius: 20px;
      transition: all 0.3s ease;
      outline: none;
      border: none;
    }

    input.form-submit:hover {
      background-color: var(--primary-color-hover);
    }

    .form-item {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .shs-field-container {
      display: flex;
      gap: 10px;
    }

    .shs-widget-container {
      select {
        padding: 3px 9px;
        color: white;
        background-color: var(--primary-color);
        border-radius: 20px;
        border: none;
        outline: none;
        transition: all 0.3s ease;


        option {
          color: black;
          background-color: white;
        }

        option::selection {
          background-color: var(--primary-color);
        }
      }
    }

  }

  
}
.property-card {
  padding-bottom: 10px;

  .property-address,
  .property-capacity {
    margin: 0;
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1.5;
  }

  .property-details {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 28px;
    align-items: center;

    .btn {

      padding: 2px 10px;
      min-width: unset;
      font-size: 12px;
      border-radius: 16px;
      background-color: var(--primary-color);
      transition: all 0.3s ease;

      &:hover {
        background-color: var(--primary-color-hover);
      }

      a {
        color: white;
        text-decoration: none;
      }

    }
  }

}
@media (min-width: 1050px) {
  .property-listing {
    padding-bottom: 60px;
    .views-exposed-form {
      display: grid;
      grid-template-columns: 252px 100px;
      justify-content: flex-start;
      align-items: end;
    }
  }
}