/*
Theme Name: JC42 Centered Theme V3
Version: 3.4
*/

/* =========================
   COLORS
========================= */
:root {
  --jc42-blue: #13216a;
  --jc42-gold: #fdb827;
  --jc42-white: #ffffff;
  --jc42-light: #f4f6fa;
  --jc42-text: #1f2937;
  --jc42-border: #e5e7eb;
}

/* =========================
   GLOBAL
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  background: var(--jc42-white);
  border-bottom: 3px solid var(--jc42-gold);
  z-index: 9999;
  transition: all 0.3s ease;
}

.header-inner {
  position: relative;
  padding-top: 18px;
  padding-bottom: 12px;
}

/* =========================
   FLOATING CENTER LOGO
========================= */
.site-branding {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -60%);
  z-index: 30;
  pointer-events: none;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-logo-link {
  display: block !important;
  pointer-events: auto;
}

.custom-logo {
  max-height: 140px;
  width: auto;
  display: block;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

/* =========================
   NAVIGATION
   8 items: 4 left / logo gap / 4 right
========================= */
.main-navigation {
  width: 100%;
  margin-top: 24px;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 180px 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 0;
}

/* left side */
.primary-menu > li:nth-child(1) { grid-column: 1; }
.primary-menu > li:nth-child(2) { grid-column: 2; }
.primary-menu > li:nth-child(3) { grid-column: 3; }
.primary-menu > li:nth-child(4) { grid-column: 4; }

/* right side */
.primary-menu > li:nth-child(5) { grid-column: 6; }
.primary-menu > li:nth-child(6) { grid-column: 7; }
.primary-menu > li:nth-child(7) { grid-column: 8; }
.primary-menu > li:nth-child(8) { grid-column: 9; }

.primary-menu > li {
  text-align: center;
}

.primary-menu a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: var(--jc42-blue);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 8px 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover keeps blue color (4.5:1+ contrast) and adds a gold underline accent.
   The previous gold-on-white hover failed WCAG AA contrast (~1.93:1). */
.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--jc42-blue);
  transform: translateY(-1px);
  text-decoration: underline;
  text-decoration-color: var(--jc42-gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

/* =========================
   SHRINK ON SCROLL
========================= */
.site-header.is-scrolled .header-inner {
  padding-top: 10px;
  padding-bottom: 8px;
}

.site-header.is-scrolled .site-branding {
  transform: translate(-50%, -30%);
}

.site-header.is-scrolled .custom-logo {
  max-height: 82px;
}

.site-header.is-scrolled .primary-menu {
  grid-template-columns: 1fr 1fr 1fr 1fr 110px 1fr 1fr 1fr 1fr;
}

.site-header.is-scrolled .primary-menu a {
  font-size: 13px;
  padding: 6px 4px;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 520px;
  background: linear-gradient(
      rgba(19, 33, 106, 0.85),
      rgba(19, 33, 106, 0.85)
    ),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  color: var(--jc42-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin: 0 0 16px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 24px;
}

/* =========================
   BUTTONS
========================= */
.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  background: var(--jc42-blue);
  color: var(--jc42-white);
}

.button-primary:hover {
  background: var(--jc42-gold);
  color: var(--jc42-blue);
}

.button-secondary {
  background: var(--jc42-gold);
  color: var(--jc42-blue);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--jc42-light);
}

.section-title {
  text-align: center;
  color: var(--jc42-blue);
  font-size: 32px;
  margin-bottom: 10px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--jc42-gold);
  margin: 10px auto 0;
}

/* =========================
   DESKTOP DROPDOWNS
========================= */
@media (min-width: 981px) {
  .primary-menu > li {
    position: relative;
  }

  .primary-menu .sub-menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 240px;
    background: #fff;
    border-top: 3px solid var(--jc42-gold);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
  }

  .primary-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .primary-menu .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    list-style: none;
  }

  .primary-menu .sub-menu a {
    display: block;
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
    color: var(--jc42-blue);
    white-space: normal;
  }

  .primary-menu .sub-menu a:hover {
    background: var(--jc42-light);
    color: var(--jc42-blue);
  }

  .primary-menu .sub-menu,
  .primary-menu .sub-menu li {
    list-style: none;
  }
}

