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

.site-footer {
  background: #0b0c10;
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}

/* BRAND */

.footer-logo img {
  height: 28px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* COLUMNS */

.footer-col__title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

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

/* BOTTOM */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  max-width: 75%;
}

.footer-legal {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal:hover {
  color: var(--brand);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer {
    max-width: 100%;
  }
}
