/* Herald · Sky Tonight — app tweaks. Base in glass-core.css. */

/* Sky is a small fixed set of status cards (pager caps at 4), so it
   can never overflow — center the stack so it floats in the middle of
   the see-through display instead of clumping at the top with a big
   empty void below. Scoped to #sky so list screens are unaffected. */
#sky .content { justify-content: center; }

.sy-note {
  flex-shrink: 0;
  margin-bottom: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--r-md);
  background: var(--iri), var(--frost-1);
  border: 1px solid var(--frost-border);
}
.sy-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--iri), var(--frost-1);
  border: 1px solid var(--frost-border);
}
.sy-card.hero {
  background: var(--iri), var(--frost-2);
  border-color: var(--frost-border);
}
.sy-ic {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: #bcd4ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sy-card.hero .sy-ic { color: #ffe39a; }
.sy-ic svg { width: 26px; height: 26px; }
.sy-body { min-width: 0; flex: 1; }
.sy-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
}
.sy-sub {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-secondary);
}
