/*
  footer — sitewide footer chrome.
  Values from runs/<id>/specs/footer.spec.md ## Computed Styles at 1440/768/375,
  mapped onto the run breakpoint set {479, 767, 991, 1919}: the desktop→tablet
  flip (spacer-holder hide, grid + bottom-bar row→column, legal reorder) lands
  at max-width:991 (the source's Webflow tablet boundary, catches the 768
  sample); the mobile column-stack of the nav grid + badge wrap lands at
  max-width:479 (catches the 375 sample). Colors/family token-snapped to
  tokens.css. Shared page-wrapper + divider classes are scoped under the root.
*/

/* ── Root ──────────────────────────────────────────────────────────────── */
.c-footer__footer {
  display: block;
  position: relative;
  padding: var(--space-64) 0 var(--space-24);
  background-color: var(--color-bg-footer);
  color: var(--color-text-body);
  font-family: var(--font-family-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* padding-global — shared utility canonicalized under about_info; scoped here. */
.c-footer__footer .c-about_info__heading-wrap-5 {
  display: block;
  padding-inline: var(--space-40);
}

/* container-large — capped, centered content column. */
.c-footer__footer .c-about_info__heading-wrap {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}

/* ── Certification-badge row ───────────────────────────────────────────── */
.c-footer__footer-badge-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: var(--space-40);
  width: 100%;
}

.c-footer__footer-spacer-holder {
  display: block;
  width: 512px;
  max-width: 512px;
  height: 0;
  flex: 0 0 auto;
}

.c-footer__max-width-large {
  display: block;
  width: 728px;
  max-width: 768px;
  flex: 0 1 auto;
}

.c-footer__footer-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.c-footer__certificate-badge {
  width: 88px;
  height: 80px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* ── Spacers + divider ─────────────────────────────────────────────────── */
.c-footer__spacer-xlarge {
  display: block;
  padding-top: var(--space-64);
  width: 100%;
}

.c-footer__footer .c-accordion__divider {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-alt2);
}

/* ── Wrapper + grid ────────────────────────────────────────────────────── */
.c-footer__footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 192px;
  width: 100%;
}

.c-footer__footer-grid {
  display: flex;
  justify-content: space-between;
  gap: var(--space-40);
  width: 100%;
}

/* ── Contact column ────────────────────────────────────────────────────── */
.c-footer__footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 512px;
  max-width: 512px;
  flex: 0 0 auto;
}

.c-footer__logo-link {
  display: inline-block;
  margin-bottom: var(--space-40);
  line-height: 0;
}

.c-footer__logo-img {
  display: block;
  width: 156px;
  height: auto;
}

.c-footer__contact-email {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--color-text-a);
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}

.c-footer__social-row {
  display: flex;
  align-items: center;
  gap: 34px;
}

.c-footer__social-link {
  display: inline-flex;
  line-height: 0;
}

.c-footer__social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ── Navigation grid ───────────────────────────────────────────────────── */
.c-footer__footer-nav-grid {
  display: flex;
  justify-content: space-between;
  gap: var(--space-40);
  width: 728px;
  max-width: 768px;
  flex: 0 1 auto;
}

.c-footer__nav-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
}

.c-footer__nav-heading {
  margin-bottom: var(--space-24);
  color: var(--color-text-dark);
  font-family: var(--font-family-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.c-footer__nav-link {
  display: block;
  margin-bottom: var(--space-16);
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.c-footer__nav-link:last-child {
  margin-bottom: 0;
}

/* ── Bottom bar ────────────────────────────────────────────────────────── */
.c-footer__footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-16);
  width: 100%;
}

.c-footer__footer-bottom-content {
  display: block;
  width: 512px;
  max-width: 512px;
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 24px;
}

.c-footer__legal-links {
  display: flex;
  align-items: flex-end;
  gap: var(--space-40);
  width: 660px;
  justify-content: flex-end;
}

.c-footer__legal-link {
  color: var(--color-text-a);
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
  white-space: nowrap;
}

/* ── Tablet (≤991px — catches the 768 sample) ──────────────────────────── */
@media (max-width: 991px) {
  .c-footer__footer-spacer-holder {
    display: none;
  }
  .c-footer__max-width-large {
    width: 100%;
  }
  .c-footer__footer-wrapper {
    gap: 96px;
  }
  .c-footer__spacer-xlarge {
    padding-top: 48px;
  }
  .c-footer__footer-grid {
    flex-direction: column;
    gap: var(--space-40);
  }
  .c-footer__footer-contact {
    width: 512px;
    max-width: 512px;
  }
  .c-footer__footer-nav-grid {
    width: 100%;
  }
  .c-footer__footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-16);
  }
  .c-footer__footer-bottom-content {
    width: 100%;
  }
  .c-footer__legal-links {
    order: -1;
    width: 100%;
    flex-wrap: wrap;
    gap: var(--space-16) var(--space-40);
    justify-content: flex-start;
  }
}

/* ── Mobile (≤479px — catches the 375 sample) ──────────────────────────── */
@media (max-width: 479px) {
  .c-footer__footer .c-about_info__heading-wrap-5 {
    padding-inline: var(--space-16);
  }
  .c-footer__footer-div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-24);
    place-items: center;
    margin-bottom: var(--space-10);
  }
  .c-footer__footer-div > * {
    min-width: 0;
  }
  .c-footer__certificate-badge {
    width: 88px;
    height: 60px;
  }
  .c-footer__spacer-xlarge {
    padding-top: 32px;
  }
  .c-footer__footer .c-accordion__divider {
    margin: var(--space-10) 0;
  }
  .c-footer__footer-wrapper {
    align-items: flex-start;
  }
  .c-footer__footer-contact {
    width: 100%;
    max-width: 512px;
    margin-bottom: 32px;
  }
  .c-footer__logo-img {
    width: 100px;
  }
  .c-footer__footer-nav-grid {
    flex-direction: column;
    gap: var(--space-40);
    width: 100%;
  }
  .c-footer__footer-bottom-content {
    width: 100%;
  }
  .c-footer__legal-links {
    flex-wrap: wrap;
    gap: var(--space-16) var(--space-24);
  }
}

/* F13-6 style-parity patches — iteration 1 (generated; safe to regenerate) */
@media (min-width: 992px) {
  [data-component="footer"] {
    width: 100%;
  }
  [data-component="footer"] .c-about_info__heading-wrap {
    justify-content: normal;
    margin-inline: auto;
    max-width: 1280px;
    width: 100%;
  }
  [data-component="footer"] .c-about_info__heading-wrap-5 {
    padding: 0px 40px;
    width: 100%;
  }
  [data-component="footer"] .c-accordion__divider {
    max-width: 1280px;
    width: 100%;
  }
  [data-component="footer"] .c-footer__footer-badge-container {
    max-width: 1280px;
    width: 100%;
  }
  [data-component="footer"] .c-footer__footer-bottom-container {
    max-width: 1280px;
    width: 100%;
  }
  [data-component="footer"] .c-footer__footer-bottom-content {
    width: 512px;
  }
  [data-component="footer"] .c-footer__footer-div {
    width: 728px;
  }
  [data-component="footer"] .c-footer__footer-grid {
    max-width: 1280px;
    width: 100%;
  }
  [data-component="footer"] .c-footer__footer-nav-grid {
    width: 728px;
  }
  [data-component="footer"] .c-footer__footer-wrapper {
    max-width: 1280px;
    width: 100%;
  }
  [data-component="footer"] .c-footer__max-width-large {
    width: 728px;
  }
  [data-component="footer"] .c-footer__spacer-xlarge {
    max-width: 1280px;
    width: 100%;
  }
  [data-component="footer"] > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(2) {
    width: 660.125px;
  }
}
@media (min-width: 480px) and (max-width: 991px) {
  [data-component="footer"] {
    width: 100%;
  }
  [data-component="footer"] .c-about_info__heading-wrap {
    justify-content: normal;
    max-width: 688px;
    width: 100%;
  }
  [data-component="footer"] .c-about_info__heading-wrap-5 {
    padding: 0px 40px;
    width: 100%;
  }
  [data-component="footer"] .c-accordion__divider {
    max-width: 688px;
    width: 100%;
  }
  [data-component="footer"] .c-footer__footer-badge-container {
    max-width: 688px;
    width: 100%;
  }
  [data-component="footer"] .c-footer__footer-bottom-container {
    max-width: 688px;
    width: 100%;
  }
  [data-component="footer"] .c-footer__footer-bottom-content {
    height: var(--font-size-h3);
  }
  [data-component="footer"] .c-footer__footer-contact {
    height: 165.688px;
  }
  [data-component="footer"] .c-footer__footer-div {
    width: 688px;
  }
  [data-component="footer"] .c-footer__footer-grid {
    width: 688px;
  }
  [data-component="footer"] .c-footer__footer-nav-grid {
    height: 280px;
    width: 688px;
  }
  [data-component="footer"] .c-footer__footer-wrapper {
    width: 688px;
  }
  [data-component="footer"] .c-footer__max-width-large {
    width: 688px;
  }
  [data-component="footer"] .c-footer__spacer-xlarge {
    width: 688px;
  }
  [data-component="footer"] > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(2) {
    height: var(--font-size-h3);
  }
}
@media (max-width: 479px) {
  [data-component="footer"] {
    width: 375px;
  }
  [data-component="footer"] .c-about_info__heading-wrap {
    justify-content: normal;
    width: 343px;
  }
  [data-component="footer"] .c-about_info__heading-wrap-5 {
    padding: 0px 16px;
    width: 375px;
  }
  [data-component="footer"] .c-accordion__divider {
    width: 343px;
  }
  [data-component="footer"] .c-footer__footer-badge-container {
    width: 343px;
  }
  [data-component="footer"] .c-footer__footer-bottom-container {
    width: 343px;
  }
  [data-component="footer"] .c-footer__footer-bottom-content {
    height: var(--font-size-h3);
    width: 343px;
  }
  [data-component="footer"] .c-footer__footer-contact {
    width: 343px;
  }
  [data-component="footer"] .c-footer__footer-div {
    width: 343px;
  }
  [data-component="footer"] .c-footer__footer-grid {
    width: 343px;
  }
  [data-component="footer"] .c-footer__footer-nav-grid {
    width: 343px;
  }
  [data-component="footer"] .c-footer__footer-wrapper {
    width: 343px;
  }
  [data-component="footer"] .c-footer__max-width-large {
    width: 343px;
  }
  [data-component="footer"] .c-footer__spacer-xlarge {
    width: 343px;
  }
  [data-component="footer"] > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(2) {
    width: 343px;
  }
}
/* end F13-6 patches */
