/*
Theme Name: Syx Doan BDS
Theme URI: https://bdsdanang.online
Author: Syx Doan
Author URI: https://bdsdanang.online
Description: Full-featured real estate WordPress theme for bdsdanang.online - Bất động sản Đà Nẵng với quản lý property tùy chỉnh, tìm kiếm nâng cao và layout responsive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: realestatepro
Tags: real-estate, responsive, custom-post-type, property, grid, da-nang, vietnam
*/

:root {
  --re-primary: #c62828;
  --re-primary-dark: #ad1f1f;
  --re-secondary: #ff7043;
  --re-dark: #291010;
  --re-light: #fff6f6;
  --re-border: #f7caca;
  --re-success: #2ab56f;
  --re-danger: #e53935;
  --re-radius: 12px;
  --re-shadow: 0 15px 35px rgba(198, 40, 40, 0.12);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--re-dark);
  background-color: var(--re-light);
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(41, 16, 16, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 60;
}

@media (max-width: 1024px) {
  .nav-overlay {
    right: clamp(260px, 70vw, 520px);
  }
}

.nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

a {
  color: var(--re-primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:focus,
a:hover {
  color: var(--re-primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1280px, 92vw);
  margin-inline: auto;
}

.site-header {
  background-color: #fff;
  border-bottom: 1px solid var(--re-border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(15, 16, 30, 0.04);
}

.header-top {
  background: #fff0f0;
  border-bottom: 1px solid var(--re-border);
  font-size: 0.85rem;
  color: #b83232;
}

.header-top-inner {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.header-top-link {
  color: var(--re-primary);
  font-weight: 500;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.site-branding .site-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--re-dark);
}

.site-branding .site-logo {
  display: inline-flex;
  align-items: center;
}

.site-branding .site-logo img,
.site-branding .custom-logo-link img {
  height: 100px;
  max-height: 100px;
  width: auto;
  display: block;
}

.primary-navigation {
  flex: 1;
}

.primary-navigation .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.primary-navigation .menu a {
  font-weight: 500;
  color: var(--re-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: var(--re-primary);
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.35);
  gap: 5px;
  padding: 12px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--re-primary);
  outline-offset: 3px;
}

.nav-toggle:hover {
  background: var(--re-primary-dark);
  box-shadow: 0 6px 16px rgba(198, 40, 40, 0.45);
  transform: translateY(-1px);
}

.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }
}

.site-main {
  padding-block: clamp(2rem, 6vw, 4rem);
}

/* Hero Slider styles moved to main.css for better organization */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  border-radius: var(--re-radius);
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background-color: var(--re-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(198, 40, 40, 0.35);
}

.btn-primary:visited {
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--re-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(198, 40, 40, 0.35);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(198, 40, 40, 0.35);
  color: var(--re-primary);
}

.btn-outline:hover {
  border-color: var(--re-primary);
  color: var(--re-primary-dark);
}

.btn-outline:visited {
  color: var(--re-primary);
}

.btn-text {
  background: transparent;
  border: none;
  color: var(--re-primary);
  padding: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
}

.btn-text:hover span {
  transform: translateX(2px);
}

.btn-text span {
  transition: transform 0.2s ease;
}

.hero-slide .btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.hero-slide .btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.search-panel {
  background: #fff;
  border-radius: var(--re-radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--re-shadow);
}

.search-panel form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.search-panel label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--re-primary-dark);
  display: block;
  margin-bottom: 0.35rem;
}

.search-panel input,
.search-panel select {
  width: 100%;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-border);
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  background-color: var(--re-light);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.property-categories {
  margin: 3rem auto;
}

.property-category-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.property-category-block {
  background: #fff;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-border);
  box-shadow: var(--re-shadow);
  padding: 1.5rem;
}

.property-category-block__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.property-category-block__header h3 {
  margin: 0.2rem 0 0;
}

.property-list--compact {
  gap: 0.75rem;
}

.footer-quick-info {
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.quick-card {
  background: #fff;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-border);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--re-shadow);
  text-decoration: none;
  color: var(--re-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(41, 16, 16, 0.15);
}

.quick-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--re-text-muted);
}

