/* Supplemental utilities used by the hand-authored Eleventy templates that the
   vendored design stylesheet (compiled from the redesign source) does not include.
   Attribute selectors match the literal Tailwind-style class tokens without escaping.
   Loaded after styles.css so it wins ties. */

#cookie-consent.cookie-consent--hidden { display: none; }

[class~="bottom-4"] { bottom: 1rem; }
[class~="z-[90]"] { z-index: 90; }
[class~="bg-[rgba(250,250,250,0.92)]"] { background-color: rgba(250, 250, 250, 0.92); }
[class~="shadow-[0_8px_40px_rgba(0,0,0,0.1)]"] { box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1); }
[class~="max-w-[18ch]"] { max-width: 18ch; }

@media (min-width: 768px) {
  [class~="md:pt-[200px]"] { padding-top: 200px; }
}
