/* ============================================
   Footer
   ============================================ */

.ws-footer {
  background: var(--color-bg-dark);
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
}

.ws-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.ws-footer__brand img {
  height: 32px;
  margin-bottom: 20px;
}

.ws-footer__brand p {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.ws-footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ws-footer__links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
  transition: color var(--transition-fast);
}

.ws-footer__links a:hover {
  color: var(--color-primary);
}

.ws-footer__contact p {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.8;
}

.ws-footer__legal {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.ws-footer__legal p {
  font-size: 13px;
  color: var(--color-text-gray);
}

/* Responsive */
@media (max-width: 1024px) {
  .ws-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .ws-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
