﻿/* -- Listings Section -- */
.listings-section {
  padding: 48px 0 80px;
}

.listings-count {
  font-size: 0.88rem;
  color: rgba(30, 18, 8, 0.50);
}

.listings-count strong { color: var(--accent); }

/* -- Compact Footer -- */
.page-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(30, 18, 8, 0.08);
  background: rgba(253, 248, 242, 0.98);
}

.page-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(30, 18, 8, 0.45);
}

.page-footer__inner a {
  color: var(--accent);
  transition: color 0.2s ease;
}

.page-footer__inner a:hover { color: var(--accent-deep); }

/* -- Responsive -- */
@media (max-width: 520px) {
  .page-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}




