/* ============================================
   WICStateGuide.com — Site Stylesheet
   Load order: Bootstrap 5 → site.css
   Bootstrap utilities first; custom CSS only
   when Bootstrap cannot cover the requirement.
   ============================================

   1. CSS Custom Properties (design tokens)
   2. Base & Typography overrides
   3. Header & Navigation
   4. Homepage
   5. State pages & subnav
   6. Content pages
   7. Components (cards, badges, pills, alerts)
   8. Footer
   9. Utilities (wic-specific helpers only)
   10. Media queries (mobile overrides last)
============================================ */

/* ============================================
   1. CSS Custom Properties (design tokens)
============================================ */
:root {
  /* Brand colors */
  --wic-green-dark:    #1B4332;
  --wic-green-mid:     #2D6A4F;
  --wic-green-light:   #D8F3DC;
  --wic-peach:         #E07A5F;
  --wic-peach-light:   #FDF0ED;
  --wic-cream:         #FAFAF8;
  --wic-white:         #FFFFFF;
  --wic-charcoal:      #212529;
  --wic-gray-mid:      #6C757D;
  --wic-gray-light:    #F8F9FA;
  --wic-border:        #DEE2E6;

  /* Typography */
  --wic-font-serif:    'Nunito', system-ui, sans-serif;
  --wic-font-sans:     'Nunito', system-ui, sans-serif;
  --wic-font-size-base: 17px;
  --wic-line-height:   1.75;

  /* Layout */
  --wic-content-max:   820px;
  --wic-header-height: 64px;
  --wic-radius:        6px;
  --wic-radius-pill:   999px;

  /* Legacy variable aliases — used in existing inline styles */
  --wic-ink:            var(--wic-charcoal);
  --wic-terracotta:     var(--wic-peach);
  --wic-terracotta-dark: #c9654a;
  --wic-sage:           var(--wic-green-mid);
  --wic-sage-light:     var(--wic-green-light);
  --wic-warm-gray:      var(--wic-gray-mid);
  --wic-gold:           #C8963C;
}

/* ============================================
   2. Base & Typography overrides
============================================ */
body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: var(--wic-font-size-base);
  line-height: var(--wic-line-height);
  color: var(--wic-charcoal);
  background-color: var(--wic-cream);
}

h1, h2, h3, h4 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--wic-green-dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

h1, h2 { letter-spacing: -0.01em; }

p { margin-bottom: 1.25rem; }

/* Content page H2 section anchoring */
.wic-prose h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--wic-gray-light);
}
.wic-prose h2:first-of-type {
  margin-top: 1.5rem;
  border-top: none;
  padding-top: 0;
}
.wic-prose h3 {
  margin-top: 1.75rem;
}

/* Tighten paragraph spacing inside prose */
.wic-prose p {
  margin-bottom: 1rem;
  max-width: 68ch;
}

/* Lists inside prose */
.wic-prose ul,
.wic-prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.wic-prose li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

/* Bold text inside prose */
.wic-prose strong {
  font-weight: 700;
  color: var(--wic-charcoal);
}

a {
  color: var(--wic-green-mid);
  text-decoration: underline;
}
a:hover { color: var(--wic-green-dark); }

.text-muted { font-size: 0.95rem; }

/* Nunito looks best at 600 weight for UI elements */
.navbar,
.wic-nav-link,
.wic-nav-cta,
.wic-subnav-pill,
.btn {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 600;
}

/* Breadcrumb alignment & link color */
nav[aria-label="breadcrumb"] {
  padding-left: 0;
  margin-left: 0;
}
.breadcrumb,
ol.breadcrumb {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0.5rem;
  background-color: transparent;
}
.breadcrumb-item {
  font-size: 0.88rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}
