/**
 * WDSB Responsive Button Menu – Darstellung
 * Version: 2026.03.08.183000 Europe/Berlin
 * Autor: Willi da Silva Borges - WDSB-Webdesign
 *
 * Zentrierte Button-Leiste: Container flex + justify-content center,
 * Links als klar erkennbare Buttons (nicht nur Textlinks linksbündig).
 */

.wdsb-resp-button-menu-wrapper {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background: #C11C0B;
	padding: 20px;
	border-top: 2px solid #ff0;
	border-bottom: 2px solid #ff0;
}

.wdsb-resp-button-menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.wdsb-resp-button-menu-item {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0;
	padding: 0.65rem 1.35rem;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.25;
	border: 2px solid #ff0;
	border-radius: 6px;
	color: #fff;
	background-color: #68B42D;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.wdsb-resp-button-menu-item:hover,
.wdsb-resp-button-menu-item:focus-visible {
  text-decoration: none;
  color: #000;
  background-color: #ffeb3b;
  border-color: #c6a700;
  outline: none;
}

.wdsb-resp-button-menu-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}

@media (max-width: 576px) {
  .wdsb-resp-button-menu-container {
    flex-direction: column;
    align-items: stretch;
  }

  .wdsb-resp-button-menu-item {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
}
