
/* ── Municipality Column Collapse ─────────────────── */
.muni-column-section {
  margin: 2rem 0;
}
.muni-column-collapse {
  position: relative;
  max-height: 7.5em;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.muni-column-collapse::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.muni-column-collapse.expanded {
  max-height: none;
}
.muni-column-collapse.expanded::after {
  opacity: 0;
}
.muni-column-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #334155;
}
.muni-column-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.5rem 0 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #ecfdf5;
}
.muni-column-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.4rem;
}
.muni-column-body p {
  margin-bottom: 0.85rem;
}
.muni-column-body ul, .muni-column-body ol {
  margin: 0.5rem 0 0.85rem 1.5rem;
  line-height: 1.8;
}
.muni-column-body a {
  color: #059669;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.muni-column-toggle {
  display: block;
  margin: 0.75rem auto 0;
  padding: 0.6rem 2rem;
  background: #f0fdf4;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  color: #059669;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}
.muni-column-toggle:hover {
  background: #dcfce7;
}

/* ── Town Data Section (schools, land price) ──────── */
.town-data-section {
  margin-bottom: 1.5rem;
}
