/* Morph – fills container width and height */
.c-morph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
}

.c-morph__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-morph__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-morph__path {
  transform-origin: 50% 50%;
  will-change: d;
}