/* =========================
   MOBILE MENU BUTTON
========================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--jc42-blue);
  font-size: 22px;
  font-weight: 700;
  padding: 8px 0;
  cursor: pointer;
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 980px) {

  .main-navigation {
    position: static;
    width: 100%;
    margin-top: 0;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 10003;
  }

  .primary-menu {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: min(92vw, 420px);
    height: 100vh;
    background: #ffffff;
    padding: 130px 24px 30px;
    margin: 0 !important;
    list-style: none !important;
    overflow-y: auto;
    z-index: 10002;
    box-shadow: 10px 0 30px rgba(0,0,0,0.18);
    transition: left 0.3s ease;
    gap: 0 !important;
    grid-template-columns: none !important;
    pointer-events: auto;
  }

  .primary-menu.active {
    left: 0;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.20);
    z-index: 10001;
    pointer-events: none;
  }

  .primary-menu > li {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
    padding: 0;
    text-align: left;
    position: relative;
    list-style: none !important;
  }

  .primary-menu > li > a {
    display: block;
    width: 100%;
    padding: 20px 0;
    color: var(--jc42-blue);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    z-index: 2;
  }

  .primary-menu > li.menu-item-has-children > a::after {
    content: "+";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--jc42-blue);
  }

  .primary-menu > li.submenu-open > a::after {
    content: "−";
  }

  .primary-menu .sub-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-top: none !important;
    background: #ffffff;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 0 8px 0 !important;
    list-style: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: block !important;
  }

  .primary-menu li.submenu-open > .sub-menu {
    max-height: 500px;
  }

  .primary-menu .sub-menu li {
    border: none;
    list-style: none !important;
  }

  .primary-menu .sub-menu a {
    display: block;
    padding: 12px 0 12px 18px;
    color: var(--jc42-blue);
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    text-align: left;
    text-decoration: none;
  }

  .primary-menu .sub-menu a:hover {
    color: var(--jc42-gold);
  }

  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    min-height: 92px;
  }

  .site-branding {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -20%);
    margin: 0;
    pointer-events: none;
    z-index: 10000;
  }

  .custom-logo-link {
    pointer-events: none !important;
  }

  .custom-logo {
    max-height: 95px;
  }

  .site-header.is-scrolled .custom-logo {
    max-height: 68px;
  }

  .hero {
    padding-top: 110px;
  }
}


/* =========================
   TYPOGRAPHY (v3.4)
========================= */
body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.page-hero h1,
.hero h1,
.site-footer-heading {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.entry-content {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 18px;
}

/* If a page sets <body class="wide"> or you wrap content in
   <div class="entry-content-wide"> the text will use the full
   container (good for landing pages with side-by-side imagery). */
.wide .entry-content,
.entry-content-wide,
.entry-content.is-wide {
  max-width: 1280px;
}

/* Single news posts and blog entries stay at the comfortable
   60–75-character reading width (820px). */
.single .entry-content,
.single-post .entry-content {
  max-width: 820px;
}

.entry-content h2 {
  color: var(--jc42-blue);
  font-size: 28px;
  margin-top: 1.6em;
  border-bottom: 3px solid var(--jc42-gold);
  padding-bottom: 0.3em;
}

.entry-content h3 {
  color: var(--jc42-blue);
  font-size: 22px;
  margin-top: 1.4em;
}

/* Inline text links inside content are underlined for ADA contrast.
   Buttons (a.button) are excluded — the button shape itself already
   signals clickability, so underlines on them are visual clutter. */
.entry-content a:not(.button):not(.wp-block-button__link) {
  color: var(--jc42-blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.entry-content a:not(.button):not(.wp-block-button__link):hover,
.entry-content a:not(.button):not(.wp-block-button__link):focus-visible {
  color: #0a1750;
  text-decoration-color: var(--jc42-gold);
}

/* Override: no underline by default on phone/email links in custom sections.
   Underline only appears on hover for better readability and ADA compliance. */
.entry-content .jc42-contact-block a,
.entry-content .jc42-retirees-phone,
.entry-content .jc42-retirees-office-row a,
.entry-content .jc42-local-info a,
.entry-content .jc42-locals-page a,
.entry-content .site-footer a {
  text-decoration: none !important;
}

.entry-content .jc42-contact-block a:hover,
.entry-content .jc42-contact-block a:focus-visible,
.entry-content .jc42-retirees-phone:hover,
.entry-content .jc42-retirees-phone:focus-visible,
.entry-content .jc42-retirees-office-row a:hover,
.entry-content .jc42-retirees-office-row a:focus-visible,
.entry-content .jc42-local-info a:hover,
.entry-content .jc42-local-info a:focus-visible {
  text-decoration: underline !important;
  text-decoration-color: var(--jc42-gold) !important;
  text-decoration-thickness: 2px !important;
}

/* Make absolutely sure buttons never get underlined, anywhere. */
.button,
.wp-block-button__link,
a.button,
a.wp-block-button__link {
  text-decoration: none !important;
}

.button:hover,
.wp-block-button__link:hover,
a.button:hover,
a.wp-block-button__link:hover {
  text-decoration: none !important;
}

/* =========================
   MODERN BUTTONS (v3.5)
   Unified gold-pill style for theme .button AND core
   .wp-block-button__link so every button on the site matches.
========================= */
.button,
.wp-block-button__link,
a.button,
a.wp-block-button__link,
.wp-block-button > a {
  /* inline-flex forces true vertical centering of the label
     regardless of parent wrapper — fixes the "text sits low"
     issue on bare <a class="button"> outside of WP block wrappers. */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffd148 0%, var(--jc42-gold) 60%, #e0a000 100%);
  color: var(--jc42-blue) !important;
  border: 2px solid var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 14px 34px;
  min-width: 170px;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(19, 33, 106, 0.18),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.18s ease,
              box-shadow 0.2s ease,
              background 0.2s ease,
              color 0.2s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
a.button:hover,
a.button:focus-visible,
a.wp-block-button__link:hover,
a.wp-block-button__link:focus-visible,
.wp-block-button > a:hover,
.wp-block-button > a:focus-visible {
  background: linear-gradient(180deg, #1a2d8a 0%, var(--jc42-blue) 100%);
  color: var(--jc42-gold) !important;
  border-color: var(--jc42-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(19, 33, 106, 0.30),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button:active,
.wp-block-button__link:active,
a.button:active,
a.wp-block-button__link:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(19, 33, 106, 0.20);
}

/* Variant: navy primary button (use class="button-primary" when
   you want a navy button on a light background — e.g. CTAs that
   need to differ from the default gold).
   Selectors stacked so this always beats the base gold rule. */
.button.button-primary,
a.button.button-primary,
.wp-block-button__link.button-primary,
a.wp-block-button__link.button-primary {
  background: linear-gradient(180deg, #1a2d8a 0%, var(--jc42-blue) 100%) !important;
  color: var(--jc42-white) !important;
  border-color: var(--jc42-blue) !important;
}

.button.button-primary:hover,
.button.button-primary:focus-visible,
a.button.button-primary:hover,
.wp-block-button__link.button-primary:hover {
  background: linear-gradient(180deg, #ffd148 0%, var(--jc42-gold) 100%) !important;
  color: var(--jc42-blue) !important;
  border-color: var(--jc42-blue) !important;
}

/* Variant: outline-only ghost button for use over busy backgrounds */
.button-ghost,
.wp-block-button.is-style-outline > a {
  background: transparent !important;
  color: var(--jc42-blue) !important;
  border: 2px solid var(--jc42-blue);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible,
.wp-block-button.is-style-outline > a:hover,
.wp-block-button.is-style-outline > a:focus-visible {
  background: var(--jc42-blue) !important;
  color: var(--jc42-gold) !important;
}

/* When a ghost button is inside a dark navy section (hero,
   callout band, pullquote), invert to white border + white text
   so it's visible against the navy. */
.home-hero .button-ghost,
.home-hero .wp-block-button.is-style-outline > a,
.home-callout .button-ghost,
.home-callout .wp-block-button.is-style-outline > a,
.board-pullquote-hero .button-ghost,
.board-pullquote-hero .wp-block-button.is-style-outline > a {
  background: transparent !important;
  color: var(--jc42-white) !important;
  border-color: var(--jc42-white) !important;
}

.home-hero .button-ghost:hover,
.home-hero .wp-block-button.is-style-outline > a:hover,
.home-callout .button-ghost:hover,
.home-callout .wp-block-button.is-style-outline > a:hover {
  background: var(--jc42-gold) !important;
  color: var(--jc42-blue) !important;
  border-color: var(--jc42-gold) !important;
}

/* Smaller, tidier on very narrow phones */
@media (max-width: 380px) {
  .button,
  .wp-block-button__link,
  a.button,
  a.wp-block-button__link,
  .wp-block-button > a {
    padding: 12px 26px;
    min-width: 150px;
    font-size: 14px;
  }
}

/* =========================
   ACCESSIBILITY UTILITIES (v3.4)
========================= */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--jc42-gold);
  color: var(--jc42-blue);
  border-radius: 4px;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  display: block;
  font-weight: 700;
  height: auto;
  left: 12px;
  padding: 12px 18px;
  text-decoration: none;
  top: 12px;
  width: auto;
  z-index: 100000;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

/* =========================
   FOCUS STATES (v3.4)
========================= */
a:focus-visible,
button:focus-visible,
.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--jc42-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Make sure default focus isn't lost on browsers that don't yet support
   :focus-visible — fall back to :focus. */
a:focus,
button:focus,
.button:focus {
  outline: 3px solid var(--jc42-gold);
  outline-offset: 3px;
}

/* When using the keyboard skip link, target the main element */
#main-content:focus {
  outline: none;
}

/* =========================
   MOBILE MENU TOGGLE (v3.4)
========================= */
.menu-toggle .menu-toggle-icon {
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.menu-toggle .menu-toggle-label {
  margin-left: 6px;
  font-size: 16px;
  vertical-align: middle;
}

/* =========================
   PAGE HERO POLISH (v3.4)
========================= */
.page-hero {
  position: relative;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero.no-image {
  background: linear-gradient(135deg, #13216a 0%, #0a1750 100%);
}

.hero-overlay {
  min-height: 260px;
  background: linear-gradient(180deg, rgba(19,33,106,0.72) 0%, rgba(19,33,106,0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .hero-content {
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.page-hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--jc42-gold);
  margin: 14px auto 0;
}

.post-meta {
  margin-top: 14px;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* =========================
   POST LIST / CARDS (v3.4)
========================= */
.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin: 40px 0;
}

.post-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover,
.post-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}

.post-card-thumb img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-title {
  font-size: 20px;
  margin: 0 0 8px;
  line-height: 1.25;
}

.post-card-title a {
  color: var(--jc42-blue);
  text-decoration: none;
}

.post-card-title a:hover,
.post-card-title a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jc42-gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.post-card-meta {
  font-size: 13px;
  color: #5a6473;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.post-card-excerpt {
  flex: 1;
  margin-bottom: 14px;
}

.pagination {
  margin: 40px 0 60px;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border: 2px solid var(--jc42-border);
  border-radius: 6px;
  color: var(--jc42-blue);
  text-decoration: none;
  font-weight: 600;
}

.pagination .page-numbers:hover,
.pagination .page-numbers:focus-visible {
  border-color: var(--jc42-gold);
  background: var(--jc42-light);
}

.pagination .page-numbers.current {
  background: var(--jc42-blue);
  color: var(--jc42-white);
  border-color: var(--jc42-blue);
}

/* =========================
   POST NAV (v3.4)
========================= */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0 60px;
  padding-top: 24px;
  border-top: 2px solid var(--jc42-border);
  flex-wrap: wrap;
}

.post-navigation a {
  color: var(--jc42-blue);
  text-decoration: none;
  font-weight: 600;
}

.post-navigation a:hover,
.post-navigation a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jc42-gold);
}

/* =========================
   404 (v3.4)
========================= */
.error-404 {
  max-width: 680px;
  margin: 60px auto 80px;
  text-align: center;
}

.error-404-lead {
  font-size: 20px;
  margin-bottom: 28px;
}

/* =========================
   SEARCH FORM (v3.4)
========================= */
.search-form {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 20px auto;
}

.search-field {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid var(--jc42-border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-family: inherit;
}

.search-field:focus {
  outline: none;
  border-color: var(--jc42-blue);
}

.search-submit {
  border-radius: 0 6px 6px 0;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

/* =========================
   FOOTER (v3.4)
========================= */
.site-footer {
  background: linear-gradient(135deg, #13216a 0%, #0a1750 100%);
  color: var(--jc42-white);
  padding: 50px 0 0;
  text-align: left;
  margin-top: 60px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.site-footer-heading {
  color: var(--jc42-gold);
  font-size: 18px;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer a {
  color: var(--jc42-white);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--jc42-gold);
  text-decoration: underline;
}

.site-footer-tagline {
  margin: 14px 0 0;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 360px;
}

.site-footer-logo .custom-logo {
  max-height: 80px;
  width: auto;
  filter: brightness(1.2);
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.site-footer address {
  font-style: normal;
  line-height: 1.6;
}

.site-footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 760px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================
   ENDORSEMENTS PAGE (v3.9)
   Used on /political-action/endorsements/
========================= */
.jc42-endorsements {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 0;
  color: var(--jc42-text);
}

.jc42-endorsements .jc42-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 17px;
  line-height: 1.65;
}

/* Jump-to-state nav */
.jc42-endorsements .jc42-state-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.jc42-endorsements .jc42-state-jump li { margin: 0; }

.jc42-endorsements .jc42-state-jump a {
  display: inline-block;
  padding: 10px 26px;
  background: linear-gradient(180deg, #1a2d8a 0%, var(--jc42-blue) 100%);
  color: var(--jc42-white) !important;
  text-decoration: none !important;
  border-radius: 999px;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--jc42-blue);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.jc42-endorsements .jc42-state-jump a:hover,
.jc42-endorsements .jc42-state-jump a:focus-visible {
  background: linear-gradient(180deg, #ffd148 0%, var(--jc42-gold) 100%);
  color: var(--jc42-blue) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(19, 33, 106, 0.22);
}

/* State section */
.jc42-endorsements .jc42-state {
  margin: 52px 0;
  scroll-margin-top: 130px;
}

.jc42-endorsements .jc42-state h2 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 600;
  color: var(--jc42-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border: none;
  position: relative;
}

.jc42-endorsements .jc42-state h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: var(--jc42-gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Election-date callout */
.jc42-endorsements .jc42-election-box {
  background: linear-gradient(135deg, #ffd148 0%, var(--jc42-gold) 100%);
  color: var(--jc42-blue);
  border-left: 8px solid var(--jc42-blue);
  padding: 20px 26px;
  border-radius: 12px;
  margin: 0 0 26px;
  box-shadow: 0 4px 14px rgba(19, 33, 106, 0.14);
  text-align: center;
}

.jc42-endorsements .jc42-election-box .jc42-election-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 6px;
}

.jc42-endorsements .jc42-election-box strong {
  display: block;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(23px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

/* Card grid */
.jc42-endorsements .jc42-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.jc42-endorsements .jc42-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 12px;
  padding: 24px 24px 16px;
  box-shadow: 0 2px 10px rgba(19, 33, 106, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-top-color 0.22s ease;
}

.jc42-endorsements .jc42-card:hover,
.jc42-endorsements .jc42-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(19, 33, 106, 0.14);
  border-top-color: var(--jc42-blue);
}

.jc42-endorsements .jc42-card h3 {
  margin: 0 0 8px;
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  border-bottom: 2px solid var(--jc42-gold);
  padding: 0 0 10px;
}

.jc42-endorsements .jc42-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jc42-endorsements .jc42-card li {
  padding: 11px 0 11px 16px;
  border-bottom: 1px solid var(--jc42-border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jc42-endorsements .jc42-card li:last-child {
  border-bottom: none;
}

/* Gold tick bar on the left of each endorsement */
.jc42-endorsements .jc42-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 2px;
  background: var(--jc42-gold);
}

/* Small muted office label */
.jc42-endorsements .jc42-office {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #5a6473;
}

/* Big bold candidate name — the star of each row */
.jc42-endorsements .jc42-candidate {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--jc42-blue);
  line-height: 1.2;
}

/* "No endorsement" — muted so it doesn't compete with real names */
.jc42-endorsements .jc42-candidate.is-none {
  color: #9aa3b2;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
}

/* Secondary note under a candidate (e.g. "Local 14 member") */
.jc42-endorsements .jc42-candidate-extra {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #5a6473;
}

/* Party badges */
.jc42-endorsements .jc42-party {
  display: inline-block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.05em;
  vertical-align: 2px;
}

.jc42-endorsements .jc42-party.is-d {
  background: #1a3aa0;
  color: #fff;
}

.jc42-endorsements .jc42-party.is-np {
  background: #e5e7eb;
  color: #4b5563;
}

.jc42-endorsements .jc42-note {
  font-size: 14px;
  color: #5a6473;
  margin-top: 16px;
  font-style: italic;
}

@media (max-width: 600px) {
  .jc42-endorsements .jc42-card { padding: 20px 18px 14px; }
}

/* =========================
   WORDPRESS IMAGE ALIGNMENT (v3.4)
   Required for alignright / alignleft / aligncenter to work as
   WordPress core expects.
========================= */
.alignright,
figure.alignright,
.entry-content .alignright {
  float: right;
  margin: 0.5em 0 1em 1.5em;
  max-width: 50%;
  height: auto;
}

.alignleft,
figure.alignleft,
.entry-content .alignleft {
  float: left;
  margin: 0.5em 1.5em 1em 0;
  max-width: 50%;
  height: auto;
}

.aligncenter,
figure.aligncenter,
.entry-content .aligncenter {
  display: block;
  margin: 1.5em auto;
  text-align: center;
}

.alignnone,
.entry-content .alignnone {
  display: block;
  margin: 1em 0;
  height: auto;
}

.entry-content img {
  height: auto;
  border-radius: 6px;
}

.entry-content figure {
  margin: 1em 0;
}

.entry-content figure img {
  display: block;
  margin: 0 auto;
}

.entry-content figcaption,
.wp-caption-text {
  font-size: 14px;
  color: #5a6473;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* Clearfix so floated images don't escape their container */
.entry-content::after {
  content: "";
  display: block;
  clear: both;
}

/* On phones, drop the float so images stack above the text */
@media (max-width: 600px) {
  .alignright,
  .alignleft,
  figure.alignright,
  figure.alignleft,
  .entry-content .alignright,
  .entry-content .alignleft {
    float: none;
    display: block;
    margin: 1em auto;
    max-width: 100%;
  }
}

/* =========================
   BLOCKQUOTES (v3.4)
========================= */
.entry-content blockquote {
  margin: 1.5em 0;
  padding: 18px 24px;
  border-left: 5px solid var(--jc42-gold);
  background: var(--jc42-light);
  border-radius: 0 8px 8px 0;
  font-size: 1.05em;
}

.entry-content blockquote p {
  margin: 0 0 8px;
  font-style: italic;
}

.entry-content blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--jc42-blue);
  font-size: 0.95em;
}

/* =========================
   HORIZONTAL RULES (v3.4)
========================= */
.entry-content hr {
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--jc42-gold), transparent);
  margin: 2em 0;
}

/* =========================
   TRADE DIVISIONS GRID (v3.5)
   Used on /trade-divisions-and-conferences/
========================= */
.trade-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--jc42-text);
}

.trade-divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0 60px;
}

.trade-division-card {
  position: relative;
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 12px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(19, 33, 106, 0.07);
  transition: transform 0.22s ease,
              box-shadow 0.22s ease,
              border-color 0.22s ease;
}

.trade-division-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--jc42-gold) 0%, #ffd148 50%, var(--jc42-gold) 100%);
  border-radius: 12px 12px 0 0;
  transition: background 0.22s ease;
}

.trade-division-card:hover,
.trade-division-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(19, 33, 106, 0.16);
  border-color: var(--jc42-blue);
}

.trade-division-card:hover::before,
.trade-division-card:focus-within::before {
  background: linear-gradient(90deg, var(--jc42-blue) 0%, #1a2d8a 50%, var(--jc42-blue) 100%);
}

.trade-division-card h3 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 4px 0 14px;
  padding: 0;
  border: none;
  line-height: 1.2;
  text-transform: uppercase;
}

.trade-division-card p {
  flex: 1;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--jc42-text);
}

/* The button inside a card is a touch smaller so it doesn't dominate */
.trade-division-card .wp-block-button__link,
.trade-division-card .button,
.trade-division-card a.wp-block-button__link {
  align-self: flex-start;
  min-width: 0;
  padding: 11px 26px;
  font-size: 13px;
}

@media (max-width: 600px) {
  .trade-divisions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trade-division-card {
    padding: 22px 20px 24px;
  }
}

/* =========================
   BOARD & STAFF (v3.5)
   Used on /board-and-staff/
========================= */
.board-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--jc42-text);
  letter-spacing: 0.02em;
}

.board-section-heading {
  text-align: center;
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 60px 0 24px;
  padding-bottom: 14px;
  position: relative;
}

.board-section-heading::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: var(--jc42-gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin: 30px 0 40px;
}

.board-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(19, 33, 106, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.board-card:hover,
.board-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(19, 33, 106, 0.18);
}

.board-card-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--jc42-light) 0%, #e7eaf3 100%);
  position: relative;
  display: block;
}

/* Force-fill — !important needed to defeat the .entry-content img
   { height: auto } rule from the WordPress image-alignment section,
   plus the inline width/height attributes WordPress adds. */
.board-card-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center top;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  transition: transform 0.4s ease;
}

.board-card:hover .board-card-photo img {
  transform: scale(1.05);
}

.board-card-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--jc42-gold) 0%, #ffd148 50%, var(--jc42-gold) 100%);
  transition: background 0.3s ease;
}

