/* Genre + region filter chips on /concerts/ + /festival/ */
.xot-evf{
  margin:1rem 0 1.5rem;
  display:flex;flex-direction:column;gap:.6rem;
  font-family:var(--font-primary,'Satoshi',system-ui,sans-serif);
}
.xot-evf__row{
  display:flex;align-items:center;gap:.85rem;flex-wrap:wrap;
}
.xot-evf__label{
  font-size:.55rem;font-weight:800;letter-spacing:2px;text-transform:uppercase;
  color:rgba(255,255,255,.32);min-width:54px;
}
.xot-evf__chips{
  display:flex;flex-wrap:wrap;gap:.4rem;flex:1;
}
.xot-evf__chip{
  font-family:inherit;
  background:rgba(255,255,255,.04);color:rgba(255,255,255,.7);
  border:1px solid rgba(255,255,255,.08);
  font-size:.7rem;font-weight:700;letter-spacing:.3px;
  padding:.4rem .85rem;border-radius:100px;cursor:pointer;
  transition:background .15s,border-color .15s,color .15s,transform .12s;
  display:inline-flex;align-items:center;gap:.4rem;
  white-space:nowrap;
}
.xot-evf__chip:hover{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.18)}
.xot-evf__chip.is-active{
  background:#F0506C;color:#fff;border-color:#F0506C;
  box-shadow:0 4px 14px rgba(240,80,108,.28);
}
.xot-evf__chip.is-active:hover{background:#d33d57;border-color:#d33d57}
.xot-evf__chip--all{
  background:transparent;color:rgba(255,255,255,.4);border-color:rgba(255,255,255,.12);
}
.xot-evf__chip--all.is-active{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.18);box-shadow:none}
.xot-evf__count{
  font-size:.55em;font-weight:600;opacity:.65;
  background:rgba(0,0,0,.25);padding:.1rem .4rem;border-radius:8px;
}
.xot-evf__chip.is-active .xot-evf__count{background:rgba(0,0,0,.35);opacity:.85}

@media(max-width:640px){
  .xot-evf__row{gap:.55rem}
  .xot-evf__label{min-width:0;font-size:.5rem;letter-spacing:1.4px}
  .xot-evf__chip{font-size:.65rem;padding:.35rem .7rem}
}
