/* ===== Creative bullets (right side of hero) ===== */
.gov-bullets{
  --card-bg: var(--bg, #e9eef6);
  --surface: var(--surface, #ffffff);
  --muted:   var(--muted, #4b5870);
  display: grid;
  gap: 12px;
}

.gov-bullets__title{
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
}

/* Each pill card */
.gov-bullet{
  --accent: #22c55e;            /* default if not set inline */
  position: relative;
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow:
    8px 8px 18px rgba(34, 47, 62, .12),
    -6px -6px 14px rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  opacity: 0;
  transform: translateX(10px);
  animation: govIn 1.9s ease forwards;
  animation-delay: calc(var(--i,1) * 500ms);
}

/* Accent “leaf/arrow” shape */
.gov-bullet__accent{
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent), #ffffff 80%);
  position: relative;
}
.gov-bullet__accent::after{
  content:"";
  position:absolute; left: 6px; top: 50%;
  width: 12px; height: 12px;
  border-radius: 2px 999px 999px 2px;      /* soft arrow head */
  transform: translateY(-50%) rotate(25deg);
  background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent), #000 18%));
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.12));
}

/* Text */
.gov-bullet__body h4{
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 800;
  color: #2d3440;
}
.gov-bullet__body p{
  margin: 0;
  color: #6b778c;
  font-size: 13.5px;
  line-height: 1.55;
}


/* Slide-in animation */
@keyframes govIn{
  to { opacity:1; transform: translateX(0); }
}

/* Responsive tweaks for narrow hero columns */
@media (max-width: 960px){
  .gov-bullet{ border-radius: 16px; grid-template-columns: 12px 1fr; }
  .gov-bullet__body h4{ font-size: 14.5px; }
  .gov-bullet__body p{ font-size: 13px; }
}