.board-card:hover .board-card-photo::after {
  background: linear-gradient(90deg, var(--jc42-blue) 0%, #1a2d8a 50%, var(--jc42-blue) 100%);
}

.board-card-info {
  padding: 16px 14px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.board-card-name {
  margin: 0;
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  border: none;
  padding: 0;
}

.board-card-title {
  display: inline-block;
  background: var(--jc42-gold);
  color: var(--jc42-blue);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 auto;
  line-height: 1.4;
  white-space: nowrap;
}

/* On smaller screens, scale things down so 4 columns still fit on tablet */
@media (max-width: 1100px) {
  .board-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
  }
  .board-card-name { font-size: 15px; }
}

@media (max-width: 600px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .board-card-name { font-size: 14px; }
  .board-card-title { font-size: 10px; padding: 3px 10px; }
  .board-card-info { padding: 12px 10px 16px; }
}

/* =========================
   STAFF LIST (v3.5)
   Cards with initial-avatar circles since staff don't have photos.
========================= */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 30px 0 50px;
}

.staff-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-left: 5px solid var(--jc42-gold);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease,
              box-shadow 0.2s ease,
              border-left-color 0.22s ease;
}

.staff-card:hover,
.staff-card:focus-within {
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(19, 33, 106, 0.14);
  border-left-color: var(--jc42-blue);
}

.staff-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #13216a 0%, #0a1750 100%);
  color: var(--jc42-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(19, 33, 106, 0.22);
  transition: transform 0.22s ease;
}

.staff-card:hover .staff-avatar {
  transform: scale(1.05) rotate(-3deg);
}

.staff-info {
  flex: 1;
  min-width: 0;
}

.staff-card-name {
  display: block;
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.staff-card-title {
  display: block;
  font-size: 13px;
  color: #5a6473;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* =========================
   BOARD HERO PULLQUOTE (v3.6)
   Dramatic full-width quote with portrait on the left, quote on
   the right. Breaks out of the content container.
========================= */
.entry-content .board-pullquote-hero,
.jc42-contact-page .board-pullquote-hero,
.jc42-locals-page .board-pullquote-hero {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 70px;
  margin-bottom: 30px;
  padding: 70px clamp(20px, 5vw, 80px);
  background:
    linear-gradient(135deg, rgba(19, 33, 106, 0.92) 0%, rgba(10, 23, 80, 0.96) 100%),
    radial-gradient(ellipse at top right, rgba(253, 184, 39, 0.18), transparent 60%);
  background-color: #0a1750;
  color: var(--jc42-white);
  border: none;
  border-radius: 0;
  box-shadow: inset 0 6px 0 var(--jc42-gold), 0 0 0 0 transparent;
  overflow: hidden;
  font-style: normal;
}

/* Subtle decorative gold dots in background corners */
.entry-content .board-pullquote-hero::before,
.jc42-contact-page .board-pullquote-hero::before,
.jc42-locals-page .board-pullquote-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 184, 39, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.entry-content .board-pullquote-hero::after,
.jc42-contact-page .board-pullquote-hero::after,
.jc42-locals-page .board-pullquote-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 184, 39, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.board-pullquote-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
}

.board-pullquote-portrait {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--jc42-gold);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35),
              0 0 0 12px rgba(253, 184, 39, 0.12);
  background: var(--jc42-light);
  flex-shrink: 0;
  position: relative;
}

.board-pullquote-portrait img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  max-width: none !important;
  max-height: none !important;
}

/* Defensive: if a WP [caption] shortcode wraps the image, override
   its 240px inline width and hide the caption text so the photo
   still fills the entire circle. */
.board-pullquote-portrait .wp-caption,
.board-pullquote-portrait figure,
.board-pullquote-portrait .wp-block-image {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.board-pullquote-portrait .wp-caption-text,
.board-pullquote-portrait figcaption {
  display: none !important;
}

.board-pullquote-text {
  text-align: left;
}

/* Big gold quote glyph as the lead-in */
.board-pullquote-text::before {
  content: "";
  display: block;
  width: 64px;
  height: 48px;
  margin-bottom: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 36' fill='%23fdb827'><path d='M0 36V18C0 8.06 8.06 0 18 0v8c-5.52 0-10 4.48-10 10v0h10v18H0zM26 36V18c0-9.94 8.06-18 18-18v8c-5.52 0-10 4.48-10 10h10v18H26z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
}

.entry-content .board-pullquote-hero p,
.jc42-contact-page .board-pullquote-hero p,
.jc42-locals-page .board-pullquote-hero p {
  color: var(--jc42-white);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  font-style: normal;
  margin: 0 0 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.20);
}

.entry-content .board-pullquote-hero cite,
.jc42-contact-page .board-pullquote-hero cite,
.jc42-locals-page .board-pullquote-hero cite {
  display: inline-block;
  color: var(--jc42-gold);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 15px;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 3px solid var(--jc42-gold);
}

@media (max-width: 820px) {
  .board-pullquote-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .board-pullquote-portrait {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .board-pullquote-text {
    text-align: center;
  }

  .board-pullquote-text::before {
    margin-left: auto;
    margin-right: auto;
  }

  .entry-content .board-pullquote-hero,
  .jc42-contact-page .board-pullquote-hero,
  .jc42-locals-page .board-pullquote-hero {
    padding: 50px 22px;
    margin-top: 50px;
  }
}

/* =========================
   BOARD PULLQUOTE (v3.5) [legacy compact card style — kept for fallback]
========================= */
.entry-content blockquote.board-pullquote,
.entry-content .board-pullquote {
  background: linear-gradient(135deg, #13216a 0%, #0a1750 100%);
  color: var(--jc42-white);
  border: none;
  border-left: none;
  padding: 60px 50px 44px;
  border-radius: 16px;
  margin: 50px 0 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 14px 36px rgba(19, 33, 106, 0.22);
  overflow: hidden;
  font-style: normal;
}

/* Gold horizontal accent bar at the top center, like a ribbon */
.entry-content .board-pullquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--jc42-gold) 0%, #ffd148 50%, var(--jc42-gold) 100%);
  border-radius: 0 0 4px 4px;
}

