/* Geteilte Bedienungshilfen (Schrift größer / Hoher Kontrast) für alle Seiten.
   Steuerung über assets/accessibility.js, das body.large-text / body.high-contrast setzt. */

.assist-bar {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--blue);
  color: #ffffff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.assist-bar strong {
  font-size: 19px;
}

.assist-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.assist-actions button {
  min-height: 48px;
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
  font-size: 17px;
}

body.large-text {
  font-size: 1.18em;
}

body.large-text input,
body.large-text select,
body.large-text textarea,
body.large-text button {
  font-size: 1.08em;
}

body.high-contrast {
  color: #ffffff !important;
  background: #000000 !important;
}

body.high-contrast * {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
}

body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast strong,
body.high-contrast .eyebrow {
  color: #ffff00 !important;
}

body.high-contrast a,
body.high-contrast button,
body.high-contrast .button {
  color: #ffff00 !important;
  border-color: #ffff00 !important;
}

body.high-contrast a:hover,
body.high-contrast button:hover,
body.high-contrast .button:hover {
  color: #000000 !important;
  background: #ffff00 !important;
  border-color: #ffff00 !important;
}

@media (max-width: 680px) {
  .assist-bar {
    padding: 12px;
  }

  .assist-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .assist-actions button {
    width: 100%;
  }
}
