/* ==========================================
   REGION DRONECONNECT — TELEPILOTE v6.0
   Depends on tokens.css
   ========================================== */

/* ===== REGION STATS ===== */
.tp-region-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.tp-region-stat {
  display: flex;
  flex-direction: column;
}
.tp-region-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--tp-teal);
}
.tp-region-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ===== VILLES LIST ===== */
.tp-villes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tp-ville-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--tp-gray-50);
  border: 1px solid var(--tp-gray-200);
  border-radius: var(--tp-radius-full);
  font-size: .82rem;
  color: var(--tp-navy);
  font-weight: 500;
}

/* ===== CENTRE LINK ===== */
.tp-centre-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--tp-orange-bg);
  border: 1px solid var(--tp-orange);
  border-radius: var(--tp-radius-lg);
  text-decoration: none;
  color: inherit;
  margin-bottom: 32px;
  transition: var(--tp-transition);
}
.tp-centre-link:hover { box-shadow: var(--tp-shadow); }
.tp-centre-link-icon {
  width: 48px;
  height: 48px;
  background: var(--tp-orange);
  border-radius: var(--tp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.tp-centre-link strong {
  color: var(--tp-navy);
  font-size: 1rem;
  display: block;
}
.tp-centre-link span {
  color: var(--tp-orange);
  font-size: .85rem;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .tp-region-stats { gap: 16px; }
  .tp-region-stat-value { font-size: 1.2rem; }
}
