/* Prevent horizontal overflow from full-bleed tricks */
html, body {
  overflow-x: hidden;
}

/* Footer / spacing */
.footer {
  padding-bottom: 0 !important;
  display: flex;
  justify-content: space-between;
}
.footer-inner {
  margin-bottom: 12px !important; /* desired gap ~10–12px */
}

/* Full-bleed sub-footer — avoid 100vw overflow by using translate */
.sub-footer {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;        /* visually full-bleed */
  max-width: 100vw;    /* avoid exceeding viewport */
  box-sizing: border-box;
  background: #ef106a !important;
  color: #fff !important;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: none !important;
  border-bottom: none !important;
}

/* inner constrained container */
.sub-footer .sub-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .sub-footer .sub-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* remove any pseudo-elements that could create extra bands */
.sub-footer::before,
.sub-footer::after,
.footer::before,
.footer::after {
  display: none !important;
}
