.footer {
  background: #262a31;
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .footer {
    padding: 48px 16px;
  }
}

.footer__content {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__content {
    gap: 24px;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer__logo img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.footer__logo p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.125vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  max-width: 170px;
}
@media (min-width: 768px) {
  .footer__logo p {
    max-width: 100%;
  }
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.footer__links a {
  color: #d1d1d1;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer__links a:hover {
  color: #fff;
}

.footer__copyright {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
