/* ============================================================
   PROVEN — Athletes & Parents subpage
   "The Road to Recruitment" — hybrid guide + product deep-dive.
   All selectors namespaced .rr-* to avoid collisions with
   homepage.css / coaches.css. Shell (nav/subnav/footer/cta-band
   /buttons) is inherited from homepage.css.
   ============================================================ */

.rr-page { background: var(--bg); color: var(--fg1); }

/* Shared scroll offset so sticky nav (72) + subnav don't cover anchors */
.rr-ch, .rr-part, .rr-parents, .rr-next { scroll-margin-top: 132px; }

/* ---------- GUIDE HERO ---------- */
.rr-hero {
  position: relative;
  background: linear-gradient(105deg, rgba(25,34,77,0.94) 0%, rgba(25,34,77,0.78) 45%, rgba(246,138,50,0.78) 100%),
              url("../assets/hero-bg-athletes.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.rr-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(246,138,50,0.30) 1.2px, transparent 1.2px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.rr-hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) 32px clamp(56px, 8vw, 96px);
  display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 56px; align-items: center;
}
.rr-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--brand-light-blue); margin-bottom: 18px;
}
.rr-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 7vw, 76px); line-height: 1.0;
  letter-spacing: var(--tracking-display); text-transform: uppercase;
  margin: 0 0 16px;
}
.rr-title .accent { color: var(--brand-orange); }
.rr-subtitle {
  font-family: var(--font-body); font-size: clamp(18px, 2.4vw, 22px);
  color: rgba(255,255,255,0.86); margin: 0 0 28px; max-width: 30ch;
}
.rr-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.rr-trust {
  margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
}
.rr-hero .rr-pullquote--hero {
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(17px, 2vw, 22px); line-height: 1.3;
  color: #fff; max-width: 48ch;
}

.rr-hero-index {
  background: rgba(15,21,52,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.rr-index-group + .rr-index-group { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.10); }
.rr-index-label {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--brand-light-blue); margin-bottom: 10px;
}
.rr-hero-index a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; min-height: 44px; box-sizing: border-box;
  touch-action: manipulation; color: rgba(255,255,255,0.86);
  text-decoration: none; font-family: var(--font-body); font-size: 15px;
  transition: color .15s, transform .15s;
}
.rr-hero-index a:hover { color: #fff; transform: translateX(3px); }
.rr-idx-n {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--brand-orange); min-width: 20px;
}

/* ---------- SHELL: rail + main ---------- */
.rr-shell {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 248px 1fr; gap: 64px;
  align-items: start;
}
.rr-rail { position: relative; min-width: 0; }
.rr-rail-sticky {
  position: sticky; top: 148px;
  padding: 28px 0;
}
.rr-rail-head {
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--fg3); margin-bottom: 16px;
}
.rr-rail-list { list-style: none; margin: 0; padding: 0; }
.rr-rail-list li { margin: 0; }
.rr-rail-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0 9px 14px; margin-left: -2px;
  min-height: 44px; box-sizing: border-box; touch-action: manipulation;
  border-left: 2px solid var(--border);
  color: var(--fg2); text-decoration: none;
  font-family: var(--font-body); font-size: 14px; line-height: 1.3;
  transition: color .15s, border-color .15s;
}
.rr-rail-list a:hover { color: var(--fg1); }
.rr-rail-list a.is-active {
  color: var(--brand-dark-blue); font-weight: 600;
  border-left-color: var(--brand-orange);
}
.rr-rail-n {
  font-family: var(--font-mono); font-size: 11px; color: var(--fg3);
  min-width: 18px;
}
.rr-rail-list a.is-active .rr-rail-n { color: var(--brand-orange); }

.rr-main { min-width: 0; padding: 64px 0 24px; }