.quick-card__value {
  font-size: 1.2rem;
  color: var(--re-primary);
}

.quick-card small {
  margin: 0;
  color: var(--re-text-muted);
}

.quick-card--muted {
  background: var(--re-light);
  border-style: solid;
}

.property-card-wrapper {
  height: 100%;
}

.property-card-wrapper.is-hidden {
  display: none;
}

.property-spec-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0.75rem;
}

.property-spec-grid--primary {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.property-spec-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  margin-top: 0.4rem;
}

.property-spec-card {
  background: #fff;
  border: 1px solid var(--re-border);
  border-radius: 18px;
  padding: 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--re-shadow);
}

.property-spec-label {
  font-size: 0.85rem;
  color: var(--re-text-muted);
}

.property-spec-value {
  font-size: 1.1rem;
}

.property-spec-address {
  width: 100%;
  margin-top: 0.75rem;
}

.site-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border);
  padding: 1.5rem;
  box-shadow: var(--re-shadow);
  margin-top: 20px;
}

.sidebar-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.sidebar-card__header h3 {
  margin: 0;
  font-size: 1rem;
}

.sidebar-link {
  font-size: 0.85rem;
  color: var(--re-primary);
  font-weight: 600;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-list li a {
  font-weight: 600;
  color: var(--re-dark);
}

.sidebar-list__meta {
  display: block;
  font-size: 0.8rem;
  color: var(--re-text-muted);
}

.sidebar-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-tags li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--re-light);
  border-radius: 16px;
  padding: 0.65rem 0.85rem;
}

.sidebar-tags li a {
  font-weight: 600;
  color: var(--re-dark);
}

.sidebar-tags__count {
  font-size: 0.85rem;
  color: var(--re-primary);
  font-weight: 600;
}

.list-more {
  margin-top: 1.5rem;
  text-align: center;
}

.property-card {
  background: #fff;
  border-radius: var(--re-radius);
  overflow: hidden;
  box-shadow: var(--re-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.property-card-body {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
}

.property-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--re-primary);
  margin: 0;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #5a6473;
}

.property-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.property-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--re-text-muted);
}

.pagination {
  margin-top: 2rem;
}

.pagination__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pagination__item .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.65rem 1.05rem;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-border);
  color: var(--re-dark);
  font-weight: 500;
}

.pagination__item.is-active .page-numbers,
.pagination__item .page-numbers.current {
  background-color: var(--re-primary);
  color: #fff;
  border-color: var(--re-primary);
  box-shadow: 0 6px 12px rgba(151, 14, 14, 0.2);
}

.site-footer {
  background-color: #fff5f5;
  color: #3a1a1a;
  padding: clamp(2rem, 6vw, 3.5rem) 0;
  border-top: 1px solid var(--re-border);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.footer-inner {
  flex-wrap: wrap;
}

.footer-brand h3 {
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  color: var(--re-text-muted);
}

.footer-brand .site-logo {
  display: inline-flex;
  align-items: center;
}

.footer-brand .site-logo img {
  height: 100px;
  max-height: 100px;
  width: auto;
}

.footer-tagline {
  margin: 0.5rem 0 0;
  color: var(--re-text-muted);
  font-size: 0.9rem;
}

.footer-navigation {
  flex: 1 1 auto;
  text-align: right;
}

.site-info {
  margin: 0;
  color: var(--re-text-muted);
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .header-top-inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-main {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "cta cta";
    align-items: center;
    gap: 0.75rem 1rem;
  }

  .site-branding {
    grid-area: logo;
  }

  .header-actions {
    display: contents;
  }

  .header-actions .nav-toggle {
    grid-area: toggle;
    justify-self: end;
  }

  .header-actions .btn {
    grid-area: cta;
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: clamp(260px, 70vw, 520px);
    border-top: none;
    border-right: 1px solid var(--re-border);
    padding: 4.75rem 2rem 2rem;
    background: #fff;
    box-shadow: 35px 0 60px rgba(41, 16, 16, 0.25);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: block;
    z-index: 70;
    overflow-y: auto;
  }

  .primary-navigation.is-open {
    transform: translateX(0);
  }

  .primary-navigation .menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .primary-navigation .menu a {
    font-size: 1.05rem;
  }

  .primary-navigation .menu li + li {
    border-top: 1px solid rgba(41, 16, 16, 0.08);
    padding-top: 0.65rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-panel form {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .property-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .footer-quick-info {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .quick-card {
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-navigation {
    text-align: center;
  }

  .footer-brand .site-logo,
  .footer-brand .site-logo img {
    margin: 0 auto;
  }
}

.property-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.news-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border);
  box-shadow: var(--re-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(15, 25, 60, 0.12);
}

.news-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.05);
}

.news-card__flag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--re-primary);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.news-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 auto;
}

