.footer {
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  padding: 2rem 0 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

/* LEFT */
.footer-main {
  max-width: 320px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  height: 40px;
  /* tweak as needed */
  width: auto;
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-main p {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.footer-author {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  color: var(--text-faint);
}

/* RIGHT */
.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #ffffff;
}


.footer-bottom-inner {
  padding: 0.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-faint);
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    text-align: center;
  }
}