/* ---------- PART DIVIDERS ---------- */
.rr-part { padding: 56px 0 8px; border-top: 2px solid var(--brand-dark-blue); margin-top: 40px; }
.rr-part:first-child { border-top: 0; margin-top: 0; padding-top: 8px; }
.rr-part-n {
  font-family: var(--font-display); font-weight: 900; font-size: 13px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--brand-orange); margin-bottom: 8px;
}
.rr-part-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 5vw, 48px); line-height: 1.05;
  letter-spacing: var(--tracking-display); text-transform: uppercase;
  color: var(--fg1); margin: 0 0 12px;
}
.rr-part-title .accent { color: var(--brand-orange); }
.rr-part-lede { font-family: var(--font-body); font-size: 18px; color: var(--fg2); max-width: 56ch; margin: 0; }

/* ---------- CHAPTERS ---------- */
.rr-ch { padding: 56px 0; border-bottom: 1px solid var(--border); }
.rr-ch-head { max-width: 60ch; margin-bottom: 36px; }
.rr-ch-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--fg2); margin-bottom: 14px;
}
.rr-ch-n {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px; border-radius: var(--radius-pill);
  background: var(--brand-dark-blue); color: #fff;
  font-family: var(--font-mono); font-size: 12px;
}
.rr-ch-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(26px, 4vw, 40px); line-height: 1.08;
  letter-spacing: var(--tracking-display); text-transform: uppercase;
  color: var(--fg1); margin: 0 0 14px;
}
.rr-ch-title .accent { color: var(--brand-orange); }
.rr-ch-lede { font-family: var(--font-body); font-size: 18px; line-height: 1.55; color: var(--fg2); margin: 0; }

/* ---------- Ch1: reality + signal ---------- */
.rr-reality { display: grid; gap: 4px; margin-bottom: 40px; }
.rr-reality-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start;
  padding: 22px 0; border-top: 1px solid var(--border);
}
.rr-reality-row:first-child { border-top: 0; }
.rr-reality-n {
  font-family: var(--font-display); font-weight: 900; font-size: 34px;
  color: var(--brand-orange); line-height: 1;
}
.rr-reality-row h4 { font-family: var(--font-body); font-weight: 800; font-size: 19px; color: var(--fg1); margin: 0 0 6px; }
.rr-reality-row p { font-family: var(--font-body); font-size: 16px; color: var(--fg2); margin: 0; line-height: 1.55; }

.rr-signal {
  background: var(--brand-dark-blue); color: #fff;
  border-radius: var(--radius-lg); padding: 32px 34px;
}
.rr-signal-head {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--brand-light-blue); margin-bottom: 18px;
}
.rr-signal-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.rr-signal-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.86); }
.rr-signal-list b { color: #fff; }
.rr-check {
  display: inline-grid; place-items: center; width: 24px; height: 24px;
  border-radius: var(--radius-pill); background: var(--brand-orange);
  color: #fff; font-size: 13px; font-weight: 700;
}

/* ---------- Pull-quotes ---------- */
.rr-pullquote {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 3vw, 30px); line-height: 1.25;
  color: var(--fg1); text-align: center;
  max-width: 48ch; margin: 44px auto 8px;
}
.rr-pullquote .accent { color: var(--brand-orange); }
.rr-pullquote--close { max-width: 52ch; }

/* ---------- Ch2: timeline ---------- */
.rr-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; margin-bottom: 28px;
}
.rr-timeline::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 50%;
  height: 2px; background: var(--border); z-index: 0;
}
.rr-tl-node {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: transparent; border: 0; cursor: pointer;
  padding: 14px 8px; min-height: 44px; touch-action: manipulation;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg3);
  transition: color .15s;
}
.rr-tl-node:hover { color: var(--fg1); }
.rr-tl-dot {
  width: 18px; height: 18px; border-radius: var(--radius-pill);
  background: var(--bg); border: 3px solid var(--border-strong);
  transition: background .15s, border-color .15s, transform .15s;
}
.rr-tl-node.is-active { color: var(--brand-dark-blue); }
.rr-tl-node.is-active .rr-tl-dot { background: var(--brand-orange); border-color: var(--brand-orange); transform: scale(1.15); }