.breadcrumb-item a {
  color: var(--wic-green-mid);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0.5rem;
  background: var(--wic-charcoal);
  color: var(--wic-white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--wic-radius) var(--wic-radius);
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

.wic-page-title-icon {
  display: inline-block;
  margin-right: 0.4rem;
  font-size: 1.6rem;
  vertical-align: middle;
  line-height: 1;
}

/* ============================================
   3. Header & Navigation
============================================ */
.wic-header {
  background-color: var(--wic-green-dark);
  border-bottom: 3px solid var(--wic-peach);
}

.wic-gov-banner {
  background-color: var(--wic-peach-light);
  border-bottom: 1px solid #f0d8d0;
  color: var(--wic-charcoal);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.35rem 1rem;
}

.wic-logo {
  display: flex;
  align-items: center;
  gap: 0.35em;
  font-family: var(--wic-font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wic-white) !important;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.wic-logo:hover { color: var(--wic-green-light) !important; }
.wic-logo-wic {
  color: var(--wic-peach);
  font-weight: 800;
}
.wic-logo-icon {
  height: 1.55em;
  width: auto;
  flex-shrink: 0;
}

.wic-nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem !important;
  border-radius: var(--wic-radius);
  transition: color 0.15s, background-color 0.15s;
  text-decoration: none;
}
.wic-nav-link:hover {
  color: var(--wic-white) !important;
  background-color: rgba(255,255,255,0.12);
}

.wic-nav-cta {
  display: inline-block;
  background-color: var(--wic-peach);
  color: var(--wic-white) !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--wic-radius-pill);
  transition: background-color 0.15s, transform 0.1s;
}
.wic-nav-cta:hover {
  background-color: #c9654a;
  transform: translateY(-1px);
}

.wic-toggler {
  border-color: rgba(255,255,255,0.35);
  padding: 4px 8px;
}
.wic-toggler:focus,
.wic-toggler:focus-visible {
  outline: none;
  box-shadow: none;
  border-color: rgba(255,255,255,0.35);
}
.wic-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas mobile nav */
.wic-offcanvas {
  width: 300px;
  border-right: none;
}
.wic-offcanvas-header {
  background-color: var(--wic-green-dark);
  border-bottom: 2px solid var(--wic-peach);
  padding: 1rem 1.25rem;
}
.wic-offcanvas-logo {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wic-white);
  text-decoration: none;
}
.wic-offcanvas-body {
  background-color: var(--wic-white);
  overflow-y: auto;
}
.wic-offcanvas-section {
  padding: 1rem 1.25rem;
}
.wic-offcanvas-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wic-gray-mid);
  margin-bottom: 0.5rem;
}
.wic-offcanvas-divider {
  margin: 0;
  border-color: var(--wic-gray-light);
  opacity: 1;
}
.wic-offcanvas-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  color: var(--wic-charcoal);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
  border-bottom: 1px solid var(--wic-gray-light);
  transition: color 0.15s, background-color 0.15s;
}
.wic-offcanvas-link:last-child { border-bottom: none; }
.wic-offcanvas-link:hover {
  color: var(--wic-green-dark);
  background-color: var(--wic-green-light);
  padding-left: 8px;
}
.wic-offcanvas-link--sm { font-size: 0.9rem; }
.wic-offcanvas-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.wic-offcanvas-cta {
  background-color: var(--wic-peach);
  color: var(--wic-white);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--wic-radius-pill);
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.15s;
}
.wic-offcanvas-cta:hover {
  background-color: #c9654a;
  color: var(--wic-white);
}

/* ============================================
   4. Homepage
============================================ */

/* Hero */
.wic-hero {
  background-color: var(--wic-green-dark);
  background-image:
    radial-gradient(
      ellipse at 15% 60%,
      rgba(45,106,79,0.7) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 20%,
      rgba(224,122,95,0.18) 0%,
      transparent 50%
    );
  border-bottom: 3px solid var(--wic-peach);
}
.wic-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wic-peach);
}
.wic-hero-headline {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--wic-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.wic-hero-subhead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.wic-hero-hint {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}
.wic-dropdown-constrain { max-width: 400px; }

/* State dropdown overrides inside dark hero */
.wic-hero .wic-state-select-group .input-group-text {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--wic-white);
}
.wic-hero .wic-state-select-group .form-select {
  background-color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.2);
  font-weight: 600;
  font-size: 1rem;
}

/* Benefit cards below hero */
.wic-benefit-card {
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  border-top: 3px solid var(--wic-peach);
  transition: box-shadow 0.15s;
}
.wic-benefit-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.wic-benefit-icon {
  font-size: 1.75rem;
  line-height: 1;
}

/* State grid cards */
.wic-state-card {
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
  color: var(--wic-charcoal);
}
.wic-state-card:hover {
  border-color: var(--wic-green-mid);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: var(--wic-green-dark);
}

/* Mobile hero */
@media (max-width: 575px) {
  .wic-hero-headline { font-size: 1.9rem; }
  .wic-hero-subhead { font-size: 1rem; }
}

