.guest-footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.guest-footer__logout {
  margin: 0;
}
.guest-footer__logout-link {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.guest-footer__logout-link:hover {
  color: var(--accent);
}
.guest-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  font-size: 12px;
}
.guest-footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.guest-footer__links a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.guest-footer__link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 12px;
}
.guest-footer__link:hover {
  text-decoration: underline;
}
