/* Footer — Figma node 25:3552 */
#sec-footer {
  position: relative;
  width: 1728px;
  height: 321px;
  background: #01353e;
  overflow: hidden;
}
#sec-footer .footer-inner {
  position: absolute;
  inset: 100px 200px;           /* px-[200px] py-[100px] */
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
#sec-footer #footer-logos {
  position: relative;
  width: 576px;
  height: 62.188px;
  flex: none;
}
#sec-footer #footer-logos img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
#sec-footer #footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#sec-footer .footer-copy {
  display: flex;
  align-items: center;
  gap: 6px;
}
#sec-footer .footer-copyright-icon {
  position: relative;
  width: 18.226px;
  height: 18.616px;
  flex: none;
  display: block;
}
#sec-footer .footer-copyright-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
#sec-footer .footer-diamond {
  position: relative;
  width: 8.21px;
  height: 8.21px;
  flex: none;
  display: block;
}
#sec-footer .footer-diamond img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
#sec-footer p {
  margin: 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

/* ---- Mobile (<= 768px): stack the footer ---- */
@media (max-width: 768px) {
  #sec-footer { height: auto; overflow: visible; }
  #sec-footer .footer-inner {
    position: static;
    inset: auto;
    padding: 32px 24px;
    gap: 24px;
  }
  #sec-footer #footer-logos {
    width: min(576px, 80vw);
    height: auto;
    aspect-ratio: 576 / 62.1886;   /* fallback for browsers that honor it */
  }
  #sec-footer #footer-logos img {
    position: static;
    width: 100%;
    height: auto;                  /* SVG now has an intrinsic ratio, so it can't stretch */
  }
  #sec-footer #footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  #sec-footer .footer-diamond { display: none; }  /* inline separators don't fit a stacked list */
  #sec-footer p {
    white-space: normal;
    font-size: 14px;
    line-height: 1.4;
  }
  #sec-footer .footer-link { white-space: normal; font-size: 14px; line-height: 1.4; }
}

/* Privacy policy link — matches the sibling <p> items in the footer strip. */
#sec-footer .footer-link {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#sec-footer .footer-link:hover { color: #56f77e; }
