/* ==============================================
   SHARED CONTENT STYLES (PAGES + SECTIONS)
   ============================================== */

.content-section {
  padding: 5rem 0;
  background: #fafafa;
}

.content-section--white {
  background: #ffffff;
}

.content-header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 31, 77, 0.06);
  border: 1px solid rgba(0, 31, 77, 0.10);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.chip i {
  color: var(--color-secondary);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.content-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.kpi-card {
  background: white;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 31, 77, 0.08);
}

.kpi-number {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1;
}

.kpi-label {
  margin-top: 0.5rem;
  color: #667085;
  font-weight: 700;
}

.table-modern {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(0, 31, 77, 0.08);
}

.table-modern th,
.table-modern td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(0, 31, 77, 0.08);
  text-align: left;
}

.table-modern th {
  background: rgba(0, 31, 77, 0.04);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.9rem;
}

.table-modern td {
  color: #4a4a4a;
}

.table-modern tr:last-child td {
  border-bottom: none;
}

.leaflet-map {
  width: 100%;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 31, 77, 0.10);
  box-shadow: 0 12px 30px rgba(0, 31, 77, 0.08);
}

@media (max-width: 768px) {
  .content-section {
    padding: 4rem 0;
  }

  .leaflet-map {
    height: 300px;
  }
}