/* Crisp SVG quotation mark, bright gold, full opacity */
.entry-content .board-pullquote p::before {
  content: "";
  display: block;
  width: 48px;
  height: 36px;
  margin: 0 auto 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 36' fill='%23fdb827'><path d='M0 36V18C0 8.06 8.06 0 18 0v8c-5.52 0-10 4.48-10 10v0h10v18H0zM26 36V18c0-9.94 8.06-18 18-18v8c-5.52 0-10 4.48-10 10h10v18H26z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.entry-content .board-pullquote p {
  color: var(--jc42-white);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 820px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  position: relative;
  z-index: 2;
}

.entry-content .board-pullquote cite {
  display: inline-block;
  color: var(--jc42-gold);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  padding-top: 16px;
  border-top: 2px solid rgba(253, 184, 39, 0.4);
}

@media (max-width: 600px) {
  .entry-content .board-pullquote { padding: 44px 22px 32px; }
  .entry-content .board-pullquote p { font-size: 14px; letter-spacing: 0.02em; }
  .entry-content .board-pullquote p::before { width: 38px; height: 28px; margin-bottom: 18px; }
}

/* =========================
   HOMEPAGE (v3.6)
   Used on the static front page only.
========================= */

/* Home page wraps content in .entry-content-wide so sections can
   break out to full bleed using calc(50% - 50vw) */
.home-page .entry-content {
  max-width: none;
}

/* Defensive: hide the generic page-hero (with the page title)
   on the front page so the homepage's own custom hero is the
   first thing visible. CSS fallback in case page.php hasn't
   been deployed with the is_front_page() conditional. */
body.home .page-hero,
body.page-template-default.home .page-hero {
  display: none !important;
}

/* ---- HERO ---- */
.home-hero {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 90px clamp(20px, 5vw, 60px) 110px;
  background: linear-gradient(135deg, #13216a 0%, #0a1750 60%, #0a1750 100%);
  color: var(--jc42-white);
  text-align: center;
  overflow: hidden;
  border-bottom: 6px solid var(--jc42-gold);
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 184, 39, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 184, 39, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.home-hero h1 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: var(--jc42-white);
  border: none;
  padding: 0;
}

.home-hero-tagline {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--jc42-gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 30px;
  font-weight: 500;
}

.home-hero-desc {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 36px;
  opacity: 0.96;
}

.home-hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---- STATS STRIP (overlaps hero edge) ---- */
.home-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin: -50px auto 0;
  background: var(--jc42-white);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(19, 33, 106, 0.18);
  overflow: hidden;
}

.home-stat {
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid var(--jc42-border);
}

.home-stat:last-child {
  border-right: none;
}

.home-stat-number {
  display: block;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--jc42-blue);
  line-height: 1;
}

.home-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #5a6473;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 700px) {
  .home-stats {
    grid-template-columns: 1fr;
  }
  .home-stat {
    border-right: none;
    border-bottom: 1px solid var(--jc42-border);
    padding: 24px;
  }
  .home-stat:last-child {
    border-bottom: none;
  }
}

/* ---- SECTIONS ---- */
.home-section {
  padding: 70px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-section-alt {
  margin: 0 calc(50% - 50vw);
  padding: 70px clamp(20px, 5vw, 60px);
  background: linear-gradient(180deg, var(--jc42-light) 0%, #fff 100%);
  max-width: none;
}

/* Stack selectors to win the specificity fight with .entry-content h2
   (which has a generic gold border-bottom). Without these, the heading
   would render with both the border-bottom AND the ::after underline,
   creating a confusing "double line" look. */
.entry-content .home-section-heading,
.entry-content .board-section-heading,
h2.home-section-heading,
h2.board-section-heading,
.home-section-heading,
.board-section-heading {
  text-align: center;
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  padding-bottom: 14px;
  position: relative;
  border: none !important;
  border-bottom: none !important;
}

.home-section-heading::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: var(--jc42-gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

.home-section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--jc42-text);
}

.home-section-cta {
  text-align: center;
  margin-top: 36px;
}

/* ---- NEWS GRID ---- */
.home-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.home-news-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(19, 33, 106, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-news-card:hover,
.home-news-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(19, 33, 106, 0.16);
}

.home-news-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--jc42-light);
}

.home-news-card-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  border-radius: 0 !important;
  margin: 0 !important;
  transition: transform 0.4s ease;
}

.home-news-card:hover .home-news-card-thumb img {
  transform: scale(1.05);
}

.home-news-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-news-card-date {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--jc42-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.home-news-card h3 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  color: var(--jc42-blue);
  font-size: 18px;
  margin: 0 0 12px;
  line-height: 1.3;
  border: none;
  padding: 0;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Selectors prefixed with .entry-content so they beat the generic
   .entry-content a underline rule. */
.entry-content .home-news-card h3 a,
.entry-content .home-news-card-thumb,
.entry-content .home-news-card-thumb a {
  color: inherit;
  text-decoration: none !important;
}

.entry-content .home-news-card h3 a:hover,
.entry-content .home-news-card h3 a:focus-visible {
  text-decoration: underline !important;
  text-decoration-color: var(--jc42-gold) !important;
  text-decoration-thickness: 2px !important;
}

.home-news-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
  color: var(--jc42-text);
}

.home-news-card-link {
  color: var(--jc42-blue);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
}

.home-news-card-link::after {
  content: " →";
  color: var(--jc42-gold);
  transition: transform 0.2s ease;
  display: inline-block;
}

.home-news-card-link:hover::after,
.home-news-card-link:focus-visible::after {
  transform: translateX(4px);
}

/* ---- RIGHT TO WORK CALLOUT BAND ---- */
.home-callout {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 70px clamp(20px, 5vw, 60px);
  background: linear-gradient(135deg, #13216a 0%, #0a1750 100%);
  color: var(--jc42-white);
  text-align: center;
  border-top: 5px solid var(--jc42-gold);
  border-bottom: 5px solid var(--jc42-gold);
  overflow: hidden;
}

.home-callout::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 184, 39, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.home-callout-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.home-callout h2 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  padding: 0;
  color: var(--jc42-white);
}

.home-callout p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.96);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- MISSION / FEATURES GRID ---- */
.home-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 36px 0;
}

.home-feature-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 12px;
  padding: 26px 22px 28px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-top-color 0.22s ease;
}

.home-feature-card:hover,
.home-feature-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(19, 33, 106, 0.14);
  border-top-color: var(--jc42-blue);
}

.home-feature-card h3 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 18px;
  color: var(--jc42-blue);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  padding: 0;
}

.home-feature-card p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--jc42-text);
}

.home-feature-card a {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--jc42-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-feature-card a:hover,
.home-feature-card a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--jc42-gold);
}

/* ---- VIDEO SECTION ---- */
.home-video-wrap {
  max-width: 900px;
  margin: 30px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(19, 33, 106, 0.22);
  aspect-ratio: 16/9;
  background: #000;
}

.home-video-wrap video,
.home-video-wrap iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
}

/* =========================
   HEALTH & WELFARE PAGE (v3.7)
========================= */
.hw-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--jc42-text);
}

.entry-content .hw-section-heading,
h2.hw-section-heading,
.hw-section-heading {
  text-align: center;
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 56px 0 22px;
  padding-bottom: 14px;
  position: relative;
  border: none !important;
  border-bottom: none !important;
}

.hw-section-heading::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: var(--jc42-gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---- Plan Administrator Cards (full contact info) ---- */
.hw-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
  margin: 28px 0 40px;
}

.hw-admin-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 12px;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(19, 33, 106, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-top-color 0.22s ease;
}

.hw-admin-card:hover,
.hw-admin-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(19, 33, 106, 0.14);
  border-top-color: var(--jc42-blue);
}

.hw-admin-card h3 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  border: none;
}

.hw-admin-card address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  color: var(--jc42-text);
  margin: 0;
}

.hw-admin-card-label {
  display: block;
  font-weight: 700;
  color: var(--jc42-blue);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

/* Selectors prefixed with .entry-content so they beat the generic
   .entry-content a underline rule. */
.entry-content .hw-admin-card-contact a,
.entry-content .hw-admin-card a[href^="tel:"],
.entry-content .hw-admin-card a[href^="mailto:"] {
  display: inline-block;
  color: var(--jc42-blue);
  font-weight: 600;
  text-decoration: none !important;
  margin-right: 16px;
}

.entry-content .hw-admin-card-contact a:hover,
.entry-content .hw-admin-card-contact a:focus-visible,
.entry-content .hw-admin-card a[href^="tel:"]:hover,
.entry-content .hw-admin-card a[href^="mailto:"]:hover {
  color: #0a1750;
  text-decoration: none !important;
}

.hw-admin-card-fund {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--jc42-border);
  font-size: 14px;
  line-height: 1.5;
}

/* ---- Trust Fund Cards (compact, just name + phone) ---- */
.hw-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin: 28px 0 40px;
}

.hw-trust-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-left: 5px solid var(--jc42-gold);
  border-radius: 8px;
  padding: 16px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.22s ease;
}

.hw-trust-card:hover,
.hw-trust-card:focus-within {
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(19, 33, 106, 0.14);
  border-left-color: var(--jc42-blue);
}

.hw-trust-card h3 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 8px;
  padding: 0;
  border: none;
}

.entry-content .hw-trust-card-phone,
.entry-content a.hw-trust-card-phone {
  display: inline-block;
  color: var(--jc42-blue);
  font-weight: 700;
  text-decoration: none !important;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.entry-content .hw-trust-card-phone:hover,
.entry-content .hw-trust-card-phone:focus-visible {
  color: #0a1750;
  text-decoration: none !important;
}

.hw-trust-card-phone::before {
  content: "\260E\00a0";
  color: var(--jc42-gold);
  font-weight: normal;
}

/* ---- Insurance Carrier Links ---- */
.hw-carriers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 28px 0 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hw-carriers-section h3 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  padding: 0 0 10px;
  text-align: center;
  border: none;
  border-bottom: 2px solid var(--jc42-gold);
}

.hw-carrier-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entry-content .hw-carrier-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-left: 4px solid var(--jc42-gold);
  border-radius: 8px;
  padding: 14px 20px;
  text-decoration: none !important;
  color: var(--jc42-blue) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.22s ease;
}

.entry-content .hw-carrier-link:hover,
.entry-content .hw-carrier-link:focus-visible {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(19, 33, 106, 0.12);
  border-left-color: var(--jc42-blue);
}

.entry-content .hw-carrier-link::after {
  content: "\2192";
  color: var(--jc42-gold);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.entry-content .hw-carrier-link:hover::after,
.entry-content .hw-carrier-link:focus-visible::after {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .hw-carriers-grid {
    grid-template-columns: 1fr;
  }
  .hw-admin-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   RIGHT TO WORK PAGE (v3.8)
========================= */
.rtw-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--jc42-text);
  font-weight: 500;
}

