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

/* Hero: dark red matches image background */
.case-hero {
  background: #150000;
}

/* Overlay: image is dark, lighter gradient needed */
.case-hero .case-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 0, 0, 0.90) 0%,
    rgba(10, 0, 0, 0.35) 45%,
    rgba(10, 0, 0, 0.05) 100%
  );
}

/* ── Sub-headings ── */

.sub-heading {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

/* ── Disclaimer note ── */

.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;
}
