/* Pill-Liste
   Ablage: /wp-content/themes/enfold-child/css/pill-list.css */

#top .pill-list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

#top .pill-list.is-center{
  justify-content: center;
}

#top .pill-list__item{
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

/* Auf dunklem Untergrund */
#top .pill-list--dark .pill-list__item{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  color: #f3f1fa;
}

#top .pill-list--dark .pill-list__item.is-link:hover{
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.28);
  color: #fff;
}

/* Auf hellem Untergrund */
#top .pill-list--light .pill-list__item{
  background: #f4f3f8;
  border: 1px solid #e6e4ee;
  color: #18142c;
}

#top .pill-list--light .pill-list__item.is-link:hover{
  background: #ecebf3;
  border-color: #d9d6e4;
  color: #18142c;
}

/* Kleinere Variante */
#top .pill-list--sm{
  gap: 8px;
}

#top .pill-list--sm .pill-list__item{
  padding: 7px 14px;
  font-size: 13px;
}

/* Verlinkte Pills */
#top .pill-list__item.is-link{
  cursor: pointer;
}

#top .pill-list__item.is-link:focus-visible{
  outline: 2.5px solid #f26a21;
  outline-offset: 2px;
}


/* --- Schmale Viewports ---------------------------------------------- */

@media only screen and (max-width: 479px){

  #top .pill-list{
    gap: 8px;
  }

  #top .pill-list__item{
    padding: 9px 14px;
    font-size: 13.5px;
    white-space: normal;
  }
}


@media (prefers-reduced-motion: reduce){
  #top .pill-list__item{
    transition: none;
  }
}
