/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-section);
  margin-top: var(--space-section);
}

.footer__inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
  justify-items: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.4rem;
}

.footer__links a {
  color: var(--color-text);
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
}

.footer__links a:hover { color: var(--color-heading); }

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer__contact-label {
  color: var(--color-heading);
  font-weight: var(--fw-bold);
}

.footer__emails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.2rem;
}

.footer__emails a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.footer__emails a:hover { color: var(--color-heading); }

.footer__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__payments img {
  height: 38px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 4px 8px;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer__age {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d81f2a;
  color: #fff;
  font-weight: var(--fw-extra);
  font-size: 0.85rem;
}

.footer__responsible {
  max-width: 640px;
  color: var(--color-text);
  font-size: var(--fs-small);
}

.footer__copy {
  color: var(--color-text);
  font-size: var(--fs-small);
}