.rtw-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin: 40px 0;
}

.entry-content .rtw-grid-2 h3 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  color: var(--jc42-blue);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  padding: 0 0 10px;
  border: none;
  border-bottom: 3px solid var(--jc42-gold);
  display: inline-block;
  line-height: 1.25;
}

@media (max-width: 700px) {
  .rtw-grid-2 { grid-template-columns: 1fr; gap: 28px; }
}

.rtw-video {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(19, 33, 106, 0.20);
  background: #000;
}

.rtw-video iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* Fact cards — used for the Q&A sections */
.rtw-fact-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 12px;
  padding: 30px 32px 32px;
  margin: 24px 0;
  box-shadow: 0 2px 10px rgba(19, 33, 106, 0.07);
  transition: box-shadow 0.22s ease, border-top-color 0.22s ease;
}

.rtw-fact-card:hover {
  box-shadow: 0 8px 24px rgba(19, 33, 106, 0.12);
}

.entry-content .rtw-fact-card h3 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  color: var(--jc42-blue);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  line-height: 1.3;
}

.rtw-fact-card p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.rtw-fact-card p:last-child {
  margin-bottom: 0;
}

/* Two-card grid for history/who's behind it */
.rtw-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.rtw-card-grid .rtw-fact-card { margin: 0; }

/* Effects of RTW — alarm-styled bullets */
.rtw-effects-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 18px 0 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.rtw-effects-list li {
  background: linear-gradient(180deg, #fff5f3 0%, #ffeae5 100%);
  border-left: 5px solid #c1392b;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--jc42-text);
  border-radius: 6px;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.rtw-effects-list li::before {
  content: "\26A0";
  color: #c1392b;
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}

/* Big phone-call CTA banner */
.rtw-phone-cta {
  position: relative;
  margin: 60px calc(50% - 50vw) 40px;
  padding: 70px clamp(20px, 5vw, 50px);
  background: linear-gradient(135deg, #13216a 0%, #0a1750 100%);
  color: var(--jc42-white);
  text-align: center;
  border-top: 5px solid var(--jc42-gold);
  border-bottom: 5px solid var(--jc42-gold);
  overflow: hidden;
}

.rtw-phone-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 184, 39, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.entry-content .rtw-phone-cta h2 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none !important;
  border-bottom: none !important;
  padding: 0;
  color: var(--jc42-white);
  position: relative;
  z-index: 2;
}

.rtw-phone-cta p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.96);
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.entry-content a.rtw-phone-number {
  display: inline-block;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--jc42-gold) !important;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  padding: 18px 40px;
  border: 3px solid var(--jc42-gold);
  border-radius: 14px;
  margin: 10px 0;
  transition: all 0.22s ease;
  position: relative;
  z-index: 2;
}

.entry-content a.rtw-phone-number:hover,
.entry-content a.rtw-phone-number:focus-visible {
  background: var(--jc42-gold);
  color: var(--jc42-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.entry-content a.rtw-phone-number::before {
  content: "\260E\00a0";
  font-weight: normal;
}

.rtw-poster {
  text-align: center;
  margin: 40px auto;
  max-width: 700px;
}

.rtw-poster img {
  border-radius: 12px !important;
  box-shadow: 0 14px 36px rgba(19, 33, 106, 0.22);
  width: 100%;
  height: auto;
  display: block;
}

/* Email link inside fact cards — no underline */
.entry-content .rtw-fact-card a[href^="mailto:"] {
  color: var(--jc42-blue);
  font-weight: 700;
  text-decoration: none;
}

.entry-content .rtw-fact-card a[href^="mailto:"]:hover {
  text-decoration: underline;
  text-decoration-color: var(--jc42-gold);
  text-decoration-thickness: 2px;
}

/* =========================
   PRINT (v3.4)
========================= */
@media print {
  .site-header,
  .site-footer,
  .menu-toggle,
  .skip-link,
  .pagination,
  .post-navigation {
    display: none !important;
  }

  .page-hero,
  .hero-overlay {
    background: none !important;
    color: #000 !important;
    min-height: auto !important;
  }

  .page-hero h1,
  .hero h1 {
    color: #000 !important;
    text-shadow: none !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  body {
    font-size: 11pt;
    color: #000 !important;
  }

  a {
    color: #000 !important;
    text-decoration: underline !important;
  }
}


/* =========================
   ORGANIZING PAGE (v3.7)
   Used on /organizing/
========================= */
.organizing-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0 10px;
}

.organizing-intro-card {
  background:
    linear-gradient(135deg, rgba(19, 33, 106, 0.94) 0%, rgba(10, 23, 80, 0.96) 100%),
    radial-gradient(ellipse at top right, rgba(253, 184, 39, 0.18), transparent 60%);
  color: var(--jc42-white);
  border-top: 6px solid var(--jc42-gold);
  border-radius: 16px;
  padding: clamp(28px, 5vw, 56px);
  margin: 20px 0 34px;
  box-shadow: 0 14px 34px rgba(19, 33, 106, 0.20);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.organizing-intro-card::before,
.organizing-intro-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(253, 184, 39, 0.12);
  pointer-events: none;
}

.organizing-intro-card::before {
  width: 220px;
  height: 220px;
  top: -90px;
  left: -80px;
}

.organizing-intro-card::after {
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
}

.organizing-eyebrow {
  display: inline-block;
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.organizing-intro-card h2,
.organizing-form-header h2,
.organizing-pullquote h2 {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  padding: 0;
}

.organizing-intro-card h2 {
  color: var(--jc42-white);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  margin: 0 0 18px;
  position: relative;
  z-index: 2;
}

.organizing-intro-card p {
  max-width: 800px;
  margin: 0 auto 22px;
  font-size: 19px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.organizing-cta-row {
  margin-top: 28px !important;
}

/* Auto-flip .button-primary (navy variant) to gold when it sits inside
   a dark navy section like the intro card or pullquote — otherwise
   navy-on-navy is invisible. */
.organizing-intro-card .button-primary,
.organizing-pullquote .button-primary,
.home-hero .button-primary,
.home-callout .button-primary,
.rtw-phone-cta .button-primary,
.board-pullquote-hero .button-primary {
  background: linear-gradient(180deg, #ffd148 0%, var(--jc42-gold) 60%, #e0a000 100%) !important;
  color: var(--jc42-blue) !important;
  border-color: var(--jc42-blue) !important;
}

.organizing-intro-card .button-primary:hover,
.organizing-intro-card .button-primary:focus-visible,
.organizing-pullquote .button-primary:hover,
.organizing-pullquote .button-primary:focus-visible,
.home-hero .button-primary:hover,
.home-callout .button-primary:hover,
.rtw-phone-cta .button-primary:hover,
.board-pullquote-hero .button-primary:hover {
  background: var(--jc42-white) !important;
  color: var(--jc42-blue) !important;
  border-color: var(--jc42-white) !important;
}

.organizing-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 0 42px;
  width: 100%;
  box-sizing: border-box;
}

.organizing-feature-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 14px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 2px 12px rgba(19, 33, 106, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* WordPress wraps each wp:html block in .wp-block-html — make those
   wrappers center and constrain width on the organizing page so all
   cards match the intro card width exactly */
.organizing-page ~ .wp-block-html,
.wp-block-html:has(.organizing-feature-card),
.wp-block-html:has(.organizing-feature-grid) {
  max-width: 1180px;
  width: min(100% - 32px, 1180px);
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

.organizing-feature-card:hover,
.organizing-feature-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(19, 33, 106, 0.16);
  border-color: var(--jc42-blue);
}

.organizing-feature-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jc42-blue) 0%, #0a1750 100%);
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(19, 33, 106, 0.22);
  margin-bottom: 14px;
}

.organizing-feature-card h3 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 4px solid var(--jc42-gold);
  padding-bottom: 12px;
  margin: 0 0 18px;
}

.organizing-feature-card h4 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 26px 0 10px;
}

.organizing-table-wrap {
  margin: 24px 0 16px;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--jc42-border);
  box-shadow: 0 2px 12px rgba(19, 33, 106, 0.08);
  background: var(--jc42-white);
}

.organizing-table-wrap table {
  margin: 0;
}

.organizing-source-list {
  color: #5a6473;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 14px;
}

.organizing-check-list,
.organizing-x-list {
  padding-left: 0 !important;
  margin: 18px 0 0 !important;
  list-style: none !important;
}

.organizing-check-list li,
.organizing-x-list li {
  position: relative;
  padding: 14px 16px 14px 56px;
  margin-bottom: 10px;
  background: var(--jc42-light);
  border-radius: 10px;
  border: 1px solid var(--jc42-border);
  line-height: 1.45;
  font-size: 15px;
}

.organizing-check-list li::before,
.organizing-x-list li::before {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  color: var(--jc42-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.organizing-check-list li::before {
  content: "\2713";
  background: linear-gradient(135deg, #2e9a55 0%, #237a42 100%);
  box-shadow: 0 2px 8px rgba(46, 154, 85, 0.32);
}

.organizing-x-list li::before {
  content: "\2715";
  background: linear-gradient(135deg, #d44a37 0%, #b13123 100%);
  box-shadow: 0 2px 8px rgba(193, 57, 43, 0.32);
}

/* Side-by-side rights / employer columns inside Card 3 */
.organizing-rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 10px;
}

.organizing-rights-col h4 {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .organizing-rights-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Steps as horizontal flow on desktop */
.organizing-steps-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 30px 0 18px !important;
  counter-reset: organize-step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  position: relative;
}

.organizing-steps-list li {
  background: linear-gradient(180deg, #fff 0%, var(--jc42-light) 100%);
  border: 1px solid var(--jc42-border);
  border-radius: 12px;
  padding: 48px 18px 18px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--jc42-text);
  position: relative;
  margin: 22px 0 0 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.organizing-steps-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(19, 33, 106, 0.10);
}

.organizing-steps-list li::before {
  counter-increment: organize-step;
  content: counter(organize-step);
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jc42-blue) 0%, #0a1750 100%);
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 44px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(19, 33, 106, 0.30);
  border: 3px solid var(--jc42-white);
}

/* Polished Union Difference comparison table */
.organizing-union-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  margin: 0;
}

.organizing-union-table thead th {
  background: linear-gradient(180deg, #1a2d8a 0%, var(--jc42-blue) 100%);
  color: var(--jc42-white);
  text-align: center;
  padding: 16px 14px;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.3;
  border: none;
}

.organizing-union-table thead th:first-child {
  text-align: left;
}

.organizing-union-table thead th:nth-child(2) {
  background: linear-gradient(180deg, #c89400 0%, var(--jc42-gold) 100%);
  color: var(--jc42-blue);
}

.organizing-union-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--jc42-border);
  background: var(--jc42-white);
  vertical-align: middle;
}

.organizing-union-table tbody td:first-child {
  font-weight: 600;
  color: var(--jc42-blue);
  font-size: 14px;
  text-align: left;
}

.organizing-union-table tbody td:not(:first-child) {
  text-align: center;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--jc42-blue);
  letter-spacing: 0.02em;
}

