/* CaelbertChae.com — canonical shared footer */
.canonical-site-footer {
  padding: 0 0 16px;
  color: var(--soft);
  font-size: 11px;
}

.canonical-site-footer .canonical-footer-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 48px 0;
  border-top: 1px solid var(--line);
}

.canonical-site-footer .footer-columns {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 48px;
}

.canonical-site-footer .footer-column { min-width: 0; }
.canonical-site-footer .footer-logo-column { padding-top: 1px; }
.canonical-site-footer .footer-logo { width: 28px; height: 28px; display: block; }

.canonical-site-footer .footer-title {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.canonical-site-footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.canonical-site-footer .footer-links a {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  transition: color .18s ease;
}

.canonical-site-footer .footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.canonical-site-footer .footer-bottom {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--soft);
  line-height: 1.35;
}

.canonical-site-footer .footer-legal,
.canonical-site-footer .footer-lang {
  display: flex;
  align-items: center;
}

.canonical-site-footer .footer-legal a,
.canonical-site-footer .footer-lang button {
  position: relative;
  color: var(--soft);
  background: none;
  transition: color .18s ease;
}

.canonical-site-footer .footer-legal a { padding: 0 9px; }
.canonical-site-footer .footer-legal a:first-child { padding-left: 0; }

.canonical-site-footer .footer-legal a + a::before,
.canonical-site-footer .footer-lang button + button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 11px;
  background: var(--line);
  transform: translateY(-50%);
}

.canonical-site-footer .footer-legal a:hover,
.canonical-site-footer .footer-lang button:hover { color: var(--ink); }

.canonical-site-footer .footer-legal a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.canonical-site-footer .footer-lang {
  margin-left: auto;
  white-space: nowrap;
}

.canonical-site-footer .footer-lang button {
  padding: 0 8px;
  border: 0;
  cursor: pointer;
  font-size: 11px;
}

.canonical-site-footer .footer-lang button:first-child { padding-left: 0; }
.canonical-site-footer .footer-lang button:last-child { padding-right: 0; }
.canonical-site-footer .footer-lang button.active { color: var(--ink); font-weight: 600; }
