/* Release Notes Section */
#release-notes .section-inner {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

.release-overview {
  margin-bottom: 1.5rem;
}

.release-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.release-card {
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.02);
}

.release-card-title {
  margin: 0 0 0.25rem;
}

.release-card-tagline {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.release-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.release-list-sub {
  list-style-type: circle;
  margin-left: 0.75rem;
}

.release-next {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
}

.release-next-title {
  margin-top: 0;
}

.release-footnote {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Simple responsive enhancement */
@media (min-width: 800px) {
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Macro table */
.release-macro {
  margin: 2rem 0 2.5rem;
}

.release-macro-title {
  margin-bottom: 0.25rem;
}

.release-macro-intro {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.release-macro-scroll {
  width: 100%;
  overflow-x: auto;
}

.release-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.release-table th,
.release-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.release-table th {
  font-weight: 600;
  font-size: 0.9rem;
}

.release-macro-footnote {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Micro meta line inside each card */
.release-meta {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.release-meta-item {
  display: inline-block;
}

.release-meta-separator {
  margin: 0 0.35rem;
}

/* Release Version Block */
.release-version-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
}

.release-version-item {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Slight visual enhancement for current release */
.current-release {
  border-left: 4px solid #F2C078; /* gold to match the completed sprints color code */
}

/* Slight visual enhancement for next-release card */
.upcoming-release {
  border-left: 4px solid #c5c2b9; /* grey to match the upcoming sprints color code */
}



/* Fine print / explanatory note */
.upcoming-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .release-version-block {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Horizontal Sprint Timeline */
.sprint-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 2.5rem;
  padding: 0 0.75rem;
}

.sprint-timeline-track {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.sprint-timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.sprint-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dbd8ce; /* your warm neutral */
  font-weight: 600;
  font-size: 0.9rem;
  color: #465E69;
  margin-bottom: 0.4rem;
}

.sprint-label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Completed sprint state */
.sprint-timeline-item.completed .sprint-number {
  background: #F2C078; /* your gold accent */
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .sprint-timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
  }
  .sprint-timeline-track {
    display: none;
  }
  .sprint-timeline-item {
    margin-bottom: 1rem;
  }
}
/* Sprint Progress Indicator */
.sprint-progress {
  margin: 2.5rem 0 2rem;
}

.sprint-progress-title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.sprint-progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.sprint-progress-fill {
  height: 100%;
  background: #F2C078; /* gold accent */
  transition: width 0.6s ease;
}

.sprint-progress-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  font-size: 0.85rem;
  margin-bottom: 0.50rem;
}

.stage {
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.06);
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.stage.completed {
  background: #F2C078;
  color: black;
}

.stage.active {
  background: #9EB5BE; /* teal from your palette */
  color: black;
  font-weight: 600;
}

.stage.upcoming {
  background: rgba(0, 0, 0, 0.08);
  opacity: 0.6;
}

/* MOBILE LAYOUT FOR PROJECT PROGRESS */
@media (max-width: 600px) {
  /* hide the horizontal bar on small screens if you haven't already */
  .sprint-progress-bar {
    display: none;
  }

  .sprint-progress-stages {
    position: relative;
    padding-left: 1.5rem;  /* space for the vertical line + dots */
    margin-top: 0.5rem;
  }

  /* vertical line */
  .sprint-progress-stages::before {
    content: "";
    position: absolute;
    left: 0.4rem;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 2px;
    background: rgba(0, 0, 0, 0.15);
  }

  /* reset rectangles and fix padding */
  .stage {
    position: relative;
    background: transparent;          /* no big rectangle on mobile */
    margin-bottom: 0.35rem;
    padding: 0.15rem 1.6 0.15rem 0.9rem; /* balanced left/right */
    font-size: 0.9rem;
  }

  /* status colors via dots + text weight */
  .stage.completed {
    font-weight: 600;
  }
  .stage.completed::before {
    background: #F2C078;              /* gold for completed */
  }

  .stage.active {
    font-weight: 600;
  }
  .stage.active::before {
    background: #9EB5BE;              /* teal for current sprint */
  }

  .stage.upcoming {
    opacity: 0.7;
  }
}

/* --- MOBILE FIXES FOR PROJECT PROGRESS --- */
@media (max-width: 480px) {

    /* Adjust spacing inside each sprint rectangle */
    .progress-item {
        padding: 0.55rem 1.6rem 0.55rem 0.8rem;  /* top | right | bottom | left */
        margin-right: 0.4rem;      /* avoid crowding when wrapping */
    }


    /* Horizontal spacing between Sprint items */
    .progress-row {
        gap: 0.45rem;               /* more natural spacing between items */
    }

    /* Ensure rows don't stick too close to each other */
    .progress-block {
        row-gap: 0.6rem;
    }
}

@media (max-width: 600px) {
    .sprint-progress-stages .dot {
        display: none !important;
    }
}

/* ================================
   Release Notes — Archived Narratives (Option 1)
   Mobile-first, no JS
================================ */

.rn-archive {
  margin-top: 12px;
  border: 1px solid rgba(77, 85, 91, 0.14);
  border-radius: 12px;
  background: rgba(219, 216, 206, 0.22); /* soft neutral */
  overflow: hidden;
}

.rn-archive__summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;

  /* subtle focus style handled below */
  outline: none;
}

.rn-archive__summary::-webkit-details-marker {
  display: none;
}

.rn-archive__label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(77, 85, 91, 0.90);
}

.rn-archive__hint {
  font-size: 12px;
  color: rgba(77, 85, 91, 0.62);
  white-space: nowrap;
}

/* caret indicator */
.rn-archive__summary::after {
  content: "▾";
  margin-left: 6px;
  color: rgba(77, 85, 91, 0.65);
  transform: translateY(-1px);
}

.rn-archive[open] .rn-archive__summary::after {
  content: "▴";
}

.rn-archive__panel {
  padding: 12px;
  border-top: 1px solid rgba(77, 85, 91, 0.10);
}

.rn-archive__intro {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(77, 85, 91, 0.78);
}

.rn-archive__content {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(77, 85, 91, 0.88);
}

/* Make archived content feel "secondary" without being hard to read */
.rn-archive__content h2,
.rn-archive__content h3 {
  margin: 10px 0 6px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.rn-archive__content p {
  margin: 0 0 10px 0;
}

.rn-archive__content ul {
  margin: 6px 0 10px 18px;
}

.rn-archive__content li {
  margin: 4px 0;
}

/* Focus/keyboard accessibility */
.rn-archive__summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(242, 192, 120, 0.35); /* your warm accent */
  border-radius: 10px;
}

/* Hover (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .rn-archive__summary:hover {
    background: rgba(219, 216, 206, 0.32);
  }
}

/* Wider screens: slightly more breathing room */
@media (min-width: 768px) {
  .rn-archive__summary {
    padding: 12px 14px;
  }
  .rn-archive__panel {
    padding: 14px;
  }
}
/* -------------------------------
   Archived narratives disclosure
   (Option 1 - mobile first)
-------------------------------- */

.rn-archive {
  margin-top: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(77, 85, 91, 0.14);
  overflow: clip;
}

.rn-archive__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  user-select: none;
}

.rn-archive__summary::-webkit-details-marker {
  display: none;
}

.rn-archive__label {
  font-family: "Arsenal SC", serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(77, 85, 91, 0.86);
}

.rn-archive__hint {
  font-size: 12px;
  color: rgba(77, 85, 91, 0.62);
  white-space: nowrap;
}

/* subtle caret */
.rn-archive__summary::after {
  content: "▾";
  margin-left: 8px;
  color: rgba(77, 85, 91, 0.55);
  transform: translateY(-1px);
}

.rn-archive[open] .rn-archive__summary::after {
  content: "▴";
}

.rn-archive__panel {
  padding: 0 14px 14px;
}

.rn-archive__intro {
  margin: 0;
  padding: 10px 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(77, 85, 91, 0.78);
  border-top: 1px solid rgba(77, 85, 91, 0.10);
}

.rn-archive__content {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(77, 85, 91, 0.88);
}

/* spacing for whatever HTML you render inside (p, ul, h3, etc.) */
.rn-archive__content p {
  margin: 0 0 10px;
}

.rn-archive__content ul {
  margin: 0 0 12px 18px;
  padding: 0;
}

.rn-archive__content li {
  margin: 0 0 6px;
}

.rn-archive__content h3,
.rn-archive__content h4 {
  margin: 14px 0 8px;
  font-family: "Arsenal SC", serif;
  letter-spacing: 0.03em;
  color: rgba(77, 85, 91, 0.92);
}

.rn-archive__loading {
  margin: 0;
  color: rgba(77, 85, 91, 0.65);
  font-style: italic;
}

/* slightly wider layout on desktop */
@media (min-width: 900px) {
  .rn-archive__summary {
    padding: 12px 16px;
  }
  .rn-archive__panel {
    padding: 0 16px 16px;
  }
}

/* ==============================
   Epic 87 (Sprint 10) Enhancements
   Additive only: totals row + dynamic bottom sections
   ============================== */

.rn-totals-row td {
  font-weight: 600;
  border-top: 2px solid rgba(0, 0, 0, 0.12);
}

.rn-totals-row .rn-totals-label {
  white-space: nowrap;
}

.sprint-progress + .sprint-progress {
  margin-top: 14px;
}


/* Timeline note - refined footnote */
.rn-timeline-note{
  margin-top: 10px;
  padding-top: 10px;
  /*border-top: 1px solid rgba(0,0,0,0.10);*/
  max-width: 920px;
}

.rn-timeline-note__label{
  display: block;
  margin-bottom: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(77, 85, 91, 0.55);
}

.rn-timeline-note__line{
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.78;
}

.rn-timeline-note__line + .rn-timeline-note__line{
  margin-top: 6px;
}

.rn-timeline-note__muted{
  opacity: 0.62;
}

/* subtle sophistication: quiet left rule, no “box” */
.rn-timeline-note--ruled{
  position: relative;
  padding-left: 14px;
}

.rn-timeline-note--ruled::before{
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 2px;
  width: 2px;
  background: rgba(0,0,0,0.14);
  border-radius: 2px;
}

@media (max-width: 520px){
  .rn-timeline-note{
    margin-top: 8px;
    padding-top: 8px;
  }
  .rn-timeline-note__line{
    font-size: 0.9rem;
  }
}

/* =========================================
   Release Notes — Progressive disclosure
   (Upcoming / Future / Progress)
   Minimal, consistent with rn-archive pattern
========================================= */

.rn-disclosure {
  margin-top: 10px;
}

.rn-disclosure-summary {
  list-style: none;
  cursor: pointer;
  user-select: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 12px 14px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(77, 85, 91, 0.14);
}

.rn-disclosure-summary::-webkit-details-marker {
  display: none;
}

.rn-disclosure-summary-left{
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.rn-disclosure-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(77, 85, 91, 0.10);
  border: 1px solid rgba(77, 85, 91, 0.14);
  color: rgba(77, 85, 91, 0.70);

  transition: transform 160ms ease;
}

/* rotate when open */
.rn-disclosure[open] .rn-disclosure-icon{
  transform: rotate(90deg);
}

.rn-disclosure-body{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(77, 85, 91, 0.10);
}

/* Nested disclosure (Future Releases) */
.rn-disclosure--nested{
  margin-top: 12px;
}

.rn-disclosure-summary--nested{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.rn-disclosure-body--nested{
  background: rgba(255, 255, 255, 0.12);
}

/* Optional hint shown when collapsed */
.rn-disclosure-hint{
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(77, 85, 91, 0.62);
}

/* Hide hint when expanded */
.rn-disclosure[open] .rn-disclosure-hint{
  display: none;
}


/* =========================================
   RN Top — reduce "too many rounded rectangles"
   Two grouped blocks:
   (1) Instructions (footnote + readguide)
   (2) Release info (version meta + latest release)
   Mobile-first; no JS
========================================= */

.rn-top{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 1.1rem;
}

/* One “quiet card” per group (2 total) */
.rn-top-group{
  border: 1px solid rgba(77, 85, 91, 0.14);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.02);
  padding: 12px 14px;
}

/* Instruction group: make content feel like one block */
.rn-top-instructions .release-footnote{
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.88;
}

/* Release info group: keep the gold accent, but only once */
.rn-top-releaseinfo{
  border-left: 4px solid #F2C078;
}

/* Remove inner “boxed” look inside the grouped container */
.rn-top-releaseinfo .release-version-block{
  background: transparent;
  padding: 0;
  margin: 0 0 10px 0;
  border-radius: 0;
}

/* Release version items: slightly tighter rhythm */
.rn-top-releaseinfo .release-version-item{
  font-size: 0.92rem;
}

/* Make latest release content feel integrated (no extra rectangle) */
.rn-top-releaseinfo .release-card.current-release{
  background: transparent;
  padding: 0;
  border-radius: 0;
  border-left: 0; /* moved to the group container */
}

/* Tighten typography spacing inside latest release */
.rn-top-releaseinfo #rnRangeHeading{
  margin: 0 0 6px 0;
  font-weight: 600; /* semi-bold */
}

