/* Baltorina - Unique warm-neutral + sage aesthetic */
/* Different from previous ice-blue site: softer cream bg, sage accents, 16px radius, medium soft shadows */

:root {
  --sage: #6B8E6B;
  --warm-bg: #F9F5F0;
  --text-dark: #2C2522;
  --border: #EDE4D9;
}

body {
  background-color: var(--warm-bg);
}

.modern-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -5px rgb(44 37 34 / 0.08), 
              0 6px 8px -4px rgb(44 37 34 / 0.06);
}

.article-card {
  background: white;
  border: 1px solid var(--border);
}

.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.soft-shadow {
  box-shadow: 0 8px 12px -3px rgb(44 37 34 / 0.06);
}

.pill {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Form focus states */
.modern-input:focus-visible {
  outline: 2px solid #6B8E6B;
  outline-offset: 2px;
}

/* Footer and nav hover consistency */
footer a:hover, .nav-link:hover {
  color: #6B8E6B;
  transition: color 0.1s ease;
}

/* Extra breathing room for long content */
.policy-text p {
  margin-bottom: 1.1em;
}