.world-station-ribbon {
  align-items: center;
}

.station-focus {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.station-focus span,
.station-meta span {
  color: var(--weather-muted);
}

.station-meta {
  min-width: 180px;
}

.world-legend-card {
  display: grid;
  gap: 12px;
}

.world-legend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  color: var(--weather-muted);
  font-size: 0.84rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

.legend-dot--clear {
  background: #ffd166;
}

.legend-dot--rain {
  background: #46b8ff;
}

.legend-dot--snow {
  background: #dcecff;
}

.legend-dot--dust {
  background: #d68b55;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.forecast-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 8px;
}

.forecast-card strong {
  font-size: 0.98rem;
}

.forecast-card span {
  color: var(--weather-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.forecast-card .forecast-temps {
  color: var(--weather-text);
  font-size: 1.08rem;
  font-weight: 600;
}

.climate-shell {
  display: grid;
  gap: 12px;
}

.climate-chart {
  width: 100%;
  min-height: 280px;
}

.climate-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.climate-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--weather-muted);
  font-size: 0.82rem;
}

.climate-legend i {
  width: 16px;
  height: 4px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

.climate-legend .bar {
  height: 10px;
  background: rgba(70, 184, 255, 0.8);
}

.climate-legend .line {
  background: #ffd166;
}

.climate-legend .band {
  background: rgba(114, 212, 255, 0.28);
}

.world-empty {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: var(--weather-muted);
  text-align: center;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .forecast-grid {
    grid-template-columns: 1fr;
  }

  .station-meta {
    min-width: 0;
  }
}