/* Homepage section headings */
.wic-home-section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wic-green-dark);
  margin-bottom: 0.25rem;
}
.wic-home-section-heading-bar {
  width: 48px;
  height: 3px;
  background-color: var(--wic-peach);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

/* Who Qualifies block */
.wic-home-qualifies {
  background-color: var(--wic-green-light);
  border-radius: var(--wic-radius);
  padding: 1.5rem;
}
.wic-home-qualifies-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wic-green-dark);
  margin-bottom: 0;
}
.wic-home-qualifies-note {
  font-size: 0.88rem;
  color: var(--wic-gray-mid);
  margin-bottom: 0;
  line-height: 1.6;
}
.wic-home-qualifies-note a {
  color: var(--wic-green-mid);
  font-weight: 600;
}

/* Override .wic-category-item inside green background */
.wic-home-qualifies .wic-category-item {
  background-color: var(--wic-white);
}
.wic-home-qualifies .wic-category-item:hover {
  border-color: var(--wic-green-mid);
}

/* Homepage — How to Apply step cards */
.wic-step-card {
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  border-top: 3px solid var(--wic-green-mid);
  padding: 1rem;
  transition: box-shadow 0.15s;
}
.wic-step-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.wic-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--wic-green-dark);
  color: var(--wic-white);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.wic-steps-list {
  padding-left: 0;
  list-style: none;
}
.wic-steps-list > li {
  list-style: none;
}

/* Desktop connector line through the three step badges */
.wic-steps-wrapper {
  position: relative;
}
@media (min-width: 768px) {
  .wic-steps-wrapper::before {
    content: '';
    position: absolute;
    top: calc(1rem + 20px); /* card top-padding + half badge height */
    left: calc(1rem + 20px); /* card padding + half badge width */
    right: calc(1rem + 20px);
    height: 2px;
    background-color: var(--wic-green-light);
    z-index: 0;
  }
}

/* How to Apply CTA — green pill button, secondary to orange nav CTA */
.wic-step-cta {
  display: inline-block;
  background-color: var(--wic-green-dark);
  color: var(--wic-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--wic-radius-pill);
  transition: background-color 0.15s, transform 0.1s;
}
.wic-step-cta:hover {
  background-color: var(--wic-green-mid);
  color: var(--wic-white);
  transform: translateY(-1px);
}

/* ============================================
   5. State pages & subnav
============================================ */
.wic-state-subnav { margin-bottom: 1.5rem; }

.wic-subnav-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--wic-radius-pill);
  border: 1.5px solid var(--wic-green-mid);
  color: var(--wic-green-mid);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.wic-subnav-pill:hover {
  background-color: var(--wic-green-light);
  color: var(--wic-green-dark);
  border-color: var(--wic-green-dark);
}
.wic-subnav-pill--active {
  background-color: var(--wic-green-dark);
  color: var(--wic-white);
  border-color: var(--wic-green-dark);
}
.wic-subnav-pill--active:hover {
  background-color: var(--wic-green-mid);
  color: var(--wic-white);
}

.wic-contact-card {
  border: 1px solid var(--wic-border);
  border-top: 3px solid var(--wic-green-mid);
  border-radius: var(--wic-radius);
  background-color: var(--wic-white);
}

/* ============================================
   6. Content pages
============================================ */
.wic-badge-updated {
  background-color: var(--wic-green-light);
  color: var(--wic-green-dark);
  font-weight: 500;
  font-size: 0.82rem;
  border-radius: var(--wic-radius-pill);
  padding: 4px 12px;
}

/* Constrain prose reading width for comfort */
.wic-prose {
  max-width: 720px;
}

/* Section divider line above FAQ heading */
.wic-prose h2.wic-section-faq {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--wic-green-light);
  color: var(--wic-green-dark);
}

/* Lead paragraph — first p after H1 */
.wic-prose > p:first-of-type {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--wic-gray-mid);
  margin-bottom: 1.5rem;
}