.rr-tl-panel {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-left: 3px solid var(--brand-orange);
  border-radius: var(--radius-md); padding: 26px 28px;
}
.rr-tl-panel + .rr-tl-panel { margin-top: 12px; }
.rr-tl-panel h4 { font-family: var(--font-body); font-weight: 800; font-size: 18px; color: var(--fg1); margin: 0 0 8px; }
.rr-tl-panel p { font-family: var(--font-body); font-size: 16px; color: var(--fg2); margin: 0; line-height: 1.55; }
/* Progressive enhancement: with JS only the active panel shows */
.rr-js .rr-tl-panel { display: none; }
.rr-js .rr-tl-panel.is-active { display: block; }

/* ---------- Ch3: playbook ---------- */
.rr-plays { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rr-play {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px;
  display: flex; flex-direction: column; transition: box-shadow .18s, transform .18s, border-color .18s;
}
.rr-play:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-strong); }
.rr-play-n {
  font-family: var(--font-display); font-weight: 900; font-size: 28px;
  color: var(--brand-orange); line-height: 1; margin-bottom: 14px;
}
.rr-play h4 { font-family: var(--font-body); font-weight: 800; font-size: 18px; color: var(--fg1); margin: 0 0 8px; }
.rr-play p { font-family: var(--font-body); font-size: 15px; color: var(--fg2); margin: 0 0 18px; line-height: 1.55; flex: 1; }
.rr-adv {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-dark-blue);
  border-top: 1px solid var(--border); padding-top: 12px;
}

/* ---------- Ch4: split + advantage block ---------- */
.rr-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 22px; }
.rr-split-col {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.rr-split-col h4 { font-family: var(--font-body); font-weight: 800; font-size: 19px; color: var(--fg1); margin: 0 0 10px; }
.rr-split-col p { font-family: var(--font-body); font-size: 16px; color: var(--fg2); margin: 0; line-height: 1.55; }
.rr-adv-block {
  background: var(--brand-dark-blue); color: #fff;
  border-radius: var(--radius-lg); padding: 26px 30px;
}
.rr-adv-tag {
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--brand-orange); margin-bottom: 10px;
}
.rr-adv-block p { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.88); margin: 0; line-height: 1.55; }

