#pilot-assistant .local-intel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.local-intel-card {
  position: relative;
  min-height: 438px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(15,21,32,.96), rgba(10,16,26,.98)),
    radial-gradient(circle at 26% 0%, rgba(59,130,246,.16), transparent 45%);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(59,130,246,.035), 0 22px 70px rgba(0,0,0,.24);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.local-intel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 2%, rgba(99,102,241,.16), transparent 42%);
  opacity: .55;
  pointer-events: none;
}

.local-intel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,.32);
  background:
    linear-gradient(180deg, rgba(20,28,42,.98), rgba(10,16,26,.98)),
    radial-gradient(circle at 26% 0%, rgba(59,130,246,.2), transparent 45%);
}

.local-intel-art {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 104px;
  margin: -10px 0 18px;
}

.local-intel-art svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 26px rgba(59,130,246,.24));
}

.local-intel-card h3 {
  position: relative;
  z-index: 1;
  min-height: 66px;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
}

.local-intel-card ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.local-intel-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: #9fb4cf;
  font-size: .86rem;
  line-height: 1.42;
}

.local-intel-card li::before {
  content: "";
  width: 15px;
  height: 10px;
  margin-top: 4px;
  border-left: 2px solid #6ea1ff;
  border-bottom: 2px solid #6ea1ff;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 6px rgba(59,130,246,.45));
}

.li-svg-base {
  fill: #111a2b;
  stroke: rgba(147,187,251,.42);
  stroke-width: 1.5;
}

.li-svg-face {
  fill: url(#li-face);
  stroke: rgba(147,187,251,.62);
  stroke-width: 1.5;
}

.li-svg-side {
  fill: #243b84;
  stroke: rgba(147,187,251,.42);
  stroke-width: 1.3;
}

.li-svg-soft {
  fill: rgba(147,187,251,.18);
}

.li-svg-line {
  fill: none;
  stroke: #d8e7ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.li-svg-blue {
  fill: #6ea1ff;
}

@media (max-width: 1180px) {
  #pilot-assistant .local-intel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  #pilot-assistant .local-intel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-intel-card {
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  #pilot-assistant .local-intel-grid {
    grid-template-columns: 1fr;
  }

  .local-intel-card {
    min-height: 0;
  }

  .local-intel-card h3 {
    min-height: 0;
  }
}
