.net-layout {
  display: grid;
  gap: 2rem;
  padding-bottom: 4rem;
}

@media (min-width: 960px) {
  .net-layout {
    grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
    align-items: start;
    gap: 2.5rem;
  }

  .net-schematic {
    position: sticky;
    top: 5rem;
  }
}

.net-svg {
  width: 100%;
  height: auto;
  display: block;
}

.net-svg .box {
  fill: rgba(10, 12, 16, 0.85);
  stroke: rgba(244, 239, 230, 0.18);
  stroke-width: 1.5;
  transition: stroke 0.25s ease, fill 0.25s ease, filter 0.25s ease;
}

.net-svg .box-wan { stroke: rgba(180, 160, 210, 0.55); }
.net-svg .box-edge { stroke: rgba(100, 150, 120, 0.55); }
.net-svg .box-home { stroke: rgba(180, 160, 210, 0.5); }
.net-svg .box-lab { stroke: rgba(100, 150, 120, 0.45); }
.net-svg .box-ts { stroke: rgba(244, 239, 230, 0.28); }

.net-svg .label {
  fill: #f4efe6;
  font-family: Figtree, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.net-svg .sub {
  fill: #a39e94;
  font-family: Figtree, system-ui, sans-serif;
  font-size: 10px;
}

.net-svg .sub.accent {
  fill: #b4a0d2;
  font-weight: 600;
}

.net-svg .wire {
  stroke: rgba(244, 239, 230, 0.28);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.25s ease;
}

.net-svg .wire-block {
  stroke: rgba(100, 150, 120, 0.55);
  stroke-dasharray: 4 4;
}

.net-svg .net-node {
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.net-svg .net-node.is-active,
.net-svg .net-node.is-done {
  opacity: 1;
}

.net-svg .net-node.is-active .box {
  filter: drop-shadow(0 0 10px rgba(100, 150, 120, 0.5));
  stroke: #649678;
}

.net-story {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.net-step {
  scroll-margin-top: 5.5rem;
}

.net-step.is-active {
  border-color: rgba(100, 150, 120, 0.5);
  box-shadow: 0 0 0 1px rgba(100, 150, 120, 0.25), 0 0 24px rgba(100, 150, 120, 0.15);
}
