/* --- Hero Buttons: finale barrierefreie Version für Blocksy --- */
.ct-hero-buttons,
.ct-hero .buttons-wrapper,
.ct-hero .ct-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Buttons selbst */
.ct-hero-buttons .ct-button,
.ct-hero .buttons-wrapper .ct-button,
.ct-hero .ct-buttons .ct-button {
  min-height: 54px !important;
  padding: 14px 26px !important;
  line-height: 1.25 !important;
  margin: 0 !important; /* neutralisiert Theme-Margins */
}

/* Gleichmäßige Verteilung + alte Margins neutralisieren */
.ct-hero .ct-buttons,
.ct-hero .buttons-wrapper { 
  justify-content: space-evenly !important;
  column-gap: 32px !important;
  row-gap: 22px !important;
  text-align: center !important;
}

/* Mobile: zentrieren, etwas mehr Abstand */
@media (max-width: 680px) {
  .ct-hero .ct-buttons,
  .ct-hero .buttons-wrapper {
    justify-content: center !important;
    gap: 30px !important;
  }
}

/* Deutlicher Tastaturfokus */
.ct-button:focus,
.ct-button:focus-visible {
  outline: 3px solid #ffd166 !important;
  outline-offset: 3px;
  box-shadow: none !important;
}

/* Gutenberg-Hero (ln-hero): Abstand, Tap-Ziel, Fokus */
.ln-hero .wp-block-buttons{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:24px !important;
  justify-content:center !important;
  align-items:center !important;
}
.ln-hero .wp-block-button__link{
  min-height:54px !important;
  padding:14px 26px !important;
  line-height:1.25 !important;
  margin:0 !important; /* neutralisiert Block-Margins */
}
@media (max-width:680px){
  .ln-hero .wp-block-buttons{ gap:30px !important; justify-content:center !important; }
}
/* Tastatur-Fokus klar sichtbar */
.ln-hero .wp-block-button__link:focus,
.ln-hero .wp-block-button__link:focus-visible{
  outline:3px solid #ffd166 !important;
  outline-offset:3px;
  box-shadow:none !important;
}
