.real-state {
  background: var(--gray-100);
}
.real-state.with-padding {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .real-state.with-padding {
    padding: 96px 0;
  }
}
.real-state .properties-list .property {
  display: flex;
  flex-direction: column;
  background: var(--white-color);
  height: 100%;
}
.real-state .properties-list .property .image {
  position: relative;
}
.real-state .properties-list .property .image img {
  width: 100%;
}
.real-state .properties-list .property .image .features {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gray-700);
  color: var(--white-color);
  display: flex;
  justify-content: end;
  transition: var(--default-transition);
  font-size: 14px;
}
.real-state .properties-list .property .image .features::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-500);
  z-index: 0;
  transition: var(--default-transition);
  transform: scaleY(0);
  transform-origin: bottom center;
}
.real-state .properties-list .property .image .features .feature {
  padding: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 4px;
  z-index: 10;
}
.real-state .properties-list .property .image .features .feature:not(:first-child) {
  border-left: 1px solid var(--gray-300);
}
.real-state .properties-list .property .image .features .feature .fa-solid {
  font-size: 18px;
}
.real-state .properties-list .property .image .featured {
  top: 24px;
  left: 24px;
  background-color: var(--primary-500);
  color: var(--white-color);
  padding: 3px 7px;
  font-size: 10px;
  text-transform: uppercase;
  position: absolute;
}
.real-state .properties-list .property .image .vip-credit {
  top: 24px;
  right: 24px;
  background-color: #0057ff;
  color: var(--white-color);
  padding: 3px 7px;
  font-size: 10px;
  text-transform: uppercase;
  position: absolute;
}
.real-state .properties-list .property .image:hover .features::before {
  transition: var(--default-transition);
  transform: scaleY(1);
}
.real-state .properties-list .property .content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
.real-state .properties-list .property .content .text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.real-state .properties-list .property .content .text .name a,
.real-state .properties-list .property .content .text .name a:visited {
  text-decoration: none;
  color: var(--default-fg-color);
}
.real-state .properties-list .property .content .text .name a h5,
.real-state .properties-list .property .content .text .name a:visited h5 {
  font-size: 18px;
  line-height: 140%;
  margin: 0;
}
.real-state .properties-list .property .content .text .name a:hover h5,
.real-state .properties-list .property .content .text .name a:visited:hover h5 {
  color: var(--primary-500);
}
.real-state .properties-list .property .content .text .address {
  font-size: 14px;
  color: var(--dark-300);
}
.real-state .properties-list .property .content .price {
  color: var(--primary-500);
  font-weight: 900;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.real-state .properties-list .property .content .price .just-price {
  display: flex;
  flex-direction: column;
}
.real-state .properties-list .property .content .price .just-price .old {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 400;
  text-decoration: line-through;
}
.real-state .properties-list .property .content .price a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.real-state .toolbar:has(.sc-menu) {
  padding: 16px 0;
}
.real-state .pager {
  padding-top: 48px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.real-state .pager > div a,
.real-state .pager > div a:hover {
  background-color: var(--white-color);
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--font-color);
  transition: var(--default-transition);
}
.real-state .pager > div a:hover,
.real-state .pager > div a:hover:hover {
  background-color: var(--light-500);
  transition: var(--default-transition);
}
.real-state .pager > div.disabled a,
.real-state .pager > div.disabled a:visited {
  color: var(--light-500);
}
.real-state .pager > div.active a,
.real-state .pager > div.active a:visited {
  background-color: var(--primary-500);
  color: var(--white-color);
  pointer-events: none;
  cursor: default;
}
