/**
 * Slim site footer — used on focused app pages (Samtale Live, etc.).
 * Low-emphasis row, sits at the bottom without competing with the
 * primary task UI.
 */

/* Sticky-footer scaffolding: keep the footer at the bottom on short
   pages without overlapping content on tall ones. */
.layout-default--footer-slim {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.layout-default--footer-slim > main.page {
  flex: 1 0 auto;
}

.site-footer-slim {
  margin-top: auto;
  padding: 1rem 1.5rem 1.25rem;
  font-size: 0.8rem;
  color: #5e6470;            /* AA against the cream background */
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer-slim__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.site-footer-slim__copy {
  color: #5e6470;
}

.site-footer-slim__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.site-footer-slim__links a {
  color: #5e6470;
  text-decoration: none;
  border-radius: 6px;
  padding: 2px 4px;
  transition: color 0.15s, background 0.15s;
}

.site-footer-slim__links a:hover {
  color: var(--text-strong, #3d342a);
  background: rgba(251, 194, 75, 0.12);
}

.site-footer-slim__links a:focus-visible {
  outline: 2px solid #5a4520;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .site-footer-slim__inner {
    justify-content: center;
    text-align: center;
  }
  .site-footer-slim__links {
    justify-content: center;
  }
}

/* Parent brand in the copyright line. The mark keeps the row's low emphasis —
 * one shade darker so it reads as a name, not underlined like the nav links
 * beside it. .tilvo-wordmark itself lives in fonts.css. */
.site-footer-slim__copy a {
  color: #3d3425;
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-footer-slim__copy a:hover {
  opacity: 0.7;
}
