/* CheckCom footer layout fix – 2026-06-28
   Korrigiert zu enge Footer-Spalten auf der deutschen und englischen Startseite. */
.checkcom-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  padding: 48px 0 42px;
}
.checkcom-footer .checkcom-footer-grid,
footer.footer .container.footer-grid.checkcom-footer-grid {
  display: grid !important;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr) !important;
  align-items: start !important;
  gap: clamp(32px, 5vw, 72px) !important;
}
.checkcom-footer .footer-brand-block {
  min-width: 0;
  max-width: 380px;
}
.checkcom-footer .footer-brand-block strong {
  display: block;
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.35;
}
.checkcom-footer .footer-brand-block p {
  margin: 0 0 14px;
  color: #64748b;
  line-height: 1.65;
  max-width: 32rem;
}
.checkcom-footer .footer-brand-block .copyright {
  margin-top: 22px;
  color: #64748b;
}
.checkcom-footer .checkcom-footer-links,
footer.footer .footer-links.checkcom-footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 12px 22px !important;
  min-width: 0;
  width: 100%;
}
.checkcom-footer .checkcom-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #475569;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}
.checkcom-footer .checkcom-footer-links a:hover,
.checkcom-footer .checkcom-footer-links a:focus-visible {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 900px) {
  .checkcom-footer .checkcom-footer-grid,
  footer.footer .container.footer-grid.checkcom-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .checkcom-footer .footer-brand-block {
    max-width: none;
  }
  .checkcom-footer .checkcom-footer-links,
  footer.footer .footer-links.checkcom-footer-links {
    gap: 10px 16px !important;
  }
}
@media (max-width: 520px) {
  .checkcom-footer {
    padding: 36px 0 32px;
  }
  .checkcom-footer .checkcom-footer-links,
  footer.footer .footer-links.checkcom-footer-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: start !important;
  }
  .checkcom-footer .checkcom-footer-links a {
    white-space: normal;
  }
}
