.footer {
  width: 100%;
  padding: 48px 16px;
  background: var(--c-footer);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.footer-inner {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  box-sizing: border-box;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 auto;
  min-width: 0;
}
.footer-disclaimer {
  width: 100%;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.7;
}
.footer-disclaimer * {
  color: inherit !important;
  background: transparent !important;
}
.footer-disclaimer p {
  margin: 0 0 10px;
}
.footer-disclaimer p:last-child {
  margin-bottom: 0;
}
.footer-disclaimer a {
  text-decoration: underline;
}
.footer-disclaimer a:hover {
  color: var(--c-accent) !important;
}
.footer-disclaimer ul,
.footer-disclaimer ol {
  margin: 0 0 10px;
  padding-left: 20px;
}
.footer-logo {
  width: auto;
  height: 35px;
  display: block;
  border-radius: 4px;
  flex-shrink: 0;
  text-decoration: none;
}
.footer-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.footer-logo-placeholder {
  width: 100%;
  height: 100%;
  background: #D7D7D7;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
  font-weight: 600;
}
.footer-nav {
  width: 100%;
  max-width: var(--container);
  margin-top: 32px;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 28px;
}
.footer-nav-link {
  color: inherit;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.footer-nav-link:hover {
  color: var(--c-accent);
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .footer {
    padding: 40px 16px;
  }
  .footer-inner {
    max-width: 100%;
    padding: 0 20px;
    gap: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 32px 16px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 0 4px;
  }
  .footer-disclaimer {
    font-size: 12px;
  }
  .footer-logo {
    height: 30px;
  }
  .footer-nav {
    margin-top: 24px;
    padding: 20px 4px 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 20px;
    line-height: 2;
  }
  .footer-nav-link {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) and only screen and (max-width: 320px) {
  .footer {
    padding: 24px 12px;
  }
  .footer-inner {
    gap: 20px;
  }
  .footer-logo {
    height: 24px;
  }
  .footer-nav {
    gap: 0 16px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer .footer-nav-link {
    transition: none !important;
  }
}
