/* components/footer.css */

.footer {
  margin-top: 80px;
  background: #ffffff;
  padding: 60px 16px;
  border-top: 1px solid #dbe8f1;
}

.footer-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
  max-width: 1180px;
  margin: auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 220px;
}

.footer-logo {
  width: 48px;
  height: 48px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: #517089;
  text-decoration: none;
  transition: 0.2s;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  opacity: 0.6;
}
