.footer {
  margin-top: 40px;
  padding-bottom: 20px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--footer-border);
  padding-bottom: 10px;
}

.footer__bottom {
  padding-top: 10px;
  text-align: center;
}

.footer__copyright {
  font-family: var(--font-tertiary);
  font-weight: 400;
  font-size: 12px;
}

.footer__section--logo {
  flex: 0 0 auto;
}

.footer__section--nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer__section--actions {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

.footer__logo {
  display: inline-block;
  text-decoration: none;
  color: var(--text-light);
  transition: opacity 0.3s;
}

.footer__logo:hover {
  opacity: 0.8;
  color: var(--primary-color);
}

.footer__logo-text {
  font-size: 1.5rem;
}

.footer__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  justify-content: center;
  white-space: nowrap;
}

.footer__nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.footer__nav-link:hover {
  color: var(--primary-color);
}

.footer__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__button {
  text-decoration: none;
  transition: transform 0.3s;
}

.footer__button:hover {
  transform: translateY(-2px);
}

.footer__button-wrapper {
  display: flex;
  align-items: center;
}


.footer__button-icon {
  height: 2rem;
  width: auto;
}

@media (max-width: 1024px) {
  .footer {
    margin-top: 20px;
    padding-bottom: 10px;
  }

  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
  }
  
  .footer__bottom {
    padding-top: 5px;
  }
  
  .footer__section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
  
  .footer__section--logo,
  .footer__section--actions {
    justify-content: center;
  }
  
  .footer__nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer__actions {
    justify-content: center;
    width: 100%;
  }
  
}

@media (max-width: 576px) {
  .footer__nav-list {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .footer__actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer__button-icon {
    height: 1.75rem;
  }
} 