/* Aktuelles page-only components. */
.aktuelles-pagination{
  position:static;
  display:flex;
  width:100%;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
  margin-top:clamp(34px,5vw,58px);
}
.aktuelles-pagination__button{
  display:inline-flex;
  min-height:36px;
  align-items:center;
  justify-content:center;
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.12);
  background:transparent;
  color:var(--g3);
  font-size:12px;
  font-weight:700;
  line-height:1;
  text-decoration:none;
  transition:background-color .2s,border-color .2s,color .2s;
}
.aktuelles-pagination__button:hover,
.aktuelles-pagination__button:focus-visible{
  border-color:rgba(255,255,255,.3);
  background:rgba(255,255,255,.04);
  color:var(--white);
}
