/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #ffffff;
  border-top: 1px solid #e8e8ed;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 32px;
  width: 100%;
}

/* Single row: socials left, copyright right */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e8e8ed;
  color: #86868b;
  font-size: 15px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-socials a:hover {
  color: #6643b5;
  border-color: #6643b5;
}

/* Copyright */
.footer-copy {
  font-size: 13px;
  font-weight: 400;
  color: #86868b;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 768px) {
  .footer-container {
    padding: 32px 24px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 16px;
  }

  .footer-socials {
    gap: 16px;
  }

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