/* Callout box for important notes */
.wic-callout {
  background-color: var(--wic-green-light);
  border-left: 4px solid var(--wic-green-mid);
  border-radius: 0 var(--wic-radius) var(--wic-radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.wic-callout p:last-child { margin-bottom: 0; }

/* Warning callout variant */
.wic-callout-warn {
  background-color: var(--wic-peach-light);
  border-left: 4px solid var(--wic-peach);
  border-radius: 0 var(--wic-radius) var(--wic-radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.wic-callout-warn p:last-child { margin-bottom: 0; }

/* Action callout — peach variant for CTA boxes */
.wic-callout-action {
  background-color: var(--wic-peach-light);
  border-left: 4px solid var(--wic-peach);
  border-radius: 0 var(--wic-radius) var(--wic-radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
}
.wic-callout-action p:last-child { margin-bottom: 0; }
.wic-callout-action a {
  color: var(--wic-peach);
  font-weight: 600;
}
.wic-callout-action a:hover {
  color: var(--wic-green-dark);
}

.wic-page-title {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--wic-green-dark);
}
@media (max-width: 575px) {
  .wic-page-title { font-size: 1.5rem; }
}

/* FAQ page jump navigation — /wic-faq */
.wic-faq-jumpnav {
  background-color: var(--wic-gray-light);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  padding: 1rem 1.1rem;
}
.wic-faq-jumpnav-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--wic-gray-mid);
  margin-bottom: 0.6rem;
}
.wic-faq-jumpnav-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--wic-radius-pill);
  border: 1.5px solid var(--wic-green-mid);
  color: var(--wic-green-mid);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.wic-faq-jumpnav-pill:hover {
  background-color: var(--wic-green-dark);
  color: var(--wic-white);
  border-color: var(--wic-green-dark);
}

/* ============================================
   7. Components (cards, badges, pills, alerts)
============================================ */

/* Accordion */
.accordion-button {
  font-size: 1rem;
  font-weight: 500;
  color: var(--wic-charcoal);
  background-color: var(--wic-white);
}
.accordion-button:not(.collapsed) {
  color: var(--wic-green-dark);
  background-color: var(--wic-green-light);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(45,106,79,0.2);
  border-color: var(--wic-green-mid);
}
.accordion-item {
  border: 1px solid var(--wic-border);
  margin-bottom: 4px;
  border-radius: var(--wic-radius) !important;
  overflow: hidden;
}
.accordion-item:last-child { margin-bottom: 0; }
.accordion-body {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--wic-charcoal);
}
.accordion-body p {
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
  line-height: 1.7;
}
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}
.accordion-body li {
  margin-bottom: 0.3rem;
  font-size: 0.97rem;
}
.accordion-body strong {
  font-weight: 700;
  color: var(--wic-charcoal);
}

/* FAQ block wrapper — green left-border accordion on national content pages */
.wic-faq-block {
  margin-top: 0;
  background-color: transparent;
  padding: 0;
}
.wic-faq-block .accordion {
  background-color: transparent;
  --bs-accordion-bg: transparent;
}
.wic-faq-block .accordion-item {
  background-color: var(--wic-green-light);
  border: none;
  border-left: 4px solid var(--wic-green-mid);
  border-radius: 0 var(--wic-radius) var(--wic-radius) 0 !important;
  margin-bottom: 6px;
  overflow: hidden;
}
.wic-faq-block .accordion-item:last-child {
  margin-bottom: 0;
}
.wic-faq-block .accordion-button {
  background-color: var(--wic-green-light);
  color: var(--wic-green-dark);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.9rem 1rem;
  box-shadow: none;
}
.wic-faq-block .accordion-button:not(.collapsed) {
  background-color: var(--wic-green-light);
  color: var(--wic-green-dark);
  box-shadow: none;
}
.wic-faq-block .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(45,106,79,0.2);
}
.wic-faq-block .accordion-button::after {
  filter: invert(27%) sepia(51%) saturate(500%)
          hue-rotate(95deg) brightness(90%) contrast(90%);
}
.wic-faq-block .accordion-collapse {
  background-color: var(--wic-green-light);
}
.wic-faq-block .accordion-body {
  padding: 0.25rem 1rem 1rem;
  font-size: 0.95rem;
  color: var(--wic-charcoal);
  border-top: 1px solid rgba(45,106,79,0.15);
}
.wic-faq-block .accordion-body p:last-child {
  margin-bottom: 0;
}

