/*
 * Bloc Météo — styles autonomes.
 * Volontairement scopé sur .meteo-widget pour ne pas leak sur le reste
 * du tenant (les blocs cohabitent dans la home).
 */
.meteo-widget {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 6px 20px -6px rgba(15, 23, 42, 0.25);
  max-width: 360px;
}

.meteo-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
.meteo-city {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.meteo-block-id {
  font-size: 0.7rem;
  opacity: 0.6;
}

.meteo-current {
  text-align: center;
  margin: 0.5rem 0 1rem;
}
.meteo-temp {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}
.meteo-unit {
  font-size: 1.5rem;
  opacity: 0.8;
}
.meteo-wind {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.meteo-daily {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.75rem;
}
.meteo-day {
  text-align: center;
  font-size: 0.85rem;
}
.meteo-day-date {
  opacity: 0.75;
  margin-bottom: 0.25rem;
}
.meteo-day-temps {
  font-weight: 500;
}
.meteo-tmin { opacity: 0.7; margin-right: 0.5rem; }
.meteo-tmax { font-weight: 600; }

.meteo-error {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
}
