.footer {
  padding: 72px 0 30px;
  background: var(--obsidian);
  color: var(--bone);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--border-bone-08);
}

.footer-description {
  max-width: 300px;
  margin-top: 17px;
  color: var(--steel-light);
  font-size: 14px;
  line-height: 1.7;
}

.footer-slogan {
  margin-top: 22px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--steel-light);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--sand);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-column .social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 27px;
  color: var(--steel-light);
  font-size: 12px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
