.custom-text-button  {
    color: inherit;
    text-transform: uppercase!important;
    font-weight: 500;
}

/* Das Pfeil-Icon danach */
.custom-text-button:after {
    content: '';
    display: inline-block; /* WICHTIG: Erlaubt Breite und Höhe! */
    background-image: url('/wp-content/uploads/2026/04/Pfeil_quadrat_rechts.svg');
    background-size: contain;
    background-repeat: no-repeat; /* Verhindert, dass der Pfeil sich kachelt */
    background-position: center;
    width: 0.7em;
    height: 0.7em;
    margin: 0 10px;
}

/*Inline Links*/ 

p a {
  color: inherit!important;
  text-decoration: underline!important;
  text-decoration-thickness: 0.1em!important;
  text-underline-offset: 0.15em;
  transition: color 0.15s, background-color 0.15s;
}

p a:hover {
  background-color: #aaa!important;
  color: white;
  text-decoration: none!important;
}