#logo-container {
  position: relative;
  width: 84px;
  aspect-ratio: 1062 / 737;
}

/* De twee paden liggen exact op elkaar zodat ze samen het logo vormen */
.logo-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.logo-svg path {
  stroke: var(--wit);     /* wit logo */
  fill: none;
  /* de animatie (stroke-dasharray/-offset) wordt via logo.js ingesteld */
}

/* Tweede SVG (de basislijn) 4px naar onder zodat de paden aansluiten */
.logo-svg:last-child {
  top: 2px;
}

@media screen and (max-width: 680px) {
  #logo-container { width: 60px; }
}
