.md-header__button.md-logo img,
.md-nav__button.md-logo img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}

.growth-map {
  position: relative;
  width: min(100%, 760px);
  height: 420px;
  margin: 1rem 0 0.75rem;
}

.growth-map__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.growth-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4a4945;
  font: inherit;
  cursor: grab;
  transform: translate(-50%, -50%);
  z-index: 2;
  user-select: none;
  touch-action: none;
}

.growth-node--label-left {
  flex-direction: row-reverse;
}

.growth-node--label-below {
  flex-direction: column;
  gap: 0.35rem;
}

.growth-node__dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background: #fbfbf8;
  box-shadow: 0 8px 18px rgba(162, 171, 186, 0.12);
  flex: 0 0 auto;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.growth-node__label {
  font-size: 1.04rem;
  line-height: 1;
  white-space: nowrap;
  paint-order: stroke;
  stroke: rgba(252, 251, 248, 0.98);
  stroke-width: 6px;
  stroke-linejoin: round;
}

.growth-node--core .growth-node__dot {
  width: 26px;
  height: 26px;
}

.growth-node--core .growth-node__label {
  font-size: 1.28rem;
}

.growth-node--large .growth-node__dot {
  width: 22px;
  height: 22px;
}

.growth-node--large .growth-node__label {
  font-size: 1.16rem;
}

.growth-node--core .growth-node__dot {
  background: #f3bc98;
}

.growth-node--orange .growth-node__dot {
  background: #f1cf9c;
}

.growth-node--teal .growth-node__dot {
  background: #b8ddd7;
}

.growth-node--navy .growth-node__dot {
  background: #c7d3e7;
}

.growth-node--ghost .growth-node__dot {
  background: #fcfcfa;
  border-color: #e7e5dd;
}

.growth-node.is-dimmed {
  opacity: 0.42;
}

.growth-node.is-active .growth-node__dot,
.growth-node:hover .growth-node__dot,
.growth-node:focus-visible .growth-node__dot {
  transform: scale(1.16);
  box-shadow: 0 12px 24px rgba(173, 181, 194, 0.18);
}

.growth-node.is-dragging {
  cursor: grabbing;
  z-index: 4;
}

.growth-node.is-dragging .growth-node__dot {
  transform: scale(1.12);
  box-shadow: 0 16px 28px rgba(155, 164, 180, 0.24);
}

.growth-node:focus-visible {
  outline: none;
}

@media (max-width: 720px) {
  .growth-map {
    height: 500px;
    margin-top: 1.25rem;
  }

  .growth-node {
    width: 4.8rem;
    text-align: center;
  }

  .growth-node__label {
    white-space: normal;
    line-height: 1.18;
    font-size: 0.9rem;
    stroke-width: 5px;
  }
}

@media (max-width: 520px) {
  .growth-map {
    height: 520px;
  }

  .growth-node {
    width: 4.4rem;
  }

  .growth-node__label {
    font-size: 0.82rem;
  }

  .growth-node--core .growth-node__label {
    font-size: 0.96rem;
  }

  .growth-node--large .growth-node__label {
    font-size: 0.88rem;
  }

  .growth-node__dot {
    width: 14px;
    height: 14px;
  }

  .growth-node--large .growth-node__dot {
    width: 18px;
    height: 18px;
  }

  .growth-node--core .growth-node__dot {
    width: 22px;
    height: 22px;
  }
}
