/* Consent-Banner für optionale Google-Fonts-Einbindung */
.consent-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #181D20;
  color: #E8E4DA;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 3px solid #D9762B;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13.5px;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.25);
}
.consent-banner[hidden]{ display: none; }
.consent-text{
  margin: 0;
  max-width: 640px;
  line-height: 1.5;
  flex: 1 1 320px;
}
.consent-text a{ color: #FF9A4D; }
.consent-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.consent-btn{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #51606B;
  cursor: pointer;
  background: transparent;
  color: #E8E4DA;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.consent-btn:focus-visible{
  outline: 2px solid #FF9A4D;
  outline-offset: 2px;
}
.consent-btn-primary{
  background: #D9762B;
  border-color: #D9762B;
  color: #181D20;
  font-weight: 600;
}
.consent-btn-ghost:hover{ border-color: #E8E4DA; }
.consent-btn-primary:hover{ background: #C76A23; }

@media (max-width: 560px){
  .consent-banner{ flex-direction: column; align-items: stretch; }
  .consent-actions{ justify-content: flex-end; }
}
