/* RESET */
body, ul, li, a, h1, h2, h3, h4, h5, h6, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

/* === HEADER CONTAINER === */
.header-campaign {
  background: white;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
}

.header-logo img {
  max-height: 72px;
}

/* === DESKTOP NAV === */
.nav-desktop {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-desktop a {
  color: black;
  font-weight: normal;
  font-size: 16px;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: #f93c0d;
}

.nav-desktop a.active {
  color: #f93c0d;
}

/* === DESKTOP CTA BUTTON === */
.header-cta a {
  background-color: #f93c0d;
  color: white;
  padding: 12px 22px;
  font-size: 16px;
  border: none;
  transition: background 0.2s ease;
}

.header-cta a:hover {
  background-color: #64b733;
}

/* === MOBILE === */
.menu-toggle {
  background: none;
  border: none;
  font-size: 32px;
  display: none;
  color: black;
  cursor: pointer;
}

/* === MOBILE CTA (ALWAYS VISIBLE) === */
.mobile-cta-bar {
  background-color: #f93c0d;
  text-align: center;
  display: none;
}

.mobile-cta-bar a {
  color: white;
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding: 16px 0;
  transition: background 0.2s ease;
}
/* === MOBILE NAV DROPDOWN === */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #f93c0d;
  padding: 12px 0 20px;
  text-align: center;
  position: absolute;
  top: 112px; /* header (64px) + button (48px) */
  left: 0;
  width: 100%;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0;
  transition: color 0.2s ease;
}
/* === RESPONSIVE RULES === */
@media screen and (max-width: 768px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-cta-bar {
    display: block;
  }
}






/* ==== LEGAL PAGE STYLING ==== */
.legal-wrapper {
  padding: 80px 20px 80px; /* Equal top and bottom */
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.legal-container {
  max-width: 960px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.legal-block h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.legal-block p {
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 20px;
}

.legal-block p em {
  color: #555;
}

.legal-block a {
  color: #f93c0d;
  text-decoration: underline;
}

.legal-block a:hover {
  color: #64b733;
}

.legal-block strong {
  font-weight: bold;
  color: #000;
}

/* Bulleted points inside paragraphs */
.legal-block p br + br {
  line-height: 0.5;
}

.legal-block p::marker,
.legal-block ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.legal-block ul {
  list-style-type: disc;
  margin-top: -10px;
  padding-left: 40px;
}

.legal-block ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-block {
    padding: 30px 20px;
  }

  .legal-block h3 {
    font-size: 24px;
  }

  .legal-block p {
    font-size: 15px;
  }
}





  .hero-static {
    position: relative;
    min-height: 685px;
    overflow: hidden;
  }
  .hero-static .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/h3-slide1.jpg"); /* update path if needed */
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    transform: translateZ(0);
  }
  .hero-static::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0,0,0,.35), rgba(0,0,0,.15));
  }
  .hero-static .hero-content {
    position: relative;
    z-index: 2;
    min-height: 685px;
    display: flex;
    align-items: center;
  }
  .hero-static .hero-copy {
    margin-left: 120px; /* offset to the left, similar to original */
    max-width: 640px;
    color: #fff;
  }
  .hero-static h1 {
    margin: 0 0 16px;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
  }
  .hero-static p {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    opacity: .95;
  }
  .hero-static .cta {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 4px;
    background: #f93c0d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease;
  }
  .hero-static .cta:hover {
    background: #28a745; /* green hover */
    color: #fff;
  }

  /* fade-in on load */
  .hero-fade {
    opacity: 0;
    animation: heroFade .6s ease-out .1s forwards;
  }
  @keyframes heroFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-fade { animation: none; opacity: 1; }
  }

  /* Mobile tweaks */
  @media (max-width: 991.98px) {
    .hero-static .hero-copy { margin-left: 60px; }
    .hero-static h1 { font-size: 40px; }
  }
  @media (max-width: 767.98px) {
    .hero-static,
    .hero-static .hero-content { min-height: 520px; }
    .hero-static .hero-copy { margin-left: 20px; margin-right: 20px; }
    .hero-static h1 { font-size: 30px; }
    .hero-static p { font-size: 15px; }
  }




  /* =========================
   Layout + Gutters
   ========================= */