.organizing-union-table tbody td:nth-child(2) {
  background: linear-gradient(180deg, rgba(253, 184, 39, 0.10) 0%, rgba(253, 184, 39, 0.04) 100%);
  font-weight: 800;
}

.organizing-union-table tbody tr:nth-child(even) td {
  background: var(--jc42-light);
}

.organizing-union-table tbody tr:nth-child(even) td:nth-child(2) {
  background: linear-gradient(180deg, rgba(253, 184, 39, 0.18) 0%, rgba(253, 184, 39, 0.10) 100%);
}

.organizing-union-table tbody tr:last-child td {
  border-bottom: none;
}

.organizing-data-note {
  color: #5a6473;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 14px;
  font-style: italic;
}

.entry-content .organizing-pullquote {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 60px 20px;
  background:
    linear-gradient(135deg, rgba(19, 33, 106, 0.94) 0%, rgba(10, 23, 80, 0.96) 100%),
    radial-gradient(ellipse at bottom left, rgba(253, 184, 39, 0.18), transparent 60%);
  color: var(--jc42-white);
  border-top: 6px solid var(--jc42-gold);
  border-bottom: 6px solid var(--jc42-gold);
  text-align: center;
}

.organizing-pullquote-inner {
  max-width: 900px;
  margin: 0 auto;
}

.organizing-pullquote h2 {
  color: var(--jc42-white);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 10px;
}

.organizing-pullquote p {
  font-size: 22px;
  margin: 0 0 26px;
  color: var(--jc42-white);
}

.organizing-form-section {
  max-width: 1180px;
  width: min(100% - 32px, 1180px);
  margin: 0 auto 50px;
}

.organizing-form-header {
  text-align: center;
  margin-bottom: 24px;
}

.organizing-form-header h2 {
  color: var(--jc42-blue);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.organizing-form-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}

.organizing-form-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-top: 6px solid var(--jc42-blue);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 10px 28px rgba(19, 33, 106, 0.14);
}

/* Gravity Forms polish inside the organizing card */
.organizing-form-card .gform_wrapper input[type="text"],
.organizing-form-card .gform_wrapper input[type="email"],
.organizing-form-card .gform_wrapper input[type="tel"],
.organizing-form-card .gform_wrapper textarea,
.organizing-form-card .gform_wrapper select {
  border: 1px solid #b8c5ef;
  border-radius: 6px;
  background: #f7f8fc;
  padding: 13px 14px;
  font-size: 16px;
}

.organizing-form-card .gform_wrapper label,
.organizing-form-card .gform_wrapper legend {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.organizing-form-card .gform_wrapper .gform_button,
.organizing-form-card .gform_wrapper input[type="submit"] {
  display: inline-block;
  width: 100%;
  background: linear-gradient(180deg, #1a2d8a 0%, var(--jc42-blue) 100%);
  color: var(--jc42-white) !important;
  border: 2px solid var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 16px 34px;
  text-align: center;
  line-height: 1.2;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(19, 33, 106, 0.18);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.organizing-form-card .gform_wrapper .gform_button:hover,
.organizing-form-card .gform_wrapper input[type="submit"]:hover {
  background: linear-gradient(180deg, #ffd148 0%, var(--jc42-gold) 100%);
  color: var(--jc42-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(19, 33, 106, 0.25);
}

@media (min-width: 900px) {
  .organizing-feature-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
  }
}

@media (max-width: 700px) {
  .organizing-intro-card,
  .organizing-feature-card,
  .organizing-form-card {
    border-radius: 12px;
  }

  .organizing-feature-card {
    padding: 22px 18px;
  }

  .organizing-steps-list li,
  .organizing-check-list li,
  .organizing-x-list li {
    padding-right: 12px;
  }
}

/* =========================
   SCHOLARSHIP PAGE
========================= */
.scholarship-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 0 50px;
}

.scholarship-intro-card {
  background:
    linear-gradient(135deg, rgba(19, 33, 106, 0.94) 0%, rgba(10, 23, 80, 0.96) 100%),
    radial-gradient(ellipse at top right, rgba(253, 184, 39, 0.18), transparent 60%);
  color: var(--jc42-white);
  border-top: 6px solid var(--jc42-gold);
  border-radius: 16px;
  padding: clamp(30px, 5vw, 56px);
  text-align: center;
  box-shadow: 0 14px 34px rgba(19, 33, 106, 0.20);
  margin-bottom: 28px;
}

.scholarship-eyebrow {
  display: inline-block;
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.scholarship-intro-card h2 {
  color: var(--jc42-white);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 18px;
  border: none;
  padding: 0;
}

.scholarship-intro-card p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.6;
}

.scholarship-card,
.scholarship-status-card {
  background: var(--jc42-white);
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 2px 12px rgba(19, 33, 106, 0.08);
  margin-bottom: 24px;
}

.scholarship-card h3,
.scholarship-status-card h3 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(25px, 4vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 4px solid var(--jc42-gold);
  padding-bottom: 12px;
  margin: 0 0 18px;
}

.scholarship-locals {
  background: var(--jc42-light);
  border-left: 5px solid var(--jc42-gold);
  border-radius: 8px;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--jc42-blue);
  line-height: 1.7;
}

.scholarship-status-label {
  display: inline-block;
  color: var(--jc42-blue);
  background: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.scholarship-closed {
  border-top-color: var(--jc42-blue);
}

@media (max-width: 700px) {
  .scholarship-intro-card,
  .scholarship-card,
  .scholarship-status-card {
    border-radius: 12px;
  }
}

/* =========================
   NEWS IMAGE FIXES
========================= */

/* Homepage news cards */
.home-news-card-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--jc42-light);
}

.home-news-card-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top;
}

/* Blog/news archive cards */
.post-card-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--jc42-light);
}

.post-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* =========================
   SINGLE NEWS POST CLEAN
========================= */

.single-news-layout {
  padding: 50px 0 70px;
}

.single-post-clean {
  max-width: 980px;
  margin: 0 auto;
}

.single-post-image {
  margin: 0 auto 36px;
  text-align: center;
}

.single-post-image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: inline-block;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.single-post-header {
  text-align: center;
  margin-bottom: 40px;
}

.single-post-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jc42-gold);
  margin-bottom: 16px;
}

.single-post-title {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  color: var(--jc42-blue);
  margin: 0 auto;
  max-width: 900px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.single-post-clean .entry-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.8;
}

.single-post-clean .entry-content p {
  margin-bottom: 1.5em;
}

.single-post-clean .entry-meta {
  max-width: 820px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--jc42-border);
}

@media (max-width: 700px) {
  .single-news-layout {
    padding-top: 28px;
  }

  .single-post-image img {
    max-width: 100%;
  }

  .single-post-title {
    font-size: clamp(30px, 9vw, 42px);
  }
}
	
/* =========================
   POLITICAL SCREENING COMMITTEE PAGE
========================= */

.psc-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0 50px;
}

.psc-intro-card {
  background:
    linear-gradient(135deg, rgba(19, 33, 106, 0.94) 0%, rgba(10, 23, 80, 0.96) 100%),
    radial-gradient(ellipse at top right, rgba(253, 184, 39, 0.18), transparent 60%);
  color: #fff;
  border-top: 6px solid var(--jc42-gold);
  border-radius: 16px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  box-shadow: 0 14px 34px rgba(19, 33, 106, 0.20);
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
}

.psc-intro-card::before,
.psc-intro-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(253, 184, 39, 0.12);
  pointer-events: none;
}

.psc-intro-card::before {
  width: 220px;
  height: 220px;
  top: -90px;
  left: -80px;
}

.psc-intro-card::after {
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
}

.psc-eyebrow {
  display: inline-block;
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.psc-intro-card h2 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 0;
  position: relative;
  z-index: 2;
}

.psc-intro-card p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

.psc-card {
  background: #fff;
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 2px 12px rgba(19, 33, 106, 0.08);
  margin-bottom: 28px;
}

.psc-card h3 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  text-transform: uppercase;
  border-bottom: 4px solid var(--jc42-gold);
  padding-bottom: 12px;
  margin: 0 0 18px;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
}

.psc-card p {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.psc-card p:last-child {
  margin-bottom: 0;
}
/* =========================
   JC42 AFFILIATES / LOCALS PAGE
========================= */

.jc42-locals-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0 60px;
}

.jc42-locals-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.jc42-locals-intro h2 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 12px;
  border: none;
}

.jc42-locals-intro p {
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

/* =========================
   LOCALS GRID
   The grid is a WordPress Group block with class "jc42-locals-grid".
   Each card is its own Custom HTML block inside that group.
   No wrapper HTML needed — cards size and flow themselves.
========================= */
/* The Group block outer wrapper gets the class jc42-locals-grid.
   We target it AND its inner container so flex works regardless
   of which WordPress version wraps things which way. */
.jc42-locals-grid,
.jc42-locals-grid .wp-block-group__inner-container,
.wp-block-group.jc42-locals-grid,
.wp-block-group.jc42-locals-grid > .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

/* WP HTML block wrappers are transparent to the flex layout */
.jc42-locals-grid .wp-block-html {
  display: contents;
}

.jc42-local-card {
  background: #fff;
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(19, 33, 106, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  flex: 1 1 310px;
  max-width: calc(33.333% - 15px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.jc42-local-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(19, 33, 106, 0.12);
}

.jc42-local-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.jc42-local-badge {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jc42-blue), #0a1750);
  color: var(--jc42-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 5px 16px rgba(19, 33, 106, 0.25);
}

.jc42-local-card h3 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  border: none;
}

.jc42-local-region {
  display: block;
  font-size: 12px;
  color: #5a6473;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
  font-weight: 700;
}

.jc42-local-info p {
  margin: 0 0 14px;
  line-height: 1.55;
  font-size: 15px;
}

.jc42-local-info strong {
  color: var(--jc42-blue);
}

.jc42-local-info a {
  color: var(--jc42-blue);
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Button pushed to bottom of every card */
.jc42-local-actions {
  margin-top: auto;
  padding-top: 20px;
}

.jc42-local-actions .button {
  min-width: 0;
  padding: 11px 24px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .jc42-local-card {
    max-width: calc(50% - 11px);
  }
}

@media (max-width: 600px) {
  .jc42-locals-page {
    padding: 10px 0 40px;
  }

  .jc42-local-card {
    max-width: 100%;
    padding: 20px;
  }

  .jc42-local-top {
    align-items: flex-start;
  }

  .jc42-local-card h3 {
    font-size: 22px;
  }
}

/* =========================
   CONTACT PAGE
========================= */
.jc42-contact-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0 60px;
}

.jc42-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 60px;
}

/* LEFT — Info Panel */
.jc42-contact-info {
  background: #fff;
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(19, 33, 106, 0.08);
}

.jc42-contact-info h2 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  border: none;
}