/* State dropdown callout card — green card on content pages */
.wic-state-card-callout {
  background-color: var(--wic-green-light);
  border: 1px solid var(--wic-green-mid);
  border-left: 4px solid var(--wic-green-mid);
  border-radius: var(--wic-radius);
  padding: 1.25rem 1.25rem 1rem;
  margin-bottom: 1.5rem;
}
.wic-state-card-callout-label {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--wic-green-dark);
  margin-bottom: 0;
}
.wic-state-card-callout-hint {
  font-size: 0.9rem;
  color: var(--wic-green-mid);
  margin-bottom: 0;
}

/* Info card — icon + body, green left border */
.wic-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  border-left: 3px solid var(--wic-green-mid);
  padding: 1.1rem;
}
.wic-info-card-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  line-height: 1;
  margin-top: 2px;
}
.wic-info-card-body {
  flex: 1;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--wic-charcoal);
}
.wic-info-card-body p:last-child { margin-bottom: 0; }

/* Quantity card — peach tinted callout */
.wic-quantity-card {
  background-color: var(--wic-peach-light);
  border: 1px solid rgba(224,122,95,0.2);
  border-radius: var(--wic-radius);
  padding: 1.1rem 1.25rem;
}
.wic-quantity-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--wic-peach);
  margin-bottom: 0.5rem;
}

/* Stat cards — state pages */
.wic-stat-card {
  background-color: var(--wic-gray-light);
  border-radius: var(--wic-radius);
  border: 1px solid var(--wic-border);
}

/* Cross-link blocks */
.wic-crosslink {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--wic-radius);
  text-decoration: none;
  background-color: var(--wic-green-light);
  color: var(--wic-green-dark);
  transition: background-color 0.15s;
}
.wic-crosslink:hover {
  background-color: #b7e4c7;
  color: var(--wic-green-dark);
}
.wic-crosslink--alt {
  background-color: var(--wic-peach-light);
  color: var(--wic-peach);
}
.wic-crosslink--alt:hover {
  background-color: #faddcc;
  color: var(--wic-peach);
}

/* WIC vs SNAP page — comparison table */
.wic-section-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wic-green-dark);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--wic-green-light);
  margin-bottom: 1.25rem;
}

.wic-compare-table {
  font-size: 0.95rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--wic-radius);
  overflow: hidden;
  border: 1px solid var(--wic-border);
}
.wic-compare-table thead tr {
  background-color: var(--wic-green-dark);
}
.wic-compare-table thead th {
  color: var(--wic-white);
  font-weight: 600;
  padding: 0.85rem 1rem;
  border: none;
  font-size: 0.92rem;
  vertical-align: middle;
  background-color: var(--wic-green-dark);
}
.wic-compare-table thead th:first-child {
  width: 30%;
}
.wic-compare-table tbody tr:nth-child(odd) {
  background-color: var(--wic-gray-light);
}
.wic-compare-table tbody tr:nth-child(even) {
  background-color: var(--wic-white);
}
.wic-compare-table tbody td {
  padding: 0.85rem 1rem;
  border: none;
  border-bottom: 1px solid var(--wic-border);
  font-size: 0.93rem;
  vertical-align: top;
  line-height: 1.55;
}
.wic-compare-table tbody tr:last-child td {
  border-bottom: none;
}
.wic-compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--wic-green-dark);
  font-size: 0.88rem;
}
.wic-compare-label {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--wic-radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.wic-compare-label--wic {
  background-color: var(--wic-peach);
  color: var(--wic-white);
  display: inline-block;
  padding: 3px 14px;
  border-radius: var(--wic-radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
}
.wic-compare-label--snap {
  background-color: var(--wic-white);
  color: var(--wic-green-dark);
  display: inline-block;
  padding: 3px 14px;
  border-radius: var(--wic-radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.6);
}

/* "Can I get both" callout card */
.wic-yes-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--wic-green-light);
  border: 1px solid rgba(45,106,79,0.25);
  border-radius: var(--wic-radius);
  padding: 1.25rem;
}
.wic-yes-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.wic-yes-card-headline {
  font-weight: 700;
  font-size: 1rem;
  color: var(--wic-green-dark);
}

/* Key differences list items */
.wic-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
}
.wic-diff-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  line-height: 1.4;
}
.wic-diff-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--wic-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.wic-diff-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--wic-charcoal);
}

