
/* ---------- Large Centered Container ---------- */
.stage-wrap {
  position: relative;
  margin: 10px auto 40px auto;
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible;
}

.network {
  width: 100%;
  height: auto;
  min-height: 550px;
  max-height: 750px;
  display: block;
  margin: 0 auto;
  overflow: visible;
}

/* ---------- Interactive Node Typography & Circles ---------- */
.node {
  cursor: pointer;
  transition: opacity 0.35s ease;
}

.node .n-label {
  font-family: 'Fraunces', Georgia, serif;
  fill: var(--cream);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  pointer-events: none;
  transition: fill 0.3s ease;
}

.node:hover .n-label {
  fill: var(--accent-gold);
}

.node circle.core {
  fill: var(--panel);
  stroke: var(--accent-red);
  stroke-width: 2.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.node circle.ring {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 1.2px;
  opacity: 0.4;
  stroke-dasharray: 6 4;
  transition: all 0.3s ease;
}

/* Hover Effect: Glowing Core Circle */
.node:hover circle.core {
  fill: var(--accent-red);
  stroke: var(--cream);
  stroke-width: 3.5px;
  filter: drop-shadow(0 0 20px rgba(200, 75, 66, 0.85));
}

.node:hover circle.ring {
  opacity: 0.85;
  stroke: var(--cream);
}

.node .n-count {
  font-family: 'IBM Plex Mono', monospace;
  fill: var(--accent-gold);
  font-size: 19px;
  font-weight: 700;
  pointer-events: none;
}

/* ---------- Connections (Filaments) ---------- */
.edge { 
  stroke: var(--accent-gold); 
  opacity: 0.25; 
  stroke-width: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

.edge.lit { 
  opacity: 0.95; 
  stroke: var(--accent-red); 
  stroke-width: 3.5;
  filter: drop-shadow(0 0 12px rgba(200, 75, 66, 0.85));
}

/* ---------- Publication Cards Styling ---------- */
.card-wall { 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.card:hover { 
  border-left-color: var(--accent-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.card .tag {
  color: var(--accent-red);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  color: var(--cream);
  line-height: 1.4;
  margin: 12px 0;
}