/*
 * FIJ 1.8.7.71 — Mobile job-list rhythm accent.
 * Loaded after v18770. Every third visible job card receives one non-layout-
 * shifting brand stripe on its left edge. Desktop rendering is unchanged.
 */
@media (max-width:860px){
  .fij-mobile-card-accent-v18771 .fij-jobs-list > .fij-job-card:nth-child(3n){
    position:relative!important;
  }

  .fij-mobile-card-accent-v18771 .fij-jobs-list > .fij-job-card:nth-child(3n)::before{
    content:"";
    position:absolute;
    inset-block:0;
    inset-inline-start:0;
    width:4px;
    z-index:3;
    pointer-events:none;
    background:var(--fij-app-teal,var(--fj-teal,#25b98f));
  }
}