/* Program decision cards (WIC vs SNAP) */
.wic-program-card {
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wic-program-card--wic {
  border-top: 3px solid var(--wic-peach);
}
.wic-program-card--snap {
  border-top: 3px solid var(--wic-green-mid);
}
.wic-program-card-header {
  margin-bottom: 0.25rem;
}
.wic-program-card-badge {
  display: inline-block;
  background-color: var(--wic-peach);
  color: var(--wic-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: var(--wic-radius-pill);
}
.wic-program-card-badge--snap {
  background-color: var(--wic-green-mid);
}
.wic-program-card-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--wic-green-dark);
  margin-bottom: 0.5rem;
}
.wic-program-card-list {
  padding-left: 1.25rem;
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.65;
}
.wic-program-card-list li {
  margin-bottom: 0.35rem;
}
.wic-program-card-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--wic-peach);
  text-decoration: none;
  margin-top: auto;
}
.wic-program-card-link:hover {
  color: var(--wic-green-dark);
  text-decoration: underline;
}
.wic-program-card-note {
  font-size: 0.88rem;
  color: var(--wic-gray-mid);
  line-height: 1.6;
}

/* WIC vs SNAP — mobile comparison cards */
.wic-compare-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wic-compare-card {
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  padding: 1rem;
}
.wic-compare-card-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--wic-gray-mid);
  margin-bottom: 0.6rem;
}
.wic-compare-card-col {
  border-radius: var(--wic-radius);
  padding: 0.6rem 0.75rem;
  height: 100%;
}
.wic-compare-card-col--wic {
  background-color: var(--wic-peach-light);
  border: 1px solid rgba(224,122,95,0.2);
}
.wic-compare-card-col--snap {
  background-color: var(--wic-green-light);
  border: 1px solid rgba(45,106,79,0.15);
}
.wic-compare-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--wic-radius-pill);
  margin-bottom: 0.4rem;
}
.wic-compare-card-badge--wic {
  background-color: var(--wic-peach);
  color: var(--wic-white);
}
.wic-compare-card-badge--snap {
  background-color: var(--wic-green-mid);
  color: var(--wic-white);
}
.wic-compare-card-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--wic-charcoal);
  margin-bottom: 0;
}

/* Eligibility page — numbered requirement cards */
.wic-req-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  border-left: 3px solid var(--wic-peach);
  padding: 1.1rem 1.1rem 1.1rem 1rem;
}
.wic-req-card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: var(--wic-peach);
  color: var(--wic-white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.wic-req-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wic-green-dark);
  margin-bottom: 0.3rem;
}
.wic-req-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--wic-charcoal);
  margin-bottom: 0;
}

/* Eligibility page — categorical eligibility card list */
.wic-category-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wic-category-item:hover {
  border-color: var(--wic-green-mid);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.wic-category-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.wic-category-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wic-green-dark);
  margin-bottom: 0.2rem;
}
.wic-category-text {
  font-size: 0.88rem;
  color: var(--wic-gray-mid);
  line-height: 1.5;
  margin-bottom: 0;
}
.wic-category-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wic-green-mid);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.wic-category-link:hover {
  color: var(--wic-green-dark);
  text-decoration: underline;
}

/* Eligibility page — immigration trust card */
.wic-trust-card {
  background-color: var(--wic-green-light);
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: var(--wic-radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wic-trust-card-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.wic-trust-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Eligibility page — document checklist */
.wic-checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  overflow: hidden;
}
.wic-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  background-color: var(--wic-white);
  border-bottom: 1px solid var(--wic-border);
}
.wic-checklist-item:last-child {
  border-bottom: none;
}
.wic-checklist-item:nth-child(even) {
  background-color: var(--wic-gray-light);
}
.wic-checklist-icon {
  color: var(--wic-green-mid);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Benefits page — four-up summary cards */
.wic-benefit-summary-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  border-top: 3px solid var(--wic-green-mid);
  padding: 1.1rem;
  transition: box-shadow 0.15s;
}
.wic-benefit-summary-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.wic-benefit-summary-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  line-height: 1;
  margin-top: 2px;
}
.wic-benefit-summary-title {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--wic-green-dark);
  margin-bottom: 0.3rem;
}
.wic-benefit-summary-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--wic-gray-mid);
  margin-bottom: 0;
}

/* Benefits page — food category pill tags */
.wic-food-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wic-food-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: var(--wic-green-light);
  color: var(--wic-green-dark);
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: var(--wic-radius-pill);
  padding: 5px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Benefits page — participant type nav cards */