.jc42-contact-gold-bar {
  width: 60px;
  height: 4px;
  background: var(--jc42-gold);
  border-radius: 2px;
  margin-bottom: 28px;
}

.jc42-contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--jc42-border);
}

.jc42-contact-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.jc42-contact-icon {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.jc42-contact-block strong {
  display: block;
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.jc42-contact-block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--jc42-text);
}

.jc42-contact-block a {
  color: var(--jc42-blue);
  font-weight: 700;
  text-decoration: none;
}

.jc42-contact-block a:hover {
  color: var(--jc42-gold-dark, #b8860b);
  text-decoration: underline;
}

/* RIGHT — Map */
.jc42-contact-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--jc42-border);
  box-shadow: 0 2px 12px rgba(19, 33, 106, 0.08);
  min-height: 420px;
}

.jc42-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .jc42-contact-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .jc42-contact-map {
    min-height: 300px;
  }

  .jc42-contact-map iframe {
    min-height: 300px;
  }

  .jc42-contact-info {
    padding: 24px 20px;
  }
}

/* =========================
   FOOTER SOCIAL ICONS
========================= */
.site-footer-social {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer-social .site-footer-heading {
  margin-bottom: 14px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--jc42-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  text-decoration: none !important;
}

.footer-social-icon:hover {
  background: rgba(253, 184, 39, 0.15);
  border-color: var(--jc42-gold);
  color: var(--jc42-gold);
  transform: translateY(-3px);
}

.footer-social-icon svg {
  display: block;
  flex-shrink: 0;
}

/* Footer bottom bar — Privacy Policy link */
.site-footer-bottom-sep {
  margin: 0 10px;
  opacity: 0.4;
}

.site-footer-bottom a {
  color: var(--jc42-gold);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.site-footer-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}
/* =========================
   ABOUT PAGE
========================= */
.jc42-about-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 0 0;
}

/* Option C Hero Card */
.jc42-about-hero-card {
  position: relative;
  background: linear-gradient(135deg, var(--jc42-blue) 0%, #0a1750 100%);
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 16px;
  padding: 60px clamp(30px, 5vw, 80px);
  margin-bottom: 50px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(19, 33, 106, 0.2);
}

.jc42-about-hero-card-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.jc42-about-hero-card-title {
  color: var(--jc42-white) !important;
  font-family: "Oswald", "Inter", Arial, sans-serif !important;
  font-size: clamp(32px, 4.5vw, 54px) !important;
  text-transform: uppercase !important;
  line-height: 1.1 !important;
  margin: 0 0 20px !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  letter-spacing: 1px;
}

.jc42-about-hero-card-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
  margin: 0;
}

/* Decorative circle blobs */
.jc42-about-hero-card-deco {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  z-index: 1;
}

.jc42-about-hero-card-deco--left {
  bottom: -80px;
  left: -80px;
}

.jc42-about-hero-card-deco--right {
  top: -80px;
  right: -80px;
}

/* Hero Intro */
.jc42-about-hero {
  text-align: center;
  padding: 50px 20px 60px;
}

.jc42-about-hero-badge {
  display: inline-block;
  background: var(--jc42-gold);
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.jc42-about-eyebrow {
  display: block;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jc42-gold);
  margin-bottom: 14px;
}

.jc42-about-hero-title {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 20px;
  border: none;
}

.jc42-about-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: #4a5568;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Stat Cards */
.jc42-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--jc42-blue);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 70px;
  box-shadow: 0 8px 32px rgba(19, 33, 106, 0.2);
}

.jc42-about-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.jc42-about-stat:last-child {
  border-right: none;
}

.jc42-about-stat-number {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--jc42-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.jc42-about-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.4;
}

/* Who We Are Section */
.jc42-about-section {
  margin-bottom: 30px;
  padding: 0 10px;
  width: 100%;
}

.jc42-about-section--centered {
  text-align: center;
}

.jc42-about-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--jc42-text);
  margin-bottom: 16px;
  max-width: 100%;
}

.jc42-about-section-heading {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  text-transform: uppercase;
  margin: 0 0 12px;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  letter-spacing: 0.5px;
  padding-bottom: 0 !important;
}

.jc42-about-section-heading--white {
  color: var(--jc42-white) !important;
  -webkit-text-fill-color: var(--jc42-white) !important;
}

.jc42-about-gold-bar {
  width: 60px;
  height: 4px;
  background: var(--jc42-gold);
  border-radius: 2px;
  margin-bottom: 24px;
  border: none;
  display: block;
}

.jc42-about-gold-bar--center {
  margin-left: auto;
  margin-right: auto;
}

.jc42-about-section-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--jc42-text);
  margin-bottom: 18px;
}

/* Info Card */
.jc42-about-info-card {
  background: #fff;
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(19, 33, 106, 0.08);
}

.jc42-about-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--jc42-border);
}

.jc42-about-info-row:first-child {
  padding-top: 0;
}

.jc42-about-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.jc42-about-info-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  margin-top: 2px;
}

.jc42-about-info-row strong {
  display: block;
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.jc42-about-info-row span {
  font-size: 14px;
  color: var(--jc42-text);
  line-height: 1.5;
}

/* Mission / What We Do */
.jc42-about-mission {
  background: linear-gradient(135deg, var(--jc42-blue) 0%, #0a1750 100%);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding: 70px clamp(20px, 5vw, 80px);
  margin-bottom: 70px;
  text-align: center;
}

.jc42-about-mission-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.jc42-about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.jc42-about-pillar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--jc42-gold);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: left;
}

.jc42-about-pillar-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.jc42-about-pillar h3 {
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  border: none;
}

.jc42-about-pillar p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Industries */
.jc42-about-industries-intro {
  font-size: 17px;
  color: #4a5568;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.jc42-about-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 70px;
}

.jc42-about-industry {
  background: #fff;
  border: 2px solid var(--jc42-border);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--jc42-blue);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.jc42-about-industry:hover {
  border-color: var(--jc42-gold);
  background: #fffbf0;
}

/* Responsive */
@media (max-width: 900px) {
  .jc42-about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .jc42-about-stat:nth-child(2) {
    border-right: none;
  }

  .jc42-about-stat:nth-child(1),
  .jc42-about-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .jc42-about-section {
    grid-template-columns: 1fr;
  }

  .jc42-about-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .jc42-about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .jc42-about-pillars {
    grid-template-columns: 1fr;
  }

  .jc42-about-mission {
    padding: 50px 20px;
  }
}
/* =========================
   RETIREES PAGE
========================= */
.jc42-retirees-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.jc42-retirees-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--jc42-text);
  width: 100%;
  margin-bottom: 28px;
}

/* Two-column row: clubs left, photo right */
.jc42-retirees-row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

/* Club Group Block */
.jc42-retirees-group {
  background: #fff;
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 2px 12px rgba(19, 33, 106, 0.07);
  margin-bottom: 24px;
}

.jc42-retirees-group:last-child {
  margin-bottom: 0;
}

.jc42-retirees-group-heading {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding-bottom: 0 !important;
}

.jc42-retirees-group-gold-bar {
  width: 50px;
  height: 3px;
  background: var(--jc42-gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Club List */
.jc42-retirees-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jc42-retirees-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--jc42-border);
  font-size: 15px;
}

.jc42-retirees-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.jc42-retirees-location {
  background: var(--jc42-blue);
  color: var(--jc42-white);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 12px;
  flex-shrink: 0;
}

.jc42-retirees-name {
  color: var(--jc42-text);
  font-weight: 600;
  flex: 1;
}

.jc42-retirees-phone {
  color: var(--jc42-blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.jc42-retirees-phone:hover {
  color: var(--jc42-gold);
  text-decoration: underline;
}

.jc42-retirees-coming-soon {
  color: #9ca3af;
  font-size: 13px;
  font-style: italic;
}

/* Photo */
.jc42-retirees-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--jc42-border);
  box-shadow: 0 2px 16px rgba(19, 33, 106, 0.1);
  position: sticky;
  top: 100px;
}

.jc42-retirees-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Quote — no portrait variant */
.board-pullquote-inner--no-portrait {
  justify-content: center;
  text-align: center;
}

.board-pullquote-inner--no-portrait .board-pullquote-text {
  max-width: 820px;
}

/* Responsive */
@media (max-width: 768px) {
  .jc42-retirees-row {
    grid-template-columns: 1fr;
  }

  .jc42-retirees-photo {
    position: static;
    order: -1;
  }

  .jc42-retirees-group {
    padding: 22px 18px;
  }
}

/* Retirees Office Hours Card */
.jc42-retirees-office-card {
  margin-top: 24px;
  background: var(--jc42-light);
  border: 1px solid var(--jc42-border);
  border-left: 4px solid var(--jc42-gold);
  border-radius: 10px;
  padding: 20px 22px;
}

.jc42-retirees-office-heading {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding-bottom: 0 !important;
}

.jc42-retirees-office-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.jc42-retirees-office-row:last-of-type {
  margin-bottom: 0;
}

.jc42-retirees-office-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
  margin-top: 1px;
}

.jc42-retirees-office-row strong {
  display: block;
  color: var(--jc42-blue);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.jc42-retirees-office-row span,
.jc42-retirees-office-row a {
  font-size: 14px;
  color: var(--jc42-text);
  line-height: 1.5;
  text-decoration: none;
}

.jc42-retirees-office-row a {
  color: var(--jc42-blue);
  font-weight: 700;
}

.jc42-retirees-office-row a:hover {
  color: var(--jc42-gold);
}

.jc42-retirees-office-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  border-top: 1px solid var(--jc42-border);
  padding-top: 10px;
}

/* Pullquote cite small text */
.board-pullquote-hero cite small {
  display: block;
  font-size: 12px;
  opacity: 0.75;
  margin-top: 6px;
  font-style: normal;
}

/* =========================
   RETIREES PAGE — UPDATED
========================= */

/* Larger font for retirees */
.jc42-retirees-page {
  font-size: 18px;
}

.jc42-retirees-intro p {
  font-size: 19px !important;
  line-height: 1.8;
}

.jc42-retirees-list li {
  font-size: 17px !important;
  padding: 14px 0;
}

.jc42-retirees-name {
  font-size: 17px;
}

.jc42-retirees-phone {
  font-size: 17px !important;
}

.jc42-retirees-location {
  font-size: 13px !important;
}

.jc42-retirees-office-row span,
.jc42-retirees-office-row a {
  font-size: 17px !important;
}

