/* ══════════════════════════════════════════════════════════════════
   /css/transits.css — Free Transit Chart page (/transits/)
   Layers on top of asteroids.css (wheel wrap, group titles) +
   solar-return.css. Brand v2 palette.
   ══════════════════════════════════════════════════════════════════ */

.trn-page .trn-top3-head { margin-top: 3rem; }

/* ── "The Moment" toggle + picker ── */
.trn-page .trn-moment-toggle {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin: 0.4rem 0 0.6rem;
}
.trn-page .trn-moment-opt {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: #2D1F38;
  cursor: pointer;
}
.trn-page .trn-moment-opt input { accent-color: #6B1F2C; width: 17px; height: 17px; }
.trn-page .trn-moment-fields {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
@media (max-width: 640px) {
  .trn-page .trn-moment-fields { grid-template-columns: 1fr 1fr; }
  .trn-page .trn-moment-fields input[type="date"] { grid-column: 1 / -1; }
}

/* ── Daily-cast pips (3 free casts) ── */
.trn-page .trn-pips-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.1rem auto 0;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: #4A3B2F;
}
.trn-page .trn-pip {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1.5px solid #8E6E3A;
  background: #FBF3DC;
  display: inline-block;
}
.trn-page .trn-pip.is-used { background: #6B1F2C; border-color: #6B1F2C; }
.trn-page .trn-pips-label { margin-left: 0.5rem; }
.trn-page .trn-pips-label a { color: #6B1F2C; font-weight: 700; }

/* ── Top-3 transit cards ── */
.trn-page .trn-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto 0.9rem;
  background: #FAF1E1;
  border: 1px solid rgba(184, 145, 80, 0.55);
  border-left: 3px solid #6B1F2C;
  border-radius: 6px;
  padding: 1.05rem 1.2rem;
}
.trn-page .trn-card-rank {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid #8E6E3A;
  background: #FBF3DC;
  color: #6B1F2C;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  font-size: 1.7rem;
  margin-top: 0.15rem;
}
.trn-page .trn-card-main { flex: 1 1 auto; min-width: 0; }
.trn-page .trn-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
}
.trn-page .trn-card-title {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #2D1F38;
}
.trn-page .trn-card-orb {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: #6B1F2C;
}
.trn-page .trn-card-orb em {
  font-family: 'EB Garamond', Georgia, serif;
  color: #8E6E3A;
}
.trn-page .trn-card-line {
  /* Matches the page's lore paragraphs (.ast-lore-text p) exactly */
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.62;
  color: #3F3428;
  margin: 0.45rem 0 0;
}

/* ── "N more transits" teaser ── */
.trn-page .trn-more-teaser {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.12rem;
  color: #4A3B2F;
  text-align: center;
  max-width: 56ch;
  margin: 1.4rem auto 0;
}

/* ── Whole-sky grid ── */
.trn-page .trn-sky-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 0.8rem;
  max-width: 820px;
  margin: 1.2rem auto 0;
}
.trn-page .trn-sky-cell {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #FAF1E1;
  border: 1px solid rgba(184, 145, 80, 0.45);
  border-radius: 5px;
  padding: 0.8rem 1rem;
}
.trn-page .trn-sky-glyph {
  font-family: 'Segoe UI Symbol', 'Noto Sans Symbols', 'Apple Symbols', serif;
  font-size: 1.9rem;
  color: #0f3b3b;
}
.trn-page .trn-sky-name {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #2D1F38;
}
.trn-page .trn-sky-name .ast-rx { font-style: normal; color: #8E6E3A; }
.trn-page .trn-sky-pos {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: #6B1F2C;
  margin-left: auto;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .trn-page .trn-card { padding: 0.9rem; gap: 0.8rem; }
  .trn-page .trn-card-rank { width: 46px; height: 46px; font-size: 1.35rem; }
  .trn-page .trn-card-title { font-size: 1.18rem; }
  .trn-page .trn-sky-grid { grid-template-columns: 1fr; }
  .trn-page .trn-sky-pos { white-space: normal; }
}