.wic-participant-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 0.75rem;
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  text-decoration: none;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s,
              background-color 0.15s;
}
.wic-participant-card:hover {
  border-color: var(--wic-green-mid);
  background-color: var(--wic-green-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.wic-participant-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.wic-participant-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wic-green-dark);
  line-height: 1.3;
}

/* Food category grid cards — approved-foods page */
.wic-food-cat-card {
  display: block;
  text-decoration: none;
  height: 100%;
}
.wic-food-cat-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-top: 3px solid var(--wic-peach);
  border-radius: var(--wic-radius);
  padding: 1.1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  height: 100%;
}
.wic-food-cat-card:hover .wic-food-cat-card-inner {
  border-color: var(--wic-green-mid);
  border-top-color: var(--wic-green-mid);
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.wic-food-cat-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.wic-food-cat-label {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--wic-green-dark);
  margin-bottom: 0.2rem;
}
.wic-food-cat-desc {
  font-size: 0.86rem;
  color: var(--wic-gray-mid);
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}
.wic-food-cat-arrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wic-green-mid);
  margin-top: 0.5rem;
}
.wic-food-cat-card:hover .wic-food-cat-arrow {
  color: var(--wic-green-dark);
}

/* Declined-card warn checklist variant */
.wic-checklist--warn .wic-checklist-item {
  background-color: #FFFBF0;
}
.wic-checklist--warn .wic-checklist-item:nth-child(even) {
  background-color: #FFF6DC;
}
.wic-checklist-icon--warn {
  color: #B45309;
  font-weight: 800;
  font-size: 0.95rem;
}

/* Excluded-income checklist variant (income-limits page) */
.wic-checklist--excluded .wic-checklist-item {
  background-color: var(--wic-gray-light);
}
.wic-checklist--excluded .wic-checklist-item:nth-child(even) {
  background-color: #F1F3F5;
}
.wic-checklist-icon--excluded {
  color: var(--wic-gray-mid);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Lost/stolen urgent alert card */
.wic-urgent-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #FFF6F6;
  border: 1px solid rgba(185,28,28,0.15);
  border-left: 3px solid #DC2626;
  border-radius: var(--wic-radius);
  padding: 1.1rem 1.25rem;
}
.wic-urgent-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.wic-urgent-card-title {
  font-weight: 700;
  font-size: 0.97rem;
  color: #B91C1C;
}

/* Pregnant page — trimester timeline cards */
.wic-trimester-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  padding: 1rem 1.1rem;
}
.wic-trimester-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  background-color: var(--wic-peach);
  color: var(--wic-white);
  border-radius: var(--wic-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  padding: 0 8px;
  white-space: nowrap;
}
.wic-trimester-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wic-green-dark);
  margin-bottom: 0.25rem;
}
.wic-trimester-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--wic-charcoal);
  margin-bottom: 0;
}

/* Infant page — feeding type cards */
.wic-feeding-card {
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  padding: 1rem 1.1rem;
}
.wic-feeding-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--wic-radius-pill);
  margin-bottom: 0.6rem;
}
.wic-feeding-badge--breast {
  background-color: var(--wic-green-light);
  color: var(--wic-green-dark);
}
.wic-feeding-badge--partial {
  background-color: #FEF9C3;
  color: #854D0E;
}
.wic-feeding-badge--formula {
  background-color: var(--wic-peach-light);
  color: #9A3412;
}
.wic-feeding-text {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--wic-charcoal);
}

/* Breastfeeding page — duration comparison stat cards */
.wic-duration-card {
  border-radius: var(--wic-radius);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--wic-border);
}
.wic-duration-card--breast {
  background-color: var(--wic-green-light);
  border-color: rgba(45,106,79,0.2);
}
.wic-duration-card--post {
  background-color: var(--wic-gray-light);
  border-color: var(--wic-border);
}
.wic-duration-num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--wic-green-dark);
}
.wic-duration-card--post .wic-duration-num {
  color: var(--wic-gray-mid);
}
.wic-duration-unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wic-green-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.wic-duration-card--post .wic-duration-unit {
  color: var(--wic-gray-mid);
}
.wic-duration-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--wic-green-dark);
  margin-bottom: 0.5rem;
}
.wic-duration-card--post .wic-duration-label {
  color: var(--wic-charcoal);
}
.wic-duration-text {
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--wic-charcoal);
  margin-bottom: 0;
}