.jc42-retirees-office-note {
  font-size: 15px !important;
}

/* Two-column club layout */
.jc42-retirees-clubs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 50px;
}

/* Why Join Banner */
.jc42-retirees-why {
  background: linear-gradient(135deg, var(--jc42-blue) 0%, #0a1750 100%);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px clamp(20px, 5vw, 80px);
  margin-bottom: 0;
}

.jc42-retirees-why-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.jc42-retirees-why-heading {
  color: var(--jc42-white) !important;
  -webkit-text-fill-color: var(--jc42-white) !important;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 40px;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding-bottom: 0 !important;
}

.jc42-retirees-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.jc42-retirees-why-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--jc42-gold);
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.jc42-retirees-why-icon {
  font-size: 36px;
  line-height: 1;
}

.jc42-retirees-why-item strong {
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jc42-retirees-why-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .jc42-retirees-clubs {
    grid-template-columns: 1fr;
  }

  .jc42-retirees-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .jc42-retirees-why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   RETIREES PAGE — ADA + FONT FIX
========================= */

/* Bump ALL text on retirees page to minimum 18px for accessibility */
.jc42-retirees-page,
.jc42-retirees-page li,
.jc42-retirees-page address {
  font-size: 18px !important;
  line-height: 1.8 !important;
}

/* Apply 18px only to non-pullquote paragraphs and spans */
.jc42-retirees-page p:not(.board-pullquote-text p),
.jc42-retirees-page span:not(.board-pullquote-text span) {
  font-size: 18px !important;
  line-height: 1.8 !important;
}

/* Restore pullquote text to full large size */
.jc42-retirees-page .board-pullquote-text p {
  font-size: clamp(22px, 3vw, 32px) !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
  font-family: "Oswald", "Inter", Arial, sans-serif !important;
  color: var(--jc42-white) !important;
}

.jc42-retirees-intro p {
  font-size: 20px !important;
  line-height: 1.85 !important;
  max-width: 900px;
}

/* ADA: Minimum touch target size 44x44px for all phone links */
.jc42-retirees-phone {
  display: inline-flex !important;
  align-items: center;
  min-height: 44px;
  font-size: 18px !important;
  font-weight: 700;
  color: var(--jc42-blue) !important;
  text-decoration: none !important;
  padding: 4px 0;
}

.jc42-retirees-phone:hover,
.jc42-retirees-phone:focus-visible {
  text-decoration: underline !important;
  text-decoration-color: var(--jc42-gold) !important;
  color: var(--jc42-blue) !important;
  outline-offset: 3px;
}

/* ADA: Focus ring visible on all interactive elements */
.jc42-retirees-page a:focus-visible {
  outline: 3px solid var(--jc42-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.jc42-retirees-list li {
  font-size: 18px !important;
  padding: 16px 0 !important;
  gap: 12px !important;
}

.jc42-retirees-name {
  font-size: 18px !important;
  font-weight: 600;
}

.jc42-retirees-location {
  font-size: 13px !important;
  padding: 4px 12px !important;
}

.jc42-retirees-group-heading {
  font-size: 20px !important;
}

.jc42-retirees-office-heading {
  font-size: 16px !important;
}

.jc42-retirees-office-row span,
.jc42-retirees-office-row a {
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.jc42-retirees-office-row a {
  text-decoration: none !important;
  font-weight: 700;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.jc42-retirees-office-row a:hover,
.jc42-retirees-office-row a:focus-visible {
  text-decoration: underline !important;
  text-decoration-color: var(--jc42-gold) !important;
}

.jc42-retirees-office-note {
  font-size: 16px !important;
}

.jc42-retirees-coming-soon {
  font-size: 16px !important;
}

/* =========================
   JC42 VOTER REGISTRATION
========================= */

.jc42-vote-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0 60px;
}

.jc42-vote-hero {
  background: linear-gradient(135deg, #13216a 0%, #0a1750 100%);
  color: #fff;
  border-top: 6px solid var(--jc42-gold);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
  margin-bottom: 34px;
  box-shadow: 0 14px 34px rgba(19, 33, 106, 0.20);
}

.jc42-vote-eyebrow {
  display: inline-block;
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.jc42-vote-hero h2 {
  color: #fff;
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
  border: none;
  padding: 0;
}

.jc42-vote-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.6;
}

.jc42-vote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.jc42-vote-card {
  background: #fff;
  border: 1px solid var(--jc42-border);
  border-top: 5px solid var(--jc42-gold);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(19, 33, 106, 0.08);
}

.jc42-vote-card img {
  width: 145px;
  height: 145px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.jc42-vote-card h3 {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 10px;
  border: none;
}

.jc42-vote-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 auto 22px;
  max-width: 300px;
}

.jc42-vote-card .button {
  min-width: 0;
  padding: 12px 24px;
  font-size: 13px;
}

.jc42-vote-note {
  max-width: 860px;
  margin: 36px auto 0;
  background: var(--jc42-light);
  border-left: 5px solid var(--jc42-gold);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.jc42-vote-note strong {
  color: var(--jc42-blue);
}

@media (max-width: 600px) {
  .jc42-vote-card img {
    width: 125px;
    height: 125px;
  }
}

/* Make organizing feature cards match hero width */
@media (min-width: 900px) {
  .organizing-feature-grid {
    max-width: none !important;
    width: 100%;
  }
}
/* =========================
   RETIREES HERO CARD
========================= */
.jc42-retirees-hero-card {
  position: relative;
  background: linear-gradient(135deg, var(--jc42-blue) 0%, #0a1750 100%);
  border-top: 6px solid var(--jc42-gold);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 14px 34px rgba(19, 33, 106, 0.22);
}

.jc42-retirees-hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
}

/* Decorative blobs */
.jc42-retirees-hero-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(253, 184, 39, 0.08);
  z-index: 1;
  pointer-events: none;
}

.jc42-retirees-hero-deco--left {
  bottom: -100px;
  left: -100px;
}

.jc42-retirees-hero-deco--right {
  top: -100px;
  right: -100px;
}

.jc42-retirees-eyebrow {
  display: block;
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.jc42-retirees-hero-title {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: "Oswald", "Inter", Arial, sans-serif !important;
  font-size: clamp(38px, 6vw, 68px) !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
  margin: 0 0 20px !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.jc42-retirees-hero-sub {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: clamp(16px, 2vw, 19px) !important;
  line-height: 1.7 !important;
  max-width: 760px;
  margin: 0 auto 36px !important;
}

/* Mini stat row inside hero */
.jc42-retirees-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
  max-width: 600px;
  margin: 0 auto;
}

.jc42-retirees-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.jc42-retirees-hero-stat-number {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--jc42-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.jc42-retirees-hero-stat-label {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.3 !important;
  text-align: center;
}

.jc42-retirees-hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}


/* =========================
   PENSION PAGE
========================= */
.jc42-pension-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 0 0;
}
 
/* Hero Card */
.jc42-pension-hero-card {
  position: relative;
  background: linear-gradient(135deg, var(--jc42-blue) 0%, #0a1750 100%);
  border-top: 6px solid var(--jc42-gold);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 14px 34px rgba(19, 33, 106, 0.22);
  text-align: center;
}
 
.jc42-pension-hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vw, 64px);
}
 
.jc42-pension-hero-deco {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(253, 184, 39, 0.08);
  z-index: 1;
  pointer-events: none;
}
 
.jc42-pension-hero-deco--left {
  bottom: -100px;
  left: -80px;
}
 
.jc42-pension-hero-deco--right {
  top: -100px;
  right: -80px;
}
 
.jc42-pension-eyebrow {
  display: block;
  color: var(--jc42-gold);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
 
.jc42-pension-hero-title {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: "Oswald", "Inter", Arial, sans-serif !important;
  font-size: clamp(38px, 5.5vw, 64px) !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
  margin: 0 0 18px !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
 
.jc42-pension-hero-sub {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: clamp(16px, 2vw, 19px) !important;
  line-height: 1.7 !important;
  max-width: 780px;
  margin: 0 auto !important;
}
 
/* Stat Cards */
.jc42-pension-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--jc42-blue);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(19, 33, 106, 0.15);
}
 
.jc42-pension-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
 
.jc42-pension-stat:last-child {
  border-right: none;
}
 
.jc42-pension-stat-number {
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--jc42-gold);
  line-height: 1;
  margin-bottom: 8px;
}
 
.jc42-pension-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  line-height: 1.4;
}
 
/* Main Content: two columns */
.jc42-pension-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}
 
/* Left: Image + Button */
.jc42-pension-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
 
.jc42-pension-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--jc42-border);
  box-shadow: 0 4px 16px rgba(19, 33, 106, 0.1);
}
 
.jc42-pension-button {
  width: 100%;
  text-align: center;
}
 
/* Right: Info */
.jc42-pension-info-heading {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  text-transform: uppercase;
  margin: 0 0 12px;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding-bottom: 0 !important;
}
 
.jc42-pension-gold-bar {
  width: 56px;
  height: 4px;
  background: var(--jc42-gold);
  border-radius: 2px;
  margin-bottom: 20px;
}
 
.jc42-pension-info p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--jc42-text);
  margin-bottom: 16px;
}
 
/* Contact Card */
.jc42-pension-contact-card {
  background: var(--jc42-light, #f8f9fc);
  border: 1px solid var(--jc42-border);
  border-left: 4px solid var(--jc42-gold);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 24px;
}
 
.jc42-pension-contact-heading {
  color: var(--jc42-blue);
  font-family: "Oswald", "Inter", Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
 
.jc42-pension-contact-note {
  font-size: 14px !important;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px !important;
}
 
.jc42-pension-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
 
.jc42-pension-contact-row:last-child {
  margin-bottom: 0;
}
 
.jc42-pension-contact-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
}
 
.jc42-pension-contact-row strong {
  display: block;
  color: var(--jc42-blue);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
 
.jc42-pension-contact-row a {
  font-size: 17px;
  font-weight: 700;
  color: var(--jc42-blue);
  text-decoration: none !important;
}
 
.jc42-pension-contact-row a:hover {
  color: var(--jc42-gold);
  text-decoration: underline !important;
}
 
/* Responsive */
@media (max-width: 768px) {
  .jc42-pension-stats {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .jc42-pension-stat:nth-child(2) {
    border-right: none;
  }
 
  .jc42-pension-stat:nth-child(1),
  .jc42-pension-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
 
  .jc42-pension-content {
    grid-template-columns: 1fr;
  }
 
  .jc42-pension-image {
    max-width: 280px;
    margin: 0 auto;
  }
}
 


@media (max-width: 600px) {
  .jc42-retirees-hero-stat-divider {
    display: none;
  }

  .jc42-retirees-hero-stats {
    gap: 20px;
  }

  .jc42-retirees-hero-stat {
    padding: 0 16px;
  }
}