.post-type-archive-property .c-section {
  padding: 20px 0;
}
.post-type-archive-property .l-posts-page-widget-area--top {
  margin-bottom: 0;
}
.property-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2%;
  row-gap: 10px;
  list-style: none;
  padding: 0;
  align-items: flex-start;
}
.property-item {
    width: 48%;
    padding: 10px;
    background-color: #F8F8F8;
}
.property-item h2 {
  font-size: 16px;
}
.property-item p {
  font-size: 12px;
}
.property-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.property-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.property-item a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.property-item a img {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.property-item a:hover img {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: .6;
}
.property-item .read-more-area {
  text-align: right;
}
.property-item .heading-title {
    color: #535044;
    font-family: "Mulish", Sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
}
.property-item .before {
    position: relative;
}
.property-item .before:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #b0ada4;
    position: absolute;
    top: 50%;
    left: -40px;
}
body.post-type-archive-property .l-contents__sidebar {
    display: none;
}
@media screen and (min-width: 480px) {
	.property-item .before:before {
    width: 50px;
    left: -60px;
  }
}
@media screen and (min-width: 768px) {
  .property-item {
    width: 48%;
  }
  .property-item h2 {
    font-size: 20px;
  }
  .property-item p {
    font-size: 14px;
  }
  .property-item .heading-title {
    font-size: 14px;
  }
}
@media screen and (min-width: 991px) {
  .property-item {
    width: 32%;
  }
}

.property-search-form {
  display: block;
  background-color: #f4f4f4;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
}
.property-search-form .form-row {
  margin-bottom: 16px;
}
.property-search-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}
.property-search-form select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.property-search-form button {
  width: 100%;
  padding: 10px 24px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.property-search-form button:hover {
  background-color: #555;
}
@media screen and (min-width: 768px) {
  .property-search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
  }

  .property-search-form .form-row {
    flex: 1 1 200px;
    margin-bottom: 0;
  }

  .property-search-form .submit-row {
    flex: 0 0 auto;
  }

  .property-search-form button {
    width: auto;
  }
}
.post-type-archive-property .nav-links {
	margin: 30px 0 0;
	text-align: center;
}

/* single */
.property-single {
  padding: 40px 0;
    display: grid;
  grid-template-areas:
    "thumb"
    "content";
  position: relative;
}
.single-property .property-title {
  font-size: 28px;
  margin-bottom: 16px;
  padding: 10px 20px;
  background: #eee;
}
.single-property .property-thumbnail {
  grid-area: thumb;
  position: relative;
  width: 100%;
}
.single-property .property-thumbnail img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.single-property .property-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 16px;
}
.single-property .property-meta li {
  margin-bottom: 8px;
}
.single-property .property-content {
  line-height: 1.8;
  margin-bottom: 40px;
}
.single-property .property-back a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s;
}
.single-property .property-back a:hover {
  background-color: #f2f2f2;
}
.single-property .property-content-area {
  grid-area: content;
  margin-top: -60px;
  z-index: 1;
  background: rgba(255, 255, 255, 1);
  margin-left: 30px;
  width: 100%;
}
@media screen and (min-width: 480px) {
}
@media screen and (min-width: 768px) {
  .single-property .property-thumbnail {
    width: 40%;
    min-width: 400px;
  }
}
@media screen and (min-width: 991px) {
}
