/* Accent word ("Over [werkgever]") — `font-size`/`line-height: inherit` defeat
   the global `span { font-size }` reset in app.css (CSS-only exception per
   CLAUDE.md) so the word tracks the heading's size instead of dropping to the
   base text size. */
.company-info__accent {
    font-size: inherit;
    line-height: inherit;
}

/* Stat badge icon SVG — size and recolor the injected markup (can't add
   classes to the generated <svg>). Badge carries text-green, so currentColor
   renders stroke icons in brand green. */
.company-info__stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* "About" WYSIWYG output — the flex gap-6 wrapper spaces each <p>, but browsers
   also apply their own default paragraph margin on top of that; zero it out
   so the gap is the only spacing (CSS-only exception per CLAUDE.md, since the
   WYSIWYG's raw HTML output can't take Tailwind classes directly). */
.company-info__about p {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}
