/* The Rua — widget meteorológico (estilo preto/branco/amarelo, sem ícones de clima). */

.therua-weather {
  margin-top: 34px;
  border: 2px solid var(--border, #686862);
  background: var(--surface-2, #101010);
  color: var(--text, #f7f5ef);
}

.therua-weather__inner {
  padding: clamp(20px, 3vw, 30px);
}

.therua-weather__headline {
  margin: 0 0 14px;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.therua-weather__headline.is-cancelled {
  color: var(--accent, #ffd400);
}

.therua-weather__pill {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 11px;
  border: 1px solid var(--accent, #ffd400);
  color: var(--accent, #ffd400);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.therua-weather__pill.is-danger {
  background: var(--accent, #ffd400);
  color: var(--ink, #0a0a0a);
}

.therua-weather__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0 0 12px;
  font-size: 0.98rem;
  color: var(--muted, #c7c4bc);
}

.therua-weather__metrics strong {
  color: var(--text, #f7f5ef);
}

.therua-weather__meta {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted, #c7c4bc);
}

.therua-weather__sources {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border, #686862);
  font-size: 0.86rem;
  color: var(--muted, #c7c4bc);
}

.therua-weather__sources li {
  margin: 2px 0;
}

.therua-weather__unavailable {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted, #c7c4bc);
}