.footer {
  background: white;
  padding-top: 32px;
  border-top: 12px solid #e9eaee
    /* border-top: 4px sol
  /* border-top: 4px solid var(--clr-primary); */
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  width: 314px;
  height: 40px;
  margin-bottom: 0 auto 1.5rem;
  padding-left: 15px;
  margin-bottom: 50px;
}

.footer__slogan {
  margin-top: 13px;
  color: #666;
  text-align: center;
  line-height: 1.6;
  font-size: 0.65rem;

}

.footer__grid {
  flex: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.footer__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--clr-dark);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links li {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.footer__links li strong {
  color: var(--clr-dark);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link svg {
  color: #666;
  transition: all 0.3s ease;
}

.social-link:hover svg {
  color: var(--clr-primary);
}

.footer__bottom {
  background: var(--clr-primary);
  color: white;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 2rem;
    text-align: center;
  }

  .footer__inner {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .footer__brand {
    min-width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer__links {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }
}