/* Wiederverwendbare App-Fußzeile - News-Farben */
.app-footer {
  margin-top: 56px;
  background: #0b4f4a;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.app-footer a { color: #ffffff; text-decoration: none; }
.app-footer a:hover { text-decoration: underline; }
.app-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 20px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.app-footer__brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.app-footer__brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
}
.app-footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 800;
  font-size: .95rem;
}
.app-footer__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 22px;
  color: rgba(255,255,255,.7);
  font-size: .86rem;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .app-footer__inner { flex-direction: column; }
  .app-footer__links { justify-content: flex-start; }
}
