/* ==========================================================================
   Fresh Makelaars – Theme 2 – Tab: Characteristics
   ========================================================================== */

#fresh-makelaars .fm2-chars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px 40px;
}

#fresh-makelaars .fm2-chars-section-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--fm2-blue);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--fm2-blue-light);
}

#fresh-makelaars .fm2-chars-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#fresh-makelaars .fm2-chars-row {
  display: flex;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--fm2-border);
  font-size: 16px;
  gap: 12px;
}

#fresh-makelaars .fm2-chars-row:last-child { border-bottom: none; }

#fresh-makelaars .fm2-chars-label {
  color: var(--fm2-text-muted);
  flex: 0 0 40%;
  min-width: 120px;
  font-weight: 500;
}

#fresh-makelaars .fm2-chars-value {
  font-weight: 600;
  color: var(--fm2-text);
  text-align: right;
  flex: 1 1 0%;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  #fresh-makelaars .fm2-chars {
    grid-template-columns: 1fr;
  }
}
