/* Page-specific theme for the Marked Across Time case file.
   Only overrides the CSS custom properties defined on .project-page
   in the shared /style.css, plus one small link treatment for inline
   text links used in this page's copy (mediaWorks has none, creek has
   its own — same idea here).

   Palette pulled from the actual site (marked/frontend/style.css +
   main.css): the beige background/panel color and the dark ink-brown
   text color are used verbatim. There's no red defined anywhere in
   that site's CSS — the red only ever shows up inside the seal-stamp
   artwork itself (see homeAssets/sealSticker.png), so --proj-accent
   below is sampled directly from that art rather than copied from a
   stylesheet. */

.project-page[data-theme="marked"] {
  --proj-accent: #a44e36;      /* seal-ink red, sampled from the stamp artwork */
  --proj-accent-2: #90703d;    /* carved wood-stamp brown */
  --proj-accent-soft: #f5e6d3; /* beige — actual site's panel/button fill */
  --proj-ink: #402725;         /* dark ink brown — actual site's text color */
}

.project-page[data-theme="marked"] .project-main a {
  color: var(--proj-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.project-page[data-theme="marked"] .project-main a:hover {
  color: var(--proj-ink);
}
