/* ============================================================
   ФАЙЛ: assets/css/podval/podval.css
   Подвал сайта SnapFit.

   Здесь находятся:
   • контактная почта поддержки;
   • правовые документы;
   • удаление аккаунта.
   ============================================================ */

.site-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--granica);
  background:
    linear-gradient(180deg, rgba(6, 26, 41, .96), rgba(4, 19, 31, 1));
  padding: 28px 0;
  font-size: .9rem;
  color: var(--tekst-slaby);
}

.footer-row {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 22px 36px;
}

.footer-info {
  display: grid;
  gap: 7px;
}

.footer-copy {
  color: rgba(233, 243, 250, .72);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.footer-contact-label {
  color: var(--tekst-slaby);
}

.footer-email {
  color: var(--akcent);
  font-weight: 700;
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-links a {
  color: var(--tekst-slaby);
  text-decoration: none;
  transition: color var(--perehod);
}

.footer-links a:hover {
  color: var(--akcent);
}

.footer-links .footer-delete {
  color: rgba(255, 122, 112, .82);
}

.footer-links .footer-delete:hover {
  color: var(--opasno);
}

@media (max-width: 760px) {
  .site-footer {
    padding: 24px 0;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
