.to-footer {
  background: var(--color-back-dark);
  color: #cbd5e1;
  padding: 1rem 1.5rem;
  border-top: 1px solid #ca8f2940;
  font-size: 0.875rem;
  flex: 0;
}

.to-footer__inner {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.to-footer__copy {
  white-space: nowrap;
}

.to-footer__list {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.to-footer__link {
  text-decoration: none;
  color: #e5e7eb;
  transition: color 0.15s ease;
}

.to-footer__link:hover,
.to-footer__link:focus-visible {
  color: #ca8f29;
  outline: none;
}

.to-footer__list > li > a > i{
  font-size: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .to-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .to-footer__copy {
    margin-bottom: 0.5rem;
  }

  .to-footer__list {
    flex-direction: column;
    gap: 0.35rem;
  }
}
