/* Homepage: isolated navigation cards below the sports-section CTA.
   Everything is scoped to #sport-section so the fragile homepage layout stays untouched. */
#sport-section .home-pathways{
  margin-top:20px;
  max-width:920px;
}
#sport-section .home-pathways__label{
  margin:0 0 10px;
  color:var(--muted);
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.01em;
}
#sport-section .home-pathways__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
#sport-section .home-path-card{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) 36px;
  gap:14px;
  align-items:center;
  min-width:0;
  padding:16px 16px 15px 18px;
  overflow:hidden;
  border:1px solid rgba(23,39,61,.10);
  border-radius:18px;
  background:rgba(255,255,255,.86);
  box-shadow:0 10px 28px rgba(23,39,61,.06);
  color:var(--ink);
  text-decoration:none;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background-color .18s ease;
}
#sport-section .home-path-card::before{
  content:"";
  position:absolute;
  top:0;
  left:18px;
  width:54px;
  height:3px;
  border-radius:0 0 6px 6px;
  background:var(--primary);
}
#sport-section .home-path-card:hover,
#sport-section .home-path-card:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(196,31,36,.23);
  background:#fff;
  box-shadow:0 14px 34px rgba(23,39,61,.10);
  color:var(--ink);
}
#sport-section .home-path-card:focus-visible{
  outline:3px solid rgba(196,31,36,.18);
  outline-offset:3px;
}
#sport-section .home-path-card__body{
  display:block;
  min-width:0;
}
#sport-section .home-path-card__kicker{
  display:block;
  margin:1px 0 6px;
  color:var(--primary);
  font-size:.70rem;
  font-weight:900;
  letter-spacing:.055em;
  line-height:1.2;
  text-transform:uppercase;
}
#sport-section .home-path-card__title{
  display:block;
  margin:0 0 4px;
  color:var(--ink);
  font-size:1rem;
  font-weight:900;
  line-height:1.25;
}
#sport-section .home-path-card__text{
  display:block;
  color:var(--muted);
  font-size:.86rem;
  line-height:1.40;
}
#sport-section .home-path-card__arrow{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(196,31,36,.08);
  color:var(--primary);
  font-size:1.05rem;
  font-weight:900;
  line-height:1;
  transition:background-color .18s ease,color .18s ease,transform .18s ease;
}
#sport-section .home-path-card:hover .home-path-card__arrow,
#sport-section .home-path-card:focus-visible .home-path-card__arrow{
  transform:translateX(2px);
  background:var(--primary);
  color:#fff;
}
@media(max-width:767px){
  #sport-section .home-pathways{
    margin-top:18px;
    width:100%;
    max-width:none;
  }
  #sport-section .home-pathways__label{
    margin-bottom:9px;
    font-size:.82rem;
  }
  #sport-section .home-pathways__grid{
    grid-template-columns:minmax(0,1fr);
    gap:9px;
  }
  #sport-section .home-path-card{
    grid-template-columns:minmax(0,1fr) 34px;
    gap:11px;
    padding:14px 14px 13px 16px;
    border-radius:17px;
  }
  #sport-section .home-path-card::before{
    left:16px;
    width:46px;
  }
  #sport-section .home-path-card__kicker{
    margin-bottom:5px;
    font-size:.67rem;
  }
  #sport-section .home-path-card__title{
    font-size:.96rem;
  }
  #sport-section .home-path-card__text{
    font-size:.83rem;
    line-height:1.36;
  }
  #sport-section .home-path-card__arrow{
    width:32px;
    height:32px;
    font-size:1rem;
  }
}
@media(max-width:360px){
  #sport-section .home-path-card{
    grid-template-columns:minmax(0,1fr) 30px;
    padding-left:14px;
    padding-right:12px;
  }
  #sport-section .home-path-card::before{left:14px}
  #sport-section .home-path-card__arrow{width:30px;height:30px}
}
@media(prefers-reduced-motion:reduce){
  #sport-section .home-path-card,
  #sport-section .home-path-card__arrow{transition:none}
}
