/**
 * Issue positions for Eagle Action.
 *
 * Each issue represents a policy stance with action-oriented framing.
 * The priority field drives visual weight on the issues page; ctaLabel/ctaLink
 * give every issue a concrete next step for the visitor.
 *
 * Copy supplied by stakeholder (Molly, 2026-05-19). When EFEL brochure
 * copy lands, this is the file to update with deeper position text.
 */

export interface IssueFocus {
  id: string;
  title: string;
  slug: string;
  position: string;
  priority: "high" | "medium" | "watch";
  blurb: string;
  ctaLabel: string;
  ctaLink: string;
}

export const ISSUE_FOCI: IssueFocus[] = [
  {
    id: "issue-women-family",
    title: "Women & the Family",
    slug: "women-and-family",
    position:
      "We support women, defend the family, and reject the cultural narratives that target men, husbands, and fathers.",
    priority: "high",
    blurb:
      "Eagle Action carries on the legacy of our founder, Phyllis Schlafly, opposing feminism and supporting policies that give women the choice to stay home and raise their children, as well as advocating against policies that target young men and undermine masculinity, husbands, and fathers.",
    ctaLabel: "More",
    ctaLink: "/abigail-circles",
  },
  {
    id: "issue-maha-parental-rights",
    title: "MAHA & Parental Rights",
    slug: "maha-parental-rights",
    position:
      "Whole-food eating, root-cause healthcare for women, and transparency in pediatric medicine.",
    priority: "high",
    blurb:
      "Eagle Action seeks to educate and advocate for healthy, whole-food eating for all families; root-cause healthcare for women; and transparency in pediatric medicine so parents can make fully informed decisions with respect to their children's health.",
    ctaLabel: "More",
    ctaLink: "/issues#maha-parental-rights",
  },
  {
    id: "issue-america-first",
    title: "Defending the Middle Class",
    slug: "america-first",
    position:
      "Policies that put Americans first and defend the middle class, the engine of American greatness.",
    priority: "high",
    blurb:
      "Eagle Action supports policies that truly put Americans first and seeks to defend the middle class, the engine of American greatness.",
    ctaLabel: "More",
    ctaLink: "/get-involved",
  },
  {
    id: "issue-sanctity-of-life",
    title: "Sanctity of Life",
    slug: "sanctity-of-life",
    position: "Life is sacred from conception and should be defended.",
    priority: "high",
    blurb:
      "Eagle Action is strongly pro-life and affirms that life is sacred from conception and should be defended. We are focused on the proliferation of mifepristone and abortifacients by mail, in addition to surgical abortions.",
    ctaLabel: "More",
    ctaLink: "/issues#sanctity-of-life",
  },
  {
    id: "issue-ivf-surrogacy",
    title: "IVF, Surrogacy & Infertility",
    slug: "ivf-surrogacy-infertility",
    position:
      "The family is the building block of society; we oppose practices that commodify children.",
    priority: "high",
    blurb:
      "The family is the building block of a strong society and a strong nation, and we seek to support it. Eagle Action is opposed to IVF and surrogacy, which commodify children and are contrary to human dignity. We support and advocate for greater attention to the rise in infertility, including promoting cheaper, more successful alternative therapies to help women conceive healthy children naturally.",
    ctaLabel: "More",
    ctaLink: "/issues#ivf-surrogacy-infertility",
  },
  {
    id: "issue-courts-constitution",
    title: "Courts & the Constitution",
    slug: "courts-and-constitution",
    position:
      "Defend the Constitution as written; advocate for originalist judges; uphold the rule of law.",
    priority: "high",
    blurb:
      "Eagle Action defends the Constitution as written, advocates for originalist judges, and works to ensure our courts uphold the rule of law and the rights of every American citizen.",
    ctaLabel: "More",
    ctaLink: "/issues#courts-and-constitution",
  },
];

export const ISSUE_SLIDES = ISSUE_FOCI.map((issue) => ({
  ...issue,
  teaser: issue.blurb.slice(0, 118) + "…",
}));
