.article-container a{
  color: green;
}

/* Stitch-dash motif — a row of "stitches" used as a divider/accent.
   Color comes from the element's text color (set via Tailwind text-*),
   so it adapts to light or dark sections. */
.stitch-line {
  height: 2px;
  width: 100%;
  background-image: repeating-linear-gradient(
    to right,
    currentColor 0 8px,
    transparent 8px 16px
  );
}