/*
Theme Name: Koloneo
Template: twentytwentyfive
Description: A streamlined, strictly-controlled minimalistic child theme for TT5.
Version: 1.4.1
*/

/* Button-Größen-Parität (gefüllt == Outline)
   Statt des alten Outline-Tricks (inset outline, niedrige Spezifität) bekommen
   BEIDE Button-Typen exakt dieselbe Box:
     • gleicher Rahmen (gefüllt transparent, Outline in Textfarbe)
     • gleiche Innenabstände (aus den Theme-Variablen, mit Fallback)
     • gleicher Radius (aus den Button-Styles der Variante)
   Dadurch sind beide Buttons pixelgenau gleich groß – kein Versatz mehr. */
.wp-block-button__link {
  box-sizing: border-box !important;
  border-style: solid !important;
  border-width: var(--wp--custom--outline-btn-width, 1px) !important;
  padding: var(--wp--custom--outline-btn-padding-v, 0.6rem) var(--wp--custom--outline-btn-padding-h, 1.6rem) !important;
}

/* Gefüllt: transparenter Rahmen reserviert exakt den Platz des Outline-Rahmens. */
.wp-block-button:not(.is-style-outline) > .wp-block-button__link {
  border-color: transparent !important;
}

/* Outline: sichtbarer Rahmen in Textfarbe, keine Füllung. */
.wp-block-button.is-style-outline > .wp-block-button__link {
  border-color: currentColor !important;
  background-color: transparent !important;
}
