/* LLaMa Letters — Honest Record supplement.
   Extends horses_to_watch_honest_record.css with the Racecard
   column + LLaMa's sage accent. Everything else (hero, stats,
   medal chips, cell tints, pager, empty state) is inherited. */

.honest-record--llama {
  --hr-sage:      #7a9575;
  --hr-sage-deep: #4a6b46;
  --hr-sage-lite: rgba(140, 175, 138, 0.14);

  /* Wider max-width — 9 columns (Date + Racecard + Race 1..7)
     needs more room than HTW's 6-column table. */
  max-width: 1440px;
}

.honest-record--llama .honest-record__eyebrow { color: var(--hr-sage-deep); }
.honest-record--llama .honest-record__title em { color: var(--hr-sage-deep); }

.honest-record--llama .honest-record__table {
  min-width: 1200px;
}

.honest-record__col-course { width: 140px; }

.honest-record__course-cell {
  vertical-align: top;
}

/* Sage-tinted italic serif — matches LLaMa's brand tint on the
   letters immersive pages. */
.honest-record__course {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 900;
  color: var(--hr-sage-deep);
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.honest-record__course-tag {
  display: block;
  margin-top: 4px;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hr-ink-40);
}

.honest-record__horse--empty {
  color: var(--hr-ink-40);
  border-bottom: none;
  font-weight: 400;
  font-style: italic;
}

/* Pending flourish uses sage instead of gold so the LLaMa page's
   accent stays consistent even for the "waiting" states. */
.honest-record--llama .honest-record__pending {
  color: var(--hr-sage-deep);
}

@media (max-width: 900px) {
  .honest-record__course {
    font-size: 13px;
  }
}

/* Race-detail switch link on the LLaMa Letters hero. Sits under
   the totals grid so the meeting-grid page hands the reader a
   deep-link into the per-race breakdown at /honest-record-detail/. */
.honest-record__view-switch {
  margin: 20px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13.5px;
  color: var(--hr-ink-70);
  text-align: center;
}
.honest-record__view-switch a {
  color: var(--hr-sage-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--hr-sage-deep);
  transition: color .15s, border-color .15s;
}
.honest-record__view-switch a:hover {
  color: var(--hr-ink);
  border-bottom-color: var(--hr-ink);
}
