.footer-partners {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 30px;
  margin: 0 0 28px;
  color: #101216;
}

.footer-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-partner-logo {
  display: block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-partner-logo-meta {
  width: 30px;
}

.footer-partner-logo-apple {
  width: auto;
  height: auto;
  font-size: 27px;
  line-height: 1;
}

.footer-partner-logo-google {
  width: 24px;
  height: 24px;
}

/* Static landing pages use the same footer structure and visual rhythm as the homepage. */
.site-footer .footer-top {
  width: 100%;
  margin-bottom: 34px;
}

.site-footer .footer-brand img {
  display: block;
  width: auto;
  height: 30px;
}

.site-footer .footer-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px clamp(28px, 4vw, 72px);
  margin-bottom: 48px;
}

.site-footer .footer-column-title {
  margin: 0 0 14px;
  color: #101216;
  font-size: 11px;
  font-weight: 600;
}

.site-footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer .footer-list li,
.site-footer .footer-link {
  color: #686d75;
  font-size: 11px;
  line-height: 1.7;
}

.site-footer .footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px 36px;
}

.site-footer .footer-legal {
  display: grid;
  gap: 4px;
}

.site-footer .footer-legal p,
.site-footer .footer-rights {
  margin: 0;
  color: #686d75;
  font-size: 10px;
  line-height: 1.7;
}

.site-footer .footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer .footer-rights {
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 820px) {
  .site-footer .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer-partners {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
  }

  .footer-partner {
    min-height: 30px;
    font-size: 10px;
  }

  .footer-partner-logo {
    width: 24px;
    height: 24px;
  }

  .footer-partner-logo-apple {
    width: auto;
    height: auto;
    font-size: 24px;
  }

  .footer-partner-logo-google {
    width: 21px;
    height: 21px;
  }

  .site-footer .footer-columns {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
  }
}
