/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --color-primary: #036;
  --color-white: #fff;
  --color-bg-light: #f5f7fa;
  --color-accent: #007a3d;
  --color-gov-bar: #1a1a2e;
  --color-text: #1a1a1a;
  --color-text-muted: #4a4a4a;
  --color-border: #d0d5dd;
  --color-shadow: rgba(0, 0, 0, .08);
  --color-focus: #036;
  --color-urgent: #c0392b;
  --font-scale: 1;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px var(--color-shadow);
  --shadow-md: 0 2px 8px var(--color-shadow);
  --shadow-lg: 0 4px 16px var(--color-shadow);
  --max-width: 1200px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-size: calc(1rem * var(--font-scale));
  color: var(--color-text);
  background-color: var(--color-white);
  min-width: 320px;
  line-height: 1.6;
}

h1 {
  font-size: calc(2rem * var(--font-scale));
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: calc(1.5rem * var(--font-scale));
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: calc(1.25rem * var(--font-scale));
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: calc(1.125rem * var(--font-scale));
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: calc(1rem * var(--font-scale));
  margin-bottom: var(--spacing-md);
}

small {
  font-size: calc(.875rem * var(--font-scale));
}

a {
  color: var(--color-primary);
  text-underline-offset: 2px;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

button, a, input[type="submit"], input[type="button"], select, [role="button"] {
  min-width: 44px;
  min-height: 44px;
}

button {
  font-family: inherit;
  font-size: calc(1rem * var(--font-scale));
  cursor: pointer;
  background: none;
  border: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: calc(1rem * var(--font-scale));
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  padding-inline: var(--spacing-md);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  button, a, input[type="submit"], input[type="button"], select, [role="button"] {
    min-height: unset;
    min-width: unset;
  }

  .container {
    padding-inline: var(--spacing-xl);
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/