.news-card__meta {
  display: flex;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--re-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.news-card__title {
  margin: 0;
  font-size: 1.2rem;
}

.news-card__title a {
  color: var(--re-dark);
}

.news-card__excerpt {
  color: var(--re-text-muted);
  margin: 0;
}

.news-card__actions {
  margin-top: auto;
}

.single-article {
  background: #fff;
  border-radius: 32px;
  border: 1px solid var(--re-border);
  box-shadow: var(--re-shadow);
  overflow: hidden;
}

.single-article__hero {
  position: relative;
  height: clamp(260px, 50vw, 420px);
  overflow: hidden;
}

.single-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-article__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.single-article__body {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.single-article__header h1 {
  margin-bottom: 0.5rem;
}

.entry-meta--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--re-text-muted);
  font-weight: 500;
}

.single-article__content p {
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.single-article__content img {
  border-radius: 24px;
  margin: 1.5rem 0;
}

.single-article__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--re-border);
  padding-top: 1.25rem;
}

.single-article__tags a {
  display: inline-flex;
  background: rgba(220, 53, 69, 0.08);
  color: var(--re-primary);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-right: 0.35rem;
  font-size: 0.9rem;
}

.single-article__share {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-weight: 600;
}

.modern-comments {
  margin-top: 2.5rem;
  background: #fff;
  border-radius: 32px;
  border: 1px solid var(--re-border);
  box-shadow: var(--re-shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.comments-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comments-title {
  margin: 0;
}

.comments-count {
  background: rgba(220, 53, 69, 0.08);
  color: var(--re-primary);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-weight: 700;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-card {
  background: var(--re-light);
  border-radius: 24px;
  border: 1px solid var(--re-border);
  padding: 1.25rem;
}

.comment-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comment-card__top {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.comment-card__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.comment-card__author {
  margin: 0;
}

.comment-card__content {
  color: var(--re-dark);
  line-height: 1.65;
}

.comment-card__footer {
  display: flex;
  justify-content: flex-end;
}

.modern-comment-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.modern-comment-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.modern-comment-form .form-field--wide {
  grid-column: 1 / -1;
}

.modern-comment-form label {
  font-weight: 600;
}

.modern-comment-form input,
.modern-comment-form textarea {
  border-radius: var(--re-radius);
  border: 1px solid var(--re-border);
  padding: 0.75rem;
  background: var(--re-light);
  font-size: 1rem;
}

.modern-comment-form textarea {
  resize: vertical;
}

.modern-comment-form .form-submit {
  margin-top: 0.5rem;
}

.comment-awaiting-moderation {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 16px;
  padding: 0.85rem;
  font-size: 0.9rem;
  color: #a05f00;
}
.property-list-item {
  display: grid;
  grid-template-columns: minmax(110px, 180px) minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.9rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--re-border);
  box-shadow: var(--re-shadow);
}

.property-list-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: block;
}

.property-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-chip-new {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #ff7043;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.property-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--re-text-muted);
}

.property-list-date {
  font-weight: 500;
}

.property-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.85rem;
  margin: 0.45rem 0;
  color: var(--re-text-muted);
}

.property-list-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-light {
  background: rgba(198, 40, 40, 0.12);
  color: var(--re-primary);
}

.empty-state {
  text-align: center;
  color: var(--re-text-muted);
  padding: 1rem 0;
}

@media (max-width: 640px) {
  .property-list-item {
    grid-template-columns: 1fr;
  }
}
