.footer-site {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
}

/* Brand (gleich wie Navi) */
.footer-site .brand-box {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.footer-site .brand-logo {
  max-width: 2rem;
  max-height: 2rem;
}

/* Typografie */
.footer-title {
  font-size: 1rem;
}

.footer-subtitle {
  font-size: 0.8rem;
}

.footer-text {
  max-width: 420px;
  line-height: 1.5;
}

.footer-headline {
  font-size: 0.9rem;
}

/* Links */
.footer-link {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
  color: #111827;
  padding-left: 2px;
}

/* Divider */
.footer-divider {
  margin: 2rem 0;
  border-color: #e5e7eb;
}

/* Bottom Bereich */
.footer-bottom {
  font-size: 0.8rem;
}

/* Mobile Optimierung */
@media (max-width: 991.98px) {
  .footer-text {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .footer-site .brand-box {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 12px;
  }

  .footer-site .brand-logo {
    max-width: 1.75rem;
    max-height: 1.75rem;
  }

  .footer-title {
    font-size: 0.95rem;
  }

  .footer-subtitle {
    font-size: 0.72rem;
  }

  .footer-bottom {
    text-align: center;
  }
}