/* =========================
   FOOTER BASIS
========================= */

.site-footer {
  background: #f5f7fa;
  border-top: 1px solid #e6e8ec;
  padding: 12px 28px 10px; /* noch kompakter */
  font-size: 14px;
  color: #5a6472;
}

/* =========================
   FOOTER CONTAINER
========================= */

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================
   FOOTER BRAND BLOCK
========================= */

.footer-brand strong {
  display: block;
  font-size: 17px;
  font-weight: 1900; /* stärker fett */
  color: #1d2a3a;
  margin-bottom: 0px; /* reduziert */
}

.footer-brand span {
  display: block;
  font-size: 13px;
  line-height: 1.3; /* enger */
}

.footer-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

/* =========================
   FOOTER NAVIGATION
========================= */

.footer-nav {
  display: flex;
  gap: 16px; /* enger */
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: #4c5868;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-nav a:hover {
  color: #0b6cff;
}

/* =========================
   COPYRIGHT ZEILE
========================= */

.footer-bottom {
  max-width: 1400px;
  margin: 6px auto 0; /* deutlich enger */
  padding-top: 6px;
  border-top: 1px solid #e6e8ec;
  font-size: 12px;
  color: #8a94a6;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

}