/* Footer Styles - Based on Figma Design */
.footer {
  width: 100%;
  padding: 24px 0 1rem 0;
  box-sizing: border-box;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.footer__copyright {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 20px;
  color: #1b4759;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  font-variation-settings: 'opsz' 14;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.footer__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 20px;
  color: #1b4759;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: opacity 0.2s ease;
  font-variation-settings: 'opsz' 14;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__divider {
  width: 1px;
  height: 16px;
  background-color: #1b4759;
  opacity: 0.2;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 16px 0 8px 0;
  }

  .footer__container {
    padding: 0 0.75rem;
  }

  .footer__copyright,
  .footer__link {
    font-size: 14px;
    line-height: 18px;
  }

  .footer__links {
    gap: 16px;
  }
}
