@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700;800;900&family=Crimson+Text:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-primary: #15803d;
  --color-hover: #22c55e;
  --color-accent: #dcfce7;
  --color-bg: #f0fdf4;
  --font-main: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Crimson Text', 'Source Sans 3', Georgia, serif;
  --border-radius: 8px;
  --card-radius: 20px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

html, body {
  font-family: var(--font-main);
  color: #1f2937;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

/* Color classes */
[class*="bg-[#2d5a27]"], .bg-primary {
  background-color: var(--color-primary) !important;
}

[class*="text-[#2d5a27]"], .text-primary {
  color: var(--color-primary) !important;
}

[class*="border-[#2d5a27]"], .border-primary {
  border-color: var(--color-primary) !important;
}

.text-emerald-600, .text-green-600, .text-teal-600 {
  color: var(--color-primary) !important;
}

.bg-emerald-600, .bg-green-600, .bg-teal-600 {
  background-color: var(--color-primary) !important;
}

/* Card and button adjustments */
a.rounded-full, button.rounded-full, .btn {
  border-radius: var(--border-radius);
}

.rounded-lg, .rounded-xl, .rounded-2xl {
  border-radius: var(--card-radius);
}

/* Header brand styling */
header a[href*="index"] {
  min-width: 0;
}

header a[href*="index"] > span {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}

/* Notice & Disclaimer styling - natural editorial look */
.notice-box {
  background: #fefce8;
  border-bottom: 1px solid #fef08a;
  color: #713f12;
  font-size: 0.8125rem;
  padding: 0.625rem 1rem;
  text-align: center;
}

.editorial-disclaimer {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 1rem;
  text-align: center;
}
