/* dako.css – project-specific styles */

/* Hero: dark blue matches DAKO brand */
.case-hero {
  background: #0a1628;
}

/* Overlay */
.case-hero .case-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 15, 35, 0.92) 0%,
    rgba(5, 15, 35, 0.35) 45%,
    rgba(5, 15, 35, 0.05) 100%
  );
}

/* ── Disclaimer note (reused from intershop pattern) ── */

.disclaimer-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 2rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg);
}

.disclaimer-note::before {
  content: 'ℹ';
  flex-shrink: 0;
  font-style: normal;
  opacity: 0.5;
}
