/* =========================
   WHERE I STAND (Policies Header Section)
   ========================= */

#where-i-stand {
  background-color: var(--red);
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  column-gap: 1rem;
}

/* Text column */
.where-i-stand-text {
  padding: 1rem;
  margin: 0 auto;
}

/* Headline container: keep inside column */
#where-i-stand .where-i-stand-title {
  max-width: 100%;
  margin-bottom: 2rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

/* Two-line tagline spans:
   <span class="tagline-line gold">SERVICE STRENGTH SECURITY</span>
   <span class="tagline-line">CENTRAL FLORIDA FAMILIES FIRST</span>
*/
#where-i-stand .where-i-stand-title .tagline-line {
  display: block;          /* each phrase on its own line */
  max-width: 100%;
  white-space: normal;     /* allow wrapping so it stays in the column */
  overflow-wrap: anywhere; /* extra safety for narrow widths */
  line-height: 1.02;
}
/* Center the two tagline lines only */
#where-i-stand .where-i-stand-title {
  text-align: center;
}
/* Line 1: SERVICE STRENGTH SECURITY (bigger) */
#where-i-stand .where-i-stand-title .tagline-line:first-child {
  font-size: clamp(1.9rem, 2.1vw, 2.55rem);
}
/* Keep line 1 centered and prevent overflow */
#where-i-stand .where-i-stand-title .tagline-line:first-child{
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .55rem;
}

/* Dark-blue star */
#where-i-stand .where-i-stand-title .tagline-sep{
  color: var(--blue);
  font-size: 0.9em;
  line-height: 1;
}
/* Line 2: CENTRAL FLORIDA FAMILIES FIRST (smaller) */
#where-i-stand .where-i-stand-title .tagline-line:nth-child(2) {
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  margin-top: 0.35rem;
}

/* If you still use the older “kicker + district” pattern elsewhere,
   keep these as a fallback */
#where-i-stand .where-i-stand-kicker {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(1.3rem, 2.0vw, 2.3rem);
  line-height: 1.05;
}

#where-i-stand .where-i-stand-district {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(1.05rem, 1.5vw, 1.6rem);
  line-height: 1.1;
}

/* Media column */
.where-i-stand-media img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1320px) {
  #where-i-stand {
    column-gap: 1rem;
  }
}

@media (max-width: 1024px) {
  #where-i-stand {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 896px) {
  #where-i-stand {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .where-i-stand-text {
    padding: 2rem 1rem;
    text-align: center;
  }

  .where-i-stand-media {
    grid-row: 1 / 2;
  }

  .where-i-stand-media img {
    max-width: 320px;
  }
}

/* =========================
   ISSUES (Policies cards)
   ========================= */

#issues .legal-section {
  background: var(--dark-blue);   /* campaign red */
  color: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.25rem;
  margin: 0 0 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Make sure headings + text are readable on red */
#issues .legal-section h2,
#issues .legal-section p {
  color: #fff;
}

/* Optional: tighten spacing */
#issues .legal-section h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

#issues .legal-section p {
  margin: 0;
}
#where-i-stand .where-i-stand-title .tagline-line.gold{
  color: var(--blue);
}