/* FOOTER 2 - MINIMAL LIGHT */
.footer-2 {
  background: var(--white);
  padding: 60px 5%;
}
.footer-2 .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-2 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-light);
  flex-wrap: wrap;
  gap: 30px;
}
.footer-2 .logo {
  font-family: var(--font-display);
  width: 80px;
  font-weight: 700;
  color: var(--gray-dark);
  text-decoration: none;
}
.footer-2 nav {
  display: flex;
  gap: 32px;
}
.footer-2 nav a {
  color: var(--gray-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-2 nav a:hover {
  color: var(--secondary);
}
.footer-2 .social {
  display: flex;
  gap: 16px;
}
.footer-2 .social a {
  color: var(--gray-dark);
  transition: color 0.3s;
}
.footer-2 .social a:hover {
  color: var(--secondary);
}
.footer-2 .social svg {
  width: 20px;
  height: 20px;
}
.footer-2 .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-2 .bottom p {
  color: var(--black);
  font-size: 0.85rem;
  margin: 0;
}
.footer-2 .bottom p a {
  color: var(--black);
}
.footer-2 .bottom-links {
  display: flex;
  gap: 20px;
}
.footer-2 .bottom-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-2 .bottom-links a:hover {
  color: var(--secondary);
}
@media (max-width: 768px) {
  .footer-2 .top {
    flex-direction: column;
    text-align: center;
  }
  .footer-2 nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-2 .bottom {
    flex-direction: column;
    text-align: center;
  }
}
