/* ============================================
   18. MODAL SECTION TITLES
   ============================================ */
.modal-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}


/* ============================================
   19. BACK LINK
   ============================================ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.15s ease;
}

.back-link:hover {
  color: var(--gray-900);
}


/* ============================================
   20. PROJECT HEADER
   ============================================ */
.project-header {
  padding: 28px 32px;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.project-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.project-header-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}


/* ============================================
   21. PROPERTIES LIST
   ============================================ */
.properties-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.property-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.property-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.property-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.property-row-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.property-rank {
  width: 40px;
  height: 40px;
  background-color: var(--gray-800);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.property-row-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.property-row-details {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.property-row-detail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.property-row-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.property-row-price-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: right;
}

.property-row-price-monthly {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: right;
}

.property-row-stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.125rem;
}

.star-filled {
  color: var(--star-yellow);
}

.star-empty {
  color: var(--gray-300);
}

.property-row-match {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
}


/* ============================================
   22. COLLAB ROW (modal)
   ============================================ */
.collab-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.collab-row:last-child {
  border-bottom: none;
}


/* ============================================
   23. PROPERTY HEADER
   ============================================ */
.property-header {
  padding: 28px 32px;
}

.property-header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

