/* Shared site footer. Keep footer presentation centralized with partials/footer.html. */
.global-footer,
.global-footer * {
  box-sizing: border-box;
}

.global-footer.ft-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8px 30px 48px;
}

.global-footer .ft-footer,
#sec-ctafoot .global-footer .ft-footer {
  background: linear-gradient(135deg, #1c2945 0%, #141e36 100%) !important;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  padding: 48px 44px 0;
  overflow: hidden;
}

.global-footer .ft-footer::before {
  content: none !important;
}

.global-footer .ft-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 38px;
}

.global-footer .ft-brand .ft-logo {
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.global-footer .ft-brand .ft-tag {
  max-width: 240px;
  margin: 14px 0 20px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.72);
}

.global-footer .ft-cta {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 999px;
  background: #ffb703;
  color: #1c2945;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 0.18s ease;
}

.global-footer .ft-cta:hover {
  background: #ffd45a;
}

.global-footer .ft-h4 {
  margin-bottom: 14px;
  color: #ffd45a;
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.global-footer .ft-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-footer .ft-col a {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.15s ease;
}

.global-footer .ft-col a:hover,
.global-footer .ft-legal a:hover {
  color: #fff;
}

.global-footer .ft-sub {
  margin: 16px 0 8px;
  color: rgba(255, 255, 255, 0.38);
  font-family: "Nunito Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.global-footer .ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.global-footer .ft-left,
.global-footer .ft-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.global-footer .ft-copy,
.global-footer .ft-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
}

.global-footer .ft-copy {
  color: rgba(255, 255, 255, 0.5);
}

.global-footer .ft-social {
  display: flex;
  gap: 10px;
}

.global-footer .ft-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.global-footer .ft-social a:hover {
  border-color: #ffd45a;
  color: #fff;
}

.global-footer .ft-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.global-footer .ft-disc {
  padding: 0 0 26px;
  color: rgba(255, 255, 255, 0.34);
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 1000px) {
  .global-footer .ft-top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .global-footer .ft-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .global-footer.ft-wrap {
    padding: 8px 16px 36px;
  }

  .global-footer .ft-top {
    grid-template-columns: 1fr 1fr;
  }

  .global-footer .ft-footer,
  #sec-ctafoot .global-footer .ft-footer {
    padding: 36px 24px 0 !important;
  }

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