/* ════════════════════════════════════════════════════════
   7 · NETWORK SHORTCUT CARD
   ════════════════════════════════════════════════════════ */
.network-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--cardb);
  border-radius: 18px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.network-card:hover {
  border-color: rgba(232,65,66,0.32);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232,65,66,0.10);
}
.nc-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nc-logo { height: 34px; width: auto; }
.nc-avax { height: 28px; }
.nc-x {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ar);
  font-weight: 700;
}
.nc-text { flex: 1; }
.nc-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.nc-sub {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}
.nc-sub strong { color: var(--text); font-weight: 600; }
.nc-arrow {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--t3);
  transition: transform 0.25s ease, color 0.25s ease;
}
.network-card:hover .nc-arrow { transform: translateX(4px); color: var(--text); }

@media (max-width: 600px) {
  .network-card { flex-direction: column; text-align: center; }
}

