/* Property list component (key/value rows) */

.property-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.property-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-primary);
}

.property-item:last-child {
  border-bottom: none;
}

.property-item-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.property-item-toggle.property-item {
  border-bottom: 1px solid var(--border-primary);
}

.property-item-toggle.property-item:last-child {
  border-bottom: none;
}

.property-group {
  display: block;
  width: 100%;
}

.property-group:last-child .property-item {
  border-bottom: none;
}

.property-label {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.property-value {
  color: var(--text-primary);
  font-weight: 600;
}

.property-item-toggle .property-value::after {
  content: "›";
  color: inherit;
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.2s ease;
}

.property-item-toggle[aria-expanded="true"] .property-value::after {
  transform: rotate(90deg);
}

