/* ===============================
   NEWSLETTER STRIP (Responsive)
=================================*/
.NewsLetterstrip {
  background: linear-gradient(135deg, #ff4e00, #ff4e00);
  padding: 3rem 1.5rem;
  color: #000;
  margin-top: 3rem;
  text-align: center;
}

.NewsLettercontainer {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* LEFT TEXT */
.NewsLetter-Left {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.NewsLetter-HeadingLeft {
  font-size: 2.5rem;
  font-weight: 200;
  margin: 0 0 1rem;
}

.NewsLetter-ParaLeft {
  font-size: 1.2rem;
  opacity: .9;
  margin: 0;
  max-width: 40rem;
}

/* FORM */
.NewsLetter-Form {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-end;
}

.NewsLetter-Email {
  flex: 1;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.NewsLetter-GoldBtn {
  background: #000;
  color: #ff4e00;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  font-size: 1rem;
}
.NewsLetter-GoldBtn:hover {
  background: #ff4e00;
  color: #fff;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 900px) {
  .NewsLettercontainer {
    flex-direction: column;
    text-align: center;
  }
  .NewsLetter-Left {
    text-align: center;
  }
  .NewsLetter-Form {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .NewsLetter-HeadingLeft {
    font-size: 1.8rem;
  }
  .NewsLetter-ParaLeft {
    font-size: 1rem;
  }
  .NewsLetter-Form {
    flex-direction: column;
    gap: 0.6rem;
  }
  .NewsLetter-Email {
    width: 100%;
  }
  .NewsLetter-GoldBtn {
    width: 100%;
  }
}
/* ===== Kill horizontal overflow & clamp rogue widths ===== */
html, body {
  overflow-x: hidden;           /* band-aid to hide any residual overflow */
}

/* Make sure core containers never exceed the viewport */
.container,
.container-meet,
.wrap {
  max-width: min(1200px, 92%);
  margin-inline: auto;
}

/* Any wide grids/rows should never overflow */
.achievements-grid,
.genz-list,
.principles,
.connect-grid,
.footer-grid,
.footer-bottom,
.pete-container,
.timeline,
.NewsLettercontainer {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* HERO (Meet Pete D) – remove hard width from wrapper if present */
.Meethero > div {
  width: auto !important;
  margin: 0 auto !important;
}

/* Footer: remove negative margins that push content outside the viewport */
.site-footer .footer-brand,
footer .footer-brand {
  margin: 0 !important;
}

/* Footer bottom bar: avoid fixed widths that overflow */
footer .footer-bottom {
  width: 100% !important;
}

/* Avoid 100vw traps (if used anywhere); prefer 100% */
[class*="fullwidth"],
.nav,
header,
footer,
section {
  max-width: 100%;
}

/* If any element is using 100vw, force it to respect the viewport */
*[style*="100vw"] {
  width: 100% !important;
  max-width: 100% !important;
}