/* ---------- Ch5: profile anatomy ---------- */
.rr-anatomy { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: start; }
.rr-anatomy-card {
  background: linear-gradient(180deg, #0F1635 0%, #1B2656 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg); padding: 22px; color: #fff;
  position: sticky; top: 148px;
}
.rr-ac-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.rr-ac-id { display: flex; align-items: center; gap: 12px; }
.rr-ac-avatar { width: 46px; height: 46px; border-radius: var(--radius-pill); overflow: hidden; background: #0c1230; }
.rr-ac-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rr-ac-name { font-family: var(--font-body); font-weight: 800; font-size: 16px; }
.rr-ac-sub { font-size: 12px; color: rgba(255,255,255,0.55); }
.rr-ac-verified {
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--brand-orange); color: #fff;
  padding: 6px 10px; border-radius: var(--radius-pill);
}
.rr-ac-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.rr-ac-stat { background: rgba(255,255,255,0.05); border-radius: var(--radius-md); padding: 12px 14px; }
.rr-ac-stat .l { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.rr-ac-stat .n { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: #fff; }
.rr-ac-foot { font-size: 12px; color: rgba(255,255,255,0.5); border-top: 1px solid rgba(255,255,255,0.10); padding-top: 12px; }

.rr-anatomy-list { display: flex; flex-direction: column; gap: 0; }
.rr-hot {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: transparent; border: 0; border-top: 1px solid var(--border);
  padding: 18px 4px; cursor: pointer; text-align: left;
  min-height: 44px; touch-action: manipulation;
  font-family: var(--font-body); font-weight: 800; font-size: 17px; color: var(--fg1);
  transition: color .15s;
}
.rr-hot:first-of-type { border-top: 0; }
.rr-hot:hover { color: var(--brand-orange); }
.rr-hot-n {
  display: inline-grid; place-items: center; width: 30px; height: 30px;
  border-radius: var(--radius-pill); background: var(--bg-sunken);
  color: var(--fg2); font-family: var(--font-mono); font-size: 13px;
  flex-shrink: 0; transition: background .15s, color .15s;
}
.rr-hot.is-open .rr-hot-n { background: var(--brand-orange); color: #fff; }
.rr-hot-t { flex: 1; }
.rr-hot::after {
  content: "+"; font-family: var(--font-body); font-weight: 700;
  color: var(--fg3); font-size: 20px; transition: transform .2s;
}
.rr-hot.is-open::after { content: "−"; color: var(--brand-orange); }
.rr-hot-panel { padding: 0 4px 20px 48px; }
.rr-hot-panel p { font-family: var(--font-body); font-size: 16px; color: var(--fg2); margin: 0; line-height: 1.55; }
/* Progressive enhancement: with JS, panels collapse */
.rr-js .rr-hot-panel { display: none; }
.rr-js .rr-hot-panel.is-open { display: block; }

/* ---------- Ch6: comparison ---------- */
.rr-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rr-compare-col { border-radius: var(--radius-lg); padding: 30px 30px 32px; }
.rr-compare-col--proven { background: var(--brand-dark-blue); color: #fff; }
.rr-compare-col--ptp { background: var(--bg-sunken); color: var(--fg1); border: 1px solid var(--border); }
.rr-compare-tag {
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  margin-bottom: 18px; padding-bottom: 14px;
}
.rr-compare-col--proven .rr-compare-tag { color: var(--brand-orange); border-bottom: 1px solid rgba(255,255,255,0.15); }
.rr-compare-col--ptp .rr-compare-tag { color: var(--fg3); border-bottom: 1px solid var(--border); }
.rr-compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.rr-compare-col li { font-family: var(--font-body); font-size: 16px; line-height: 1.45; padding-left: 24px; position: relative; }
.rr-compare-col--proven li { color: rgba(255,255,255,0.9); }
.rr-compare-col--proven li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-orange); font-weight: 700; }
.rr-compare-col--ptp li { color: var(--fg2); }
.rr-compare-col--ptp li::before { content: "✕"; position: absolute; left: 0; color: var(--fg3); font-weight: 700; }

/* ---------- Parent chapter (distinct calm theme) ---------- */
.rr-parents {
  background: linear-gradient(180deg, #EEF6FA 0%, #F7F8FB 100%);
  border-radius: var(--radius-lg);
  margin: 56px 0;
  border: 1px solid var(--border);
}
.rr-parents-inner { padding: clamp(40px, 6vw, 64px); }
.rr-ch-kicker--light .rr-ch-n { background: var(--brand-light-blue); color: var(--brand-dark-blue); }
.rr-parent-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; margin: 32px 0 0; align-items: start; }
.rr-parent-roles { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.rr-parent-roles li {
  font-family: var(--font-body); font-size: 17px; color: var(--fg2);
  line-height: 1.55; padding: 16px 0; border-top: 1px solid var(--border);
}
.rr-parent-roles li:first-child { border-top: 0; padding-top: 0; }
.rr-parent-roles b { color: var(--fg1); }
.rr-parent-aside {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.rr-parent-aside p { font-family: var(--font-body); font-size: 16px; color: var(--fg2); margin: 0; line-height: 1.55; }
.rr-parent-quote {
  margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--border);
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  line-height: 1.3; color: var(--brand-dark-blue);
}
.rr-parent-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ---------- Finisher: next steps ---------- */
.rr-next { padding: 64px 0 24px; }
.rr-steps {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.rr-steps li { display: flex; flex-direction: column; gap: 14px; }
.rr-step-n {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: var(--brand-orange); color: #fff;
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
}
.rr-step-b h4 { font-family: var(--font-body); font-weight: 800; font-size: 16px; color: var(--fg1); margin: 0 0 4px; }
.rr-step-b p { font-family: var(--font-body); font-size: 14px; color: var(--fg2); margin: 0; line-height: 1.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .rr-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .rr-shell { grid-template-columns: 1fr; gap: 0; }
  .rr-main { padding-top: 8px; }

  /* Rail becomes a sticky horizontal progress strip under the subnav */
  .rr-rail { position: sticky; top: 120px; z-index: 15; margin: 0 -32px; }
  .rr-rail-sticky {
    position: static; padding: 10px 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border);
  }
  .rr-rail-head { display: none; }
  .rr-rail-list { display: flex; gap: 4px; min-width: 0; max-width: 100%; overflow-x: auto; padding: 0 32px; -webkit-overflow-scrolling: touch; }
  .rr-rail-list::-webkit-scrollbar { display: none; }
  .rr-rail-list a {
    border-left: 0; border-bottom: 2px solid transparent;
    padding: 8px 12px; white-space: nowrap; margin: 0;
  }
  .rr-rail-list a.is-active { border-left: 0; border-bottom-color: var(--brand-orange); }
  .rr-anatomy-card { position: static; }
}

@media (max-width: 760px) {
  .rr-hero-inner { padding-left: 20px; padding-right: 20px; }
  .rr-shell { padding: 0 20px; }
  .rr-rail { margin: 0 -20px; }
  .rr-rail-list { padding: 0 20px; }
  .rr-plays { grid-template-columns: 1fr; }
  .rr-split { grid-template-columns: 1fr; }
  .rr-anatomy { grid-template-columns: 1fr; gap: 24px; }
  .rr-compare { grid-template-columns: 1fr; }
  .rr-parent-grid { grid-template-columns: 1fr; gap: 24px; }
  .rr-parents { margin-left: -4px; margin-right: -4px; }

  /* Timeline → vertical stepper */
  .rr-timeline { grid-template-columns: 1fr; gap: 0; }
  .rr-timeline::before { left: 21px; right: auto; top: 8%; bottom: 8%; width: 2px; height: auto; }
  .rr-tl-node { flex-direction: row; justify-content: flex-start; gap: 16px; padding: 12px 0; }
  .rr-tl-node .rr-tl-dot { order: -1; }

  /* Steps → vertical */
  .rr-steps { grid-template-columns: 1fr; gap: 18px; }
  .rr-steps li { flex-direction: row; align-items: flex-start; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rr-play, .rr-hero-index a, .rr-tl-dot { transition: none; }
}

/* ============================================================
   TYPOGRAPHY POLISH — no widows/orphans
   balance: short/headline text (browsers cap ~6 lines)
   pretty:  longer body copy (prevents lone last-line word)
   Both degrade to normal wrapping on unsupporting browsers.
   ============================================================ */
.rr-title, .rr-part-title, .rr-part-n, .rr-ch-title, .rr-ch-kicker,
.rr-eyebrow, .rr-signal-head, .rr-reality-row h4, .rr-play h4,
.rr-tl-panel h4, .rr-split-col h4, .rr-compare-tag, .rr-step-b h4,
.rr-parent-quote, .rr-pullquote, .rr-hot-t, .rr-adv-tag,
.rr-page .cta-band h2 {
  text-wrap: balance;
}
.rr-subtitle, .rr-ch-lede, .rr-part-lede, .rr-reality-row p,
.rr-play p, .rr-tl-panel p, .rr-split-col p, .rr-hot-panel p,
.rr-adv-block p, .rr-parent-roles li, .rr-signal-list li,
.rr-step-b p, .rr-page .cta-band p {
  text-wrap: pretty;
}
