/* ===== footer.css ===== */

/* ===== footer.css ===== */

/* ============================================================
   FOOTER.CSS — Подвал сайта
   ============================================================ */

footer {
  background: var(--black);
  color: rgba(255, 255, 255, .3);
  padding: 38px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-copy {
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 28px;
  justify-self: end;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color .2s;
}

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