:root {
  --ptp-footer-navy: #06283f;
  --ptp-footer-gold: #f2cf8c;
  --ptp-footer-copy: #adc1ca;
  --ptp-footer-muted: #77919c;
  --ptp-footer-line: rgba(255, 255, 255, 0.12);
}

.ptp-global-footer,
.ptp-global-footer * {
  box-sizing: border-box;
}

.ptp-global-footer {
  margin: 0;
  border: 0;
  padding: 38px max(20px, calc((100% - 1260px) / 2)) 30px;
  color: var(--ptp-footer-copy);
  background: var(--ptp-footer-navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: normal;
  font-variant-numeric: normal;
  line-height: 1.4;
  text-align: left;
}

.ptp-global-footer a {
  color: inherit;
  text-decoration: none;
}

.ptp-global-footer-brand {
  display: flex;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid var(--ptp-footer-line);
  padding: 0 0 22px;
}

.ptp-global-footer-brand a {
  display: block;
  width: clamp(280px, 34vw, 430px);
  margin: 0;
  padding: 0;
}

.ptp-global-footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  object-fit: contain;
}

.ptp-global-footer-links {
  display: grid;
  grid-template-columns: minmax(280px, 324px) repeat(2, minmax(0, 150px));
  gap: 24px;
  width: auto;
  max-width: none;
  margin: 30px 0;
  padding: 0;
  color: var(--ptp-footer-copy);
  background: transparent;
}

.ptp-global-footer-links div {
  display: grid;
  align-content: start;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.ptp-global-footer-links .ptp-global-footer-explore {
  display: block;
}

.ptp-global-footer-explore > strong {
  display: block;
  margin-bottom: 15px;
}

.ptp-global-footer-links .ptp-global-footer-explore-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 24px;
}

.ptp-global-footer-links strong {
  margin: 0 0 6px;
  color: #fff;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ptp-global-footer-links a {
  width: fit-content;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--ptp-footer-copy);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
}

.ptp-global-footer-links a:hover,
.ptp-global-footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ptp-global-footer-links a[aria-current="page"] {
  color: var(--ptp-footer-gold);
}

.ptp-global-footer a:focus-visible {
  outline: 3px solid #f2c76d;
  outline-offset: 4px;
}

.ptp-global-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  border-top: 1px solid var(--ptp-footer-line);
  padding: 20px 0 0;
  color: var(--ptp-footer-muted);
  font-size: 0.63rem;
  line-height: 1.4;
}

.ptp-global-footer-bottom span {
  margin: 0;
  padding: 0;
}

@media (max-width: 620px) {
  .ptp-global-footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .ptp-global-footer-links .ptp-global-footer-explore {
    grid-column: 1 / -1;
  }

  .ptp-global-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .ptp-global-footer-brand a {
    width: min(280px, 100%);
  }

  .ptp-global-footer-links {
    grid-template-columns: 1fr;
  }

  .ptp-global-footer-links .ptp-global-footer-explore {
    grid-column: auto;
  }

  .ptp-global-footer-links .ptp-global-footer-explore-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
