.xionia-alerts {
  box-sizing: border-box;
  max-width: 1180px;
  width: 100%;
  margin: 22px auto;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid #b3c9d9;
  border-radius: 16px;
  background: #f2f7fa;
  color: #19384e;
  text-align: left;
  font:
    15px/1.6 system-ui,
    sans-serif;
}
.xionia-alerts h2 {
  margin-top: 0;
  font-size: clamp(20px, 3vw, 25px);
}
.weather-alert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 12px;
  margin: 16px 0;
}
.weather-alert-card {
  display: grid;
  gap: 7px;
  border: 1px solid #d39235;
  border-left-width: 5px;
  border-radius: 10px;
  background: #fff4e0;
  color: #523004;
  padding: 14px;
}
.weather-alert-card > span {
  font-size: 24px;
  font-weight: 700;
}
.weather-alert-card small,
.alerts-fine-print {
  font-size: 12px;
}
.xionia-alerts summary {
  cursor: pointer;
  font-weight: 650;
  padding-block: 8px;
}
.xionia-alerts a {
  color: #08597b;
  text-decoration: underline;
}
.xionia-fire-panel {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid #afc5d5;
}
body.xionia-dark .xionia-alerts {
  background: #132b40;
  color: #e7f1f7;
  border-color: #42617a;
}
body.xionia-dark .weather-alert-card {
  color: #fff0c7;
  background: #3b321c;
  border-color: #ba9149;
}
body.xionia-dark .xionia-alerts a {
  color: #8ed9ff;
}
.fire-source-links a {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 650;
}