.rn-top-releaseinfo #rnSubtitle{
  margin: 0;
}

/* Wider screens: two columns */
/* Desktop: stack Info above Release to avoid cramped nav map */
@media (min-width: 900px){
  .rn-top{
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

}


/* =========================================
   Instruction box: make it immediately read as guidance
========================================= */

.rn-top-instructions{
  position: relative;
  padding-top: 34px;                 /* room for the label */
  border-left: 4px solid #9EB5BE;    /* distinct from release gold */
  background: rgba(158, 181, 190, 0.10);
}

/* Label chip */
.rn-top-instructions::before{
  content: "Info";
  position: absolute;
  top: 10px;
  left: 4px;

  font-weight: 550;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(158, 181, 190, 0.22);
  border: 1px solid rgba(77, 85, 91, 0.14);
}

/* Slightly increase hierarchy inside the instruction box */
.rn-top-instructions .rn-readguide strong{
  display: inline-block;
  margin-bottom: 2px;
}

/* Optional: make the instruction text slightly more “helpful” than “content” */
.rn-top-instructions .release-footnote,
.rn-top-instructions .rn-readguide{
  opacity: 0.95;
}

/* =========================================
   Instruction box label — match Release Version meta style
   (override previous pill/absolute label)
========================================= */

.rn-top-instructions{
  padding-top: 12px;                /* remove reserved pill space */
}

/* Replace pill with a simple meta line (like Release Version…) */
.rn-top-instructions::before{
  content: "Info";
  position: static;                 /* override absolute */
  display: block;

  /* mimic your release meta tone */
  font-size: 0.92rem;               /* match .release-version-item */
  font-weight: 550;
  opacity: 0.85;

  margin: 0 0 8px 0;
  padding: 0;

  background: transparent;          /* remove pill visuals */
  border: 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
}

/* Remove legacy divider under disclosure-based sections */
.rn-disclosure + .release-next,
#rnNextReleaseBlock + .release-next {
  border-top: 0;
  padding-top: 0;
}