/* Legal notice callout — amber warning variant (immigration page) */
.wic-legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: #FFFBF0;
  border: 1px solid rgba(180,83,9,0.2);
  border-left: 3px solid #D97706;
  border-radius: var(--wic-radius);
  padding: 0.9rem 1rem;
}
.wic-legal-notice-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.wic-legal-notice p {
  color: #78350F;
  line-height: 1.6;
}

/* State participation table — first-column and link overrides */
.wic-state-table tbody td:first-child {
  font-weight: 500;
  color: var(--wic-charcoal);
}
.wic-state-table-link {
  color: var(--wic-green-mid);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}
.wic-state-table-link:hover {
  color: var(--wic-green-dark);
  text-decoration: underline;
}

/* Holiday page — two-column holiday grid */
.wic-holiday-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 576px) {
  .wic-holiday-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.wic-holiday-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  font-size: 0.92rem;
}
.wic-holiday-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Glossary page — letter dividers and term cards */
.wic-glossary-letter {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wic-green-dark);
  background-color: var(--wic-green-light);
  border-radius: var(--wic-radius);
  padding: 4px 12px;
  margin-bottom: 8px;
  margin-top: 1.5rem;
  display: inline-block;
}
.wic-glossary-letter:first-child {
  margin-top: 0;
}
.wic-glossary-term {
  background-color: var(--wic-white);
  border: 1px solid var(--wic-border);
  border-radius: var(--wic-radius);
  padding: 1rem 1.1rem;
  margin-bottom: 8px;
}
.wic-glossary-term dt {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--wic-green-dark);
  margin-bottom: 0.4rem;
}
.wic-glossary-term dd {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--wic-charcoal);
  margin-left: 0;
  margin-bottom: 0;
}
.wic-glossary-term dd a {
  color: var(--wic-green-mid);
  font-weight: 500;
}

/* Date pill — "Last reviewed" / "Last updated" display on state and content pages */
.wic-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--wic-sage-light);
    border: 1px solid var(--wic-border);
    border-radius: var(--wic-radius-pill);
    padding: 0.3rem 0.85rem;
    font-size: 0.82rem;
    color: var(--wic-charcoal);
    font-weight: 500;
    line-height: 1.3;
}

.wic-date-pill-icon {
    font-size: 0.9rem;
    line-height: 1;
}

.wic-date-pill-separator {
    color: var(--wic-gray-mid);
    margin: 0 0.15rem;
}

/* ============================================
   8. Footer
============================================ */
.wic-footer {
  background-color: var(--wic-green-dark);
  border-top: 3px solid var(--wic-peach);
}
.wic-footer-logo {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wic-white);
  text-decoration: none;
  line-height: 1;
}
.wic-footer-logo:hover { color: var(--wic-green-light); }
.wic-footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 0;
}
.wic-footer-col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.wic-footer-link {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
  line-height: 1.4;
}
.wic-footer-link:hover { color: var(--wic-white); }
.wic-footer-link-sm {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.15s;
}
.wic-footer-link-sm:hover { color: var(--wic-white); }
.wic-footer-divider-dot {
  color: rgba(255,255,255,0.25);
  font-size: 0.82rem;
}
.wic-footer-rule {
  border-color: rgba(255,255,255,0.15);
  opacity: 1;
}
.wic-footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin-bottom: 0;
}

/* ============================================
   9. Utilities (wic-specific helpers only)
============================================ */
.wic-state-select-group .input-group-text {
  background-color: var(--wic-green-dark);
  color: var(--wic-white);
  border-color: var(--wic-green-dark);
  font-size: 0.95rem;
}
.wic-state-select-group .form-select:focus {
  border-color: var(--wic-green-mid);
  box-shadow: 0 0 0 0.2rem rgba(45,106,79,0.25);
}

/* Min-height for all tap targets */
.btn { min-height: 44px; }

/* ============================================
   10. Media queries (mobile overrides last)
============================================ */
@media (max-width: 991px) {
  .wic-nav-link { padding: 0.6rem 0.25rem !important; }
  .wic-nav-cta {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 575px) {
  .wic-benefit-card { border-top-width: 2px; }
  /* Subnav scrolls horizontally on very small screens */
  .wic-state-subnav > div {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .wic-category-item {
    flex-wrap: wrap;
  }
  .wic-category-link {
    margin-left: calc(36px + 1rem);
  }
}
