/* AFC — Guide Category Pills */
.afc-gp{ display:flex; flex-wrap:wrap; gap:var(--afc-gp-gap,10px); margin:0; padding:0; }
.afc-gp--center{ justify-content:center; }
.afc-gp--left{ justify-content:flex-start; }
.afc-gp--right{ justify-content:flex-end; }

.afc-gp__pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:var(--afc-gp-pad-y,9px) var(--afc-gp-pad-x,18px);
  border:1px solid var(--afc-gp-line,rgba(19,50,88,.18));
  border-radius:var(--afc-gp-radius,999px);
  background:var(--afc-gp-bg,#fff);
  color:var(--afc-gp-color,#133258);
  font-size:var(--afc-gp-size,15px);
  font-weight:600; line-height:1.2; text-decoration:none; white-space:nowrap;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease,transform .18s ease;
}
.afc-gp__pill:hover,.afc-gp__pill:focus-visible{
  background:var(--afc-gp-bg-h,#E8A91E);
  border-color:var(--afc-gp-line-h,#E8A91E);
  color:var(--afc-gp-color-h,#12233d);
  transform:translateY(-1px); text-decoration:none;
}
.afc-gp__pill:focus-visible{ outline:2px solid var(--afc-gp-color,#133258); outline-offset:2px; }
.afc-gp__pill.is-active{
  background:var(--afc-gp-bg-a,#133258);
  border-color:var(--afc-gp-bg-a,#133258);
  color:var(--afc-gp-color-a,#fff); cursor:default;
}
.afc-gp__pill.is-active .afc-gp__count{ background:rgba(255,255,255,.18); color:inherit; }
.afc-gp__count{
  display:inline-block; min-width:20px; padding:1px 7px; border-radius:999px;
  background:rgba(19,50,88,.08); font-size:.8em; font-weight:700;
  font-variant-numeric:tabular-nums; text-align:center;
}
@media (max-width:600px){
  .afc-gp{ --afc-gp-gap:8px; }
  .afc-gp__pill{ --afc-gp-pad-x:14px; --afc-gp-pad-y:8px; --afc-gp-size:14px; }
}
@media (prefers-reduced-motion:reduce){
  .afc-gp__pill{ transition:none; }
  .afc-gp__pill:hover{ transform:none; }
}
