/* Minimal replacement CSS (vendor-bundle) for offline preview.
   This is NOT the original vendor bundle; it only provides basic resets. */

:root {
  --primary: var(--color-custom-variant, #950000);
  --text: #111;
  --bg: #f6f6f6;
  --surface: #fff;
  --muted: #666;
  --border: #e5e5e5;
  --shadow: 0 8px 20px rgba(0,0,0,.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

ul, ol {
  padding-left: 1.25rem;
}

.visuallyhidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; /* added line */
  border: 0;
}
