/*
 * Zentraler Francis-Rise-Footer fuer Erweiterungsseiten.
 * Der Theme-Abschluss bleibt technisch geladen (inklusive wp_footer), wird auf
 * diesen Seiten aber ausgeblendet, damit genau ein sichtbarer Footer bleibt.
 */
.fr-extension-page #footer {
  display: none;
}

.fr-site-footer {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #faf8f4;
  color: #343733;
  font-family: 'Lato', sans-serif;
}

.fr-site-footer *,
.fr-site-footer *::before,
.fr-site-footer *::after {
  box-sizing: border-box;
}

.fr-site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 96px, 1180px);
  margin-inline: auto;
  padding-block: 30px 34px;
  border-top: 1px solid #dde6e0;
}

.fr-site-footer__brand {
  flex: 0 0 auto;
  color: #343733;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.7;
  text-decoration: none;
}

.fr-site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fr-site-footer__nav li {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.fr-site-footer__nav li + li::before {
  content: '·';
  color: #a4c3b2;
}

.fr-site-footer__nav a {
  color: #62675f;
  font-size: 12px;
  line-height: 1.7;
  text-decoration: none;
  text-underline-offset: 5px;
}

.fr-site-footer__brand:hover,
.fr-site-footer__nav a:hover {
  text-decoration: underline;
  text-decoration-color: #a4c3b2;
}

.fr-site-footer a:focus-visible {
  border-radius: 2px;
  outline: 2px solid #a4c3b2;
  outline-offset: 5px;
}

@media (max-width: 700px) {
  .fr-site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 48px, 1180px);
  }

  .fr-site-footer__nav,
  .fr-site-footer__nav ul {
    width: 100%;
  }

  .fr-site-footer__nav ul {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .fr-site-footer__nav li {
    gap: 16px;
  }
}