.equal-cols {
  display: flex;
  flex-wrap: wrap;
  /* add horizontal spacing between L / M / R */
  margin-left: -16px;
  margin-right: -16px;
}
.equal-cols > [class*="col-"] {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  padding-right: 16px;
}

/* tiny gap between the list and the Trump card */
.trump-card { margin-top: 12px; }

/* =========================
   Center card: footer pinned
   ========================= */
.equal-fill.event-post {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.equal-fill.event-post .event-post-txt { flex: 1 1 auto; }
.equal-fill.event-post .event-post-loc { margin-top: auto; }

/* =========================
   Instagram card
   ========================= */
/* make the IG box look like a card and keep it centered vertically */
.equal-cols > .col-md-4:last-child {
  display: flex;
  align-items: center;   /* vertical centering */
  justify-content: center;
}

.insta-box-2x3 {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;   /* keep your 2x3 proportion */
  max-width: 420px;      /* optional: prevents it from dwarfing neighbors on xl screens */
  border-radius: 6px;
  background: #f5f5f5;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);  /* match card feel */
  overflow: hidden;
}

/* fallback if aspect-ratio unsupported */
@supports not (aspect-ratio: 1/1) {
  .insta-box-2x3::before { content:""; display:block; padding-bottom:150%; }
}

.insta-box-2x3 iframe {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important; border: 0;
}

/* =========================
   Title spacing tidy-up
   ========================= */
.title-style-2.text-center h2 {
  margin-bottom: 18px;    /* a touch more breathing room */
}

/* =========================
   Mobile stack spacing
   ========================= */
@media (max-width: 767.98px) {
  .latest-updates,
  .equal-fill.event-post,
  .insta-box-2x3 { margin-bottom: 24px; }

  /* reduce side padding a bit on small screens for balance */
  .equal-cols { margin-left: -12px; margin-right: -12px; }
  .equal-cols > [class*="col-"] { padding-left: 12px; padding-right: 12px; }
}




/* ===== News Grid (this page only) – equal-height cards ===== */

/* Only flex the FIRST row of cards so pagination/layout below stays normal */
.news-wrapper.news-grid .container > .row:first-child {
  display: flex;
  flex-wrap: wrap;
}

/* Let each column stretch the full card height */
.news-wrapper.news-grid .container > .row:first-child > .col-md-4.col-sm-6 {
  display: flex;
  margin-bottom: 30px;              /* vertical gap between rows */
}

/* Card becomes a vertical flex box */
.news-wrapper.news-grid .news-post {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* Text wrapper fills available space so meta can pin to bottom */
.news-wrapper.news-grid .news-post-txt {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* Description: grows but clamps, preventing big white wells */
.news-wrapper.news-grid .news-post-txt p {
  flex: 1 1 auto;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;            /* adjust to 2–4 if you prefer */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta row stays aligned at the bottom across all cards */
.news-wrapper.news-grid .news-post-txt .news-meta {
  margin-top: auto;
}

/* Small screens: a touch more copy is ok */
@media (max-width: 767.98px) {
  .news-wrapper.news-grid .container > .row:first-child > .col-md-4.col-sm-6 {
    margin-bottom: 24px;
  }
  .news-wrapper.news-grid .news-post-txt p {
    -webkit-line-clamp: 4;
  }
}
/* Remove the Share button + menu on this page's cards */
.news-wrapper.news-grid .share-post,
.news-wrapper.news-grid .share-post .dropdown-menu {
  display: none !important;
  visibility: hidden !important;
}

/* Optional: tighten spacing where the share button sat */
.news-wrapper.news-grid .news-post-txt h5 {
  margin-top: 6px; /* adjust or delete if not needed */
}