/* AUTO-GENERATED from qa-fixes-late.css via rtlcss. Do not edit by hand.
   Loaded only on AR pages by inc/i18n-setup.php.
*/
/* ==========================================================================
   qa-fixes-late.css — recovery file for rules that landed at the tail of
   qa-fixes-global.css and weren't surviving disk sync.
   --------------------------------------------------------------------------
   Phase 2-eor (2026-05-01): the bash sandbox running .min.css regen was
   reading a truncated copy of qa-fixes-global.css (Local-by-Flywheel sync
   issue, same family as task #26's null-byte bug). Rules added at the tail
   of qa-fixes-global.css after the §15 Talent Pool block — testimonials
   cream band, Try-RP contractors brand-blue, home product-slide L/R
   alternation override — were visible to the file tools but never made it
   into the .min.css that Apache served. The file tools' Read tool also
   showed the full source, masking the bug. Verified via bash: file ends
   mid-comment at "producin..." in the testimonials section header.

   Switching the WP enqueue from .min.css to .css moves the truncation point
   to the source file itself — same problem, different file. Rather than
   fight the sync issue, this file mirrors the missing tail content via
   Write tool, which (verified) does write directly to disk that bash sees.
   Enqueued after qa-fixes-global so cascade order is preserved.
   ========================================================================== */

/* ==========================================================================
   TESTIMONIALS + TRY-RP CONTINUOUS CREAM BAND
   --------------------------------------------------------------------------
   Live remotepass.com nests both the testimonials swiper AND the Try-RP
   twin-CTA banner inside ONE shared `.rp-section.dark-blue-bg
   .new-footer-awards-orange` wrapper, producing a single continuous
   white-to-cream gradient band. Locally we keep them as TWO sibling
   template parts; the Try-RP section's own gradient restarts from #fff,
   creating a visible break. Replace its gradient with solid #ffe797 (the
   bottom edge color of the testimonials gradient) and zero the gap.
   ========================================================================== */
.rp-section.dark-blue-bg.new-footer-awards-orange.no-v3-pattern.home-try-rp-section {
  background-image: none;
  background-color: #ffe797;
  padding-top: 0;
  margin-top: 0;
}
.rp-section.dark-blue-bg.new-footer-awards-orange.no-v3-pattern:has(+ .home-try-rp-section),
.rp-section.dark-blue-bg.new-footer-awards-orange.no-v3-pattern.reviews-band {
  padding-bottom: 0;
}

/* ==========================================================================
   PRACTICAL GUIDES GRID — responsive breakpoints
   ========================================================================== */
@media (max-width: 991px) {
  .rp-home-practical-guides-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 639px) {
  .rp-home-practical-guides-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rp-home-practical-guides .rp-h3.blog-new-rp-h3 {
    font-size: 20px;
  }
}

/* ==========================================================================
   TRY-RP TWIN CTA — Contractors card global brand-blue background.
   Live uses #114ef7 on the contractors card across all pages. Was only
   applied scoped to .rp-hr-managers in migration.css. Apply globally.
   ========================================================================== */
.try-box.new-footer-try-box.new-rp-footer-try-box.new-rp-footer-try-box-contractors {
  background-color: #114ef7 !important;
}

/* ==========================================================================
   HOME PRODUCT SLIDES — force L/R alternation matching live: R, L, R, L, R, L
   2026-05-01 v2: SCOPED to body.home (originally unscoped, leaked to cor
   and other product pages). Each page has its own L/R pattern; live's
   home is R, L, R, L, R, L while live's cor is L, R, L, R, L. A global
   nth-of-type rule cannot be right for both.
   ========================================================================== */
body.home .main-section-holder .hero_double_section_2:nth-of-type(1) .double-section-hero-container,
body.home .main-section-holder .hero_double_section_2:nth-of-type(3) .double-section-hero-container,
body.home .main-section-holder .hero_double_section_2:nth-of-type(5) .double-section-hero-container {
  flex-direction: row !important;       /* image-RIGHT (markup is [text, image] → row keeps order) */
}
body.home .main-section-holder .hero_double_section_2:nth-of-type(2) .double-section-hero-container,
body.home .main-section-holder .hero_double_section_2:nth-of-type(4) .double-section-hero-container,
body.home .main-section-holder .hero_double_section_2:nth-of-type(6) .double-section-hero-container {
  flex-direction: row-reverse !important; /* image-LEFT (reverses [text, image] to [image, text]) */
}
