/* ---------- FOOTER ---------- */

.footer {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
  padding: 44px 20px;
  box-sizing: border-box;
}

.footer-left {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo {
  max-width: 170px;
  height: auto;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin: 0;
}

.footer-left a {
  color: #fff;
  text-decoration: none;
}

.footer-left a:hover {
  color: #A6FF4D;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.footer-social-link:hover {
  border-color: #A6FF4D;
  background: rgba(166, 255, 77, .10);
  transform: translateY(-2px);
}

.footer-social-link img {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-right {
  flex: 1;
  min-width: 260px;
}

.suite-title {
  font-size: 11px;
  font-weight: 300;
  margin: 0 0 12px;
  color: rgba(255,255,255,.75);
}

.suite-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.suite-logos a {
  display: inline-flex;
  align-items: center;
}

.suite-logos img {
  width: 120px;
  height: auto;
  object-fit: contain;
  opacity: .92;
  transition: opacity .25s ease, transform .25s ease;
}

.suite-logos a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* responsive footer */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 20px;
  }

  .footer-left {
    width: 100%;
  }

  .footer-right {
    width: 100%;
    min-width: 0;
  }

  .suite-logos {
    justify-content: flex-start;
    gap: 14px;
  }

  .suite-logos img {
    width: 112px;
  }
}