/* =============================================
   FOOTER
   ============================================= */

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: var(--base-black);
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1320px;
  width: 100%;
}

.footer__logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__logo {
  width: 60px;
  height: auto;
}

.footer__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__copyright {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  color: var(--surface-light-active);
  text-align: center;
}

.footer__links {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  color: var(--secondary-normal);
  text-align: center;
}

.footer__links a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__links a:hover {
  text-decoration: underline;
  opacity: 0.95;
}

.footer__links a:focus-visible {
  outline: 2px solid var(--secondary-normal);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__links-sep {
  margin: 0 0.35em;
  opacity: 0.85;
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .footer__container { max-width: 1140px; }
}

@media (max-width: 834px) {
  .footer__container { max-width: 720px; padding: 0 20px; }
}

@media (max-width: 576px) {
  .footer__container { max-width: 350px; }
}