/* =========================================
   RN nav map (replaces long "how to read" text)
   Mobile-first, wraps, no JS
========================================= */

.rn-readguide.rn-navmap{
  margin: 10px 0 0 0;           /* already neutralized inside rn-top-instructions */
}

.rn-navmap-title{
  font-size: 0.92rem;
  opacity: 0.85;
  margin: 0 0 8px 0;
}

/* Steps container */
.rn-navmap-steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;   /* mobile */
  gap: 10px;
}

/* One step row */
.rn-navmap-step{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}

/* Dot */
.rn-navmap-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(77, 85, 91, 0.28);
  margin-top: 4px;
  flex: 0 0 auto;
}

.rn-navmap-dot--gold{
  background: rgba(242, 192, 120, 0.95);
}

/* Text */
.rn-navmap-label{
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(77, 85, 91, 0.92);
  line-height: 1.2;
}

.rn-navmap-sub{
  display: block;
  font-size: 0.88rem;
  opacity: 0.72;
  line-height: 1.25;
  margin-top: 2px;
}

/* Tablet/desktop: compact horizontal map */
@media (min-width: 760px){
  .rn-navmap-steps{
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .rn-navmap-step{
    align-items: flex-start;
  }

  .rn-navmap-sub{
    font-size: 0.84rem;
  }
}

/* =========================================
   RN Nav Map — make it clean inside the Info box
   Strategy:
   - mobile: labels only (no subtitles)
   - desktop: labels + short subtitles
   - add subtle track line for "map" feel
========================================= */

.rn-navmap-title{
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.60;
  margin: 8px 0 10px 0;
}

/* Track line behind dots (desktop/tablet) */
@media (min-width: 760px){
  .rn-readguide.rn-navmap{
    position: relative;
  }

  .rn-readguide.rn-navmap::after{
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 52px;                      /* aligns behind dots */
    height: 2px;
    background: rgba(77, 85, 91, 0.12);
    border-radius: 2px;
    pointer-events: none;
  }
}

.rn-navmap-steps{
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 10px 12px;
}

/* Mobile/narrow: 3 columns then wrap, labels only */
@media (max-width: 759px){
  .rn-navmap-steps{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 10px;
  }

  .rn-navmap-step{
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }

  .rn-navmap-sub{
    display: none;                  /* KEY: removes clutter */
  }

  .rn-navmap-label{
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.15;
  }

  .rn-navmap-dot{
    width: 9px;
    height: 9px;
    margin-top: 3px;
  }
}

/* Tablet/desktop: 5 columns, labels + subtitles */
@media (min-width: 760px){
  .rn-navmap-steps{
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .rn-navmap-step{
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .rn-navmap-dot{
    width: 10px;
    height: 10px;
    margin-top: 4px;
    background: rgba(77, 85, 91, 0.22);
  }

  .rn-navmap-dot--gold{
    background: rgba(242, 192, 120, 0.95);
  }

  .rn-navmap-label{
    font-size: 0.90rem;
    font-weight: 600;
  }

  .rn-navmap-sub{
    font-size: 0.82rem;
    line-height: 1.25;
    opacity: 0.62;                  /* calmer */
    margin-top: 2px;
    max-width: 15ch;                /* avoids tall columns */
  }
}

/* RN top: nav map already contains "Info" — remove duplicated label */
.rn-top-instructions::before{
  content: none;
  display: none;
}

.rn-top-instructions{
  padding-top: 12px; /* keep normal padding */
}

/* RN nav map: prevent track line from colliding with subtitles */
.rn-readguide.rn-navmap{
  padding-top: 4px;     /* creates breathing room above the map content */
  padding-bottom: 2px;
}

@media (min-width: 760px){
  .rn-readguide.rn-navmap::after{
    top: 56px;          /* move the track line down slightly */
    background: rgba(77, 85, 91, 0.10);
  }

  .rn-navmap-sub{
    margin-top: 6px;    /* more space between label and subtext */
  }
}

/* =========================================
   RN Nav Map — fix subtitle overlap with track line
========================================= */

/* Ensure text always sits above the track line */
.rn-navmap-step{
  position: relative;
  z-index: 2;
}

/* Push subtitle away from label + line */
.rn-navmap-sub{
  display: block;
  margin-top: 6px;        /* KEY: breathing space */
  line-height: 1.3;
}

/* Fix the track line slightly position above the text */
@media (min-width: 760px){
  .rn-readguide.rn-navmap::after{
    top: 50px;            /* move line up or down */
    
  }
}

/* =========================================
   Tone down "Latest Release" and "Upcoming Release"
   Make them contextual, not headline-level
========================================= */

/* Latest Release title */
#rnRangeHeading{
  font-size: 1.05rem;        /* down from section headline */
  font-weight: 520;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}


/* Prevent duplicate text if API already includes prefix */
#rnRangeHeading{
  text-transform: none;
}

/* Upcoming Release title inside disclosure */
.rn-disclosure-body .release-card-title{
  font-size: 1.0rem;
  font-weight: 500;
  margin-bottom: 6px;
}

/* Make "Upcoming Release:" label quiet */
.rn-upcoming-label{
  font-weight: 500;
  /*color: rgba(77, 85, 91, 0.70);*/
}

/* Keep Future Releases as the quiet baseline */
.rn-disclosure-label--muted{
  font-weight: 500;
}

#rnRangeHeading,
.rn-disclosure-body .release-card-title{
  font-weight: 500;
}

/* Latest Release — make label semi-bold only */
#rnRangeHeading{
  font-size: 1.05rem;
  font-weight: 500; /* base weight for DB-driven title */
}


/* De-emphasise the "Latest Release:" label itself */
#rnRangeHeading::before{
  /*content: "Latest Release: ";*/
  font-weight: 600;
  /*color: rgba(77, 85, 91, 0.70);*/
}