/* ============================================================
   LKC Case Details — Compiled Static Stylesheet
   Fonts: Inter (body) + Space Grotesk (display)
   Colours: brand-primary #0F172A | brand-accent #3B82F6 | brand-highlight #F59E0B
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

/* ── Reset / base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: #f8fafc;
  color: #0f172a;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}

svg {
  margin: 5px;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* ── Tailwind-equivalent utilities used in this project ── */

/* Layout */
.min-h-screen {
  min-height: 100vh;
}
.max-w-6xl {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.max-w-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}

.p-4 {
  padding: 1rem;
}
.p-8 {
  padding: 2rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-12 {
  padding: 3rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.pl-6 {
  padding-left: 1.5rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pt-1 {
  padding-top: 0.25rem;
}

/* Grid */
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-16 {
  gap: 4rem;
}

/* Flex */
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-grow {
  flex-grow: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}

/* Sizing */
.w-1 {
  width: 0.25rem;
}
.w-2 {
  width: 0.5rem;
}
.w-5 {
  width: 1.25rem;
}
.w-8 {
  width: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.h-full {
  height: 100%;
}
.h-2 {
  height: 0.5rem;
}
.h-5 {
  height: 1.25rem;
}
.h-8 {
  height: 2rem;
}
.h-10 {
  height: 2.5rem;
}
.w-full {
  width: 100%;
}
.min-w-\[100px\] {
  min-width: 100px;
}
.max-w-\[180px\] {
  max-width: 180px;
}

/* Position */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.-left-\[5px\] {
  left: -5px;
}
.top-0 {
  top: 0;
}
.top-2 {
  top: 0.5rem;
}
.left-0 {
  left: 0;
}
.-left-4 {
  left: -1rem;
}
.-top-4 {
  top: -1rem;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}
/* .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
} */

/* Border */
.border {
  border-width: 1px;
  border-style: solid;
}
.border-l {
  border-left-width: 1px;
  border-left-style: solid;
}
.border-l-4 {
  border-left-width: 4px;
  border-left-style: solid;
}
.border-t-0 {
  border-top-width: 0;
}
.rounded-lg {
  /* border-radius: 0.5rem; */
}
.rounded-xl {
 /*  border-radius: 0.75rem; */
}
.rounded-2xl {
  /* border-radius: 1rem; */
}
.rounded-3xl {
  /* border-radius: 1.5rem; */
}
.rounded-full {
  /* border-radius: 9999px; */
}

/* Colours — backgrounds */
.bg-white {
  background-color: #ffffff;
}
.bg-slate-50 {
  background-color: #f8fafc;
}
.bg-slate-100 {
  background-color: #f1f5f9;
}
.bg-slate-900 {
  background-color: #0f172a;
}
.bg-amber-50 {
  background-color: #fffbeb;
}
.bg-emerald-100 {
  background-color: #d1fae5;
}
.bg-amber-100 {
  background-color: #fef3c7;
}
.bg-brand-primary {
  background-color: #0f172a;
}
.bg-brand-accent {
  background-color: #3b82f6;
}
.bg-brand-accent\/10 {
  background-color: rgba(59, 130, 246, 0.1);
}
.bg-brand-primary\/10 {
  background-color: rgba(15, 23, 42, 0.1);
}
.bg-emerald-500\/10 {
  background-color: rgba(16, 185, 129, 0.1);
}
.bg-amber-500\/10 {
  background-color: rgba(245, 158, 11, 0.1);
}
.bg-brand-highlight {
  background-color: #f59e0b;
}
.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-gradient-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
}

/* Colours — borders */
.border-black\/5 {
  border-color: rgba(0, 0, 0, 0.05);
}
.border-slate-100 {
  border-color: #f1f5f9;
}
.border-slate-200 {
  border-color: #e2e8f0;
}
.border-amber-100 {
  border-color: #fef3c7;
}
.border-emerald-500 {
  border-color: #10b981;
}
.border-brand-accent {
  border-color: #3b82f6;
}

/* Colours — text */
.text-white {
  color: #ffffff;
}
.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}
.text-slate-300 {
  color: #cbd5e1;
}
.text-slate-400 {
  color: #94a3b8;
}
.text-slate-500 {
  color: #64748b;
}
.text-slate-600 {
  color: #475569;
}
.text-slate-700 {
  color: #334155;
}
.text-slate-800 {
  color: #1e293b;
}
.text-slate-900 {
  color: #0f172a;
}
.text-brand-primary {
  color: #0f172a;
}
.text-brand-accent {
  color: #3b82f6;
}
.text-brand-highlight {
  color: #f59e0b;
}
.text-emerald-600 {
  color: #059669;
}
.text-amber-600 {
  color: #d97706;
}
.text-amber-700 {
  color: #b45309;
}
.text-amber-800 {
  color: #92400e;
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-display {
  font-family: "Space Grotesk", sans-serif;
}
.font-serif {
  font-family: ui-serif, Georgia, serif;
}
.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}

.text-\[10px\] {
  font-size: 10px;
}
.text-\[10px\].tracking-widest {
  letter-spacing: 0.1em;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Transitions / hover */
.transition-all {
  transition: all 0.15s ease;
}
.transition-colors {
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}
.transition-shadow {
  transition: box-shadow 0.15s ease;
}
.transition-opacity {
  transition: opacity 0.15s ease;
}
.duration-300 {
  transition-duration: 0.3s;
}

.hover\:shadow-md:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.hover\:shadow-xl:hover {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}
.hover\:bg-brand-accent:hover {
  background-color: #3b82f6;
}
.hover\:text-white:hover {
  color: #ffffff;
}
.hover\:text-brand-primary:hover {
  color: #0f172a;
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.group:hover .group-hover\:text-white {
  color: #ffffff;
}
.group:hover .group-hover\:transition-colors {
  transition: color 0.15s ease;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

/* Space */
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.space-y-10 > * + * {
  margin-top: 2.5rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.page-section-spacing {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* .section-offset {
  margin-top: 3rem;
} */

/* ── Custom component: case hero image ── */
.case-hero {
  position: relative;
  height: 400px;
  width: 100%;
  /* border-radius: 1.5rem; */
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.case-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  line-height: 1;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 3rem;
  transition: color 0.15s ease;
  font-size: 0.875rem;
}
.back-link:hover {
  color: #0f172a;
}
.back-link svg {
  width: 18px;
  height: 18px;
}

/* ── Two-column layout ── */
.case-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.case-content-column {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.case-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── Sidebar boxes ── */
.sidebar-dark {
  background-color: #0f172a;
  color: #ffffff;
  padding: 2rem;
  /* border-radius: 1.5rem; */
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.sidebar-white {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  /* border-radius: 1.5rem; */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.sidebar-amber {
  background-color: #fffbeb;
  border: 1px solid #fef3c7;
  padding: 2rem;
  /* border-radius: 1.5rem; */
}

/* ── Section headings ── */
.section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  margin-bottom: 2rem;
}
.section-heading .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  /* border-radius: 0.75rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.icon-primary {
  background-color: rgba(15, 23, 42, 0.1);
  color: #0f172a;
}
.icon-green {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.narrative-icon {
  width: 2rem;
  height: 2rem;
  /* border-radius: 0.5rem; */
}
.icon-amber {
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

/* ── Narrative box ── */
.narrative-box {
  background-color: #f8fafc;
  padding: 2.5rem;
  /* border-radius: 1.5rem; */
  border: 1px solid #f1f5f9;
}
.narrative-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.narrative-box blockquote {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.625;
  font-style: italic;
  border-left: 4px solid #10b981;
  padding-left: 1.5rem;
  margin: 0;
}

/* ── Key quote cards ── */
.quote-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  /* border-radius: 1rem; */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}
.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #3b82f6;
}
.quote-card p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.625;
}
.quote-card:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.quote-card-item {
  margin-bottom: 2rem;
}
.quote-meta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quote-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Timeline ── */
.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.timeline-item-flat {
  margin-bottom: 0;
}
.timeline-date {
  min-width: 100px;
  padding-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.timeline-body {
  flex-grow: 1;
  padding-bottom: 2rem;
  border-left: 1px solid #e2e8f0;
  padding-left: 1.5rem;
  position: relative;
}
.timeline-body::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 9999px; 
  background-color: #3b82f6;
}
.timeline-body p {
  font-weight: 500;
  color: #334155;
}

/* ── Top facts (dark sidebar) ── */
.fact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.fact-num {
  width: 1.25rem;
  height: 1.25rem;
  /* border-radius: 9999px; */
  background-color: #f59e0b;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.fact-text {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.625;
}

.fact-item-row {
  margin-bottom: 1rem;
}

.top-facts-title {
  font-size: 1.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f59e0b;
}

.top-facts-defendants-wrap {
  margin-bottom: 2rem;
}

.top-facts-defendants-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.top-facts-defendants-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

/* ── Defendant badges ── */
.defendant-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  /* border-radius: 0.5rem; */
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0.25rem;
}

/* ── Document links ── */
.doc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  /* border-radius: 0.75rem; */
  background-color: #f8fafc;
  transition: all 0.15s ease;
  text-decoration: none;
  color: inherit;
}
.doc-link:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

.doc-link-item {
  margin-bottom: 0.75rem;
}

.doc-title {
  font-size: 1.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.doc-title-icon {
  color: #3b82f6;
}
.doc-link-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.doc-link span {
  font-size: 0.875rem;
  font-weight: 500;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
}
.doc-link svg {
  color: #94a3b8;
  transition: color 0.15s ease;
}
.doc-link:hover svg {
  color: #ffffff;
}

/* ── State badge / Case ID ── */
.state-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  /* border-radius: 9999px; */
  background-color: #3b82f6;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 0.75rem;
}
.case-id-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}
.case-hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

/* ── Prose ── */
.prose p {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.625;
  padding: 10px 0;
}

/* ── Small footer notice ── */
.verified-notice {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 1.5rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.transparency-title {
  color: #92400e;
}

.transparency-description {
  color: #b45309;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .py-12 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .case-layout {
    grid-template-columns: 2fr 1fr;
  }
}

/* Mobile Device */
@media (max-width: 575px) {
  .section-heading {
    align-items: self-start;
    line-height: normal;
  }
  .narrative-icon {
    width: 2.5rem;
    height: 2.5rem;
    /* border-radius: 0.75rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .narrative-box h2 {
    align-items: start;
  }
  .hero-meta-row {
    display: block;
  }
  .case-id-label {
    display: block;
    width: fit-content;
    margin-top: 1rem;
  }
}


/***22-4-2026*******/

body {
  background-color: #222344;
}
.section-heading ,
.prose p ,
.fact-text ,
.top-facts-title,
.prose ul,
.prose ol{
  color: white;
}
.prose li {
  margin-bottom: 7px;
}
.prose > ul,
.prose > ol {
  margin-left: 20px;
  margin-bottom: 32px;
}
.prose ul ul,
.prose ol ol {
    padding-left: 22px;
    margin-top: 7px;
}
.prose a {
  text-decoration: underline;
}
.summary p{
	color:black !important;
}

.section-heading .icon-wrap svg {
  color: #ce2c37;
}
.fact-num {
  background: #ce2c37;
  color: #ffffff;
}
.quote-card {
  border: 0;
}
.quote-card::before {
  background-color: #ce2c37;
}
.narrative-icon {
  background: #ce2c3747;
}
.narrative-icon svg {
  color: #ce2c37;
}
.narrative-box blockquote {
  border-left: 4px solid #ce2c37;
}
.doc-title-icon svg {
  color: #ce2c37;
}
.doc-link:hover {
  background-color: #ce2c37;
}
.timeline-body::before {
  background-color: #ce2c37;
}
.timeline-date {
  color: #ce2c37;
}
.timeline-body p {
  color: #ffffff;
}
.timeline-body {
  border-left: 1px solid #ce2c37;
}
.case-hero-overlay {
  right: 0;
  width: 50%;
  left: auto;
  background: #ce2c37;
}
.state-badge {
  background: #000000;
}
.case-hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 2.45rem);
  font-family: "Merriweather", serif;
}
.case-hero-overlay .status {
  margin-top: 20px;
  color: #ffffff;
  display: block;
  margin-bottom: 20px;
}
.case-hero-overlay .lupdated {
  color: #ffffff;
  display: block;
}
.case-hero-overlay .lupdated, 
.case-hero-overlay .status {
  font-size: 16px;
  line-height: 22px;
}

.section-heading,
.doc-title ,
.narrative-box h2 ,
.top-facts-title{
  font-family: "Merriweather", serif;
}
.verified-notice {
  font-size: 11px;
  color: #000000;
  line-height: 14px;
  text-transform: inherit;
  letter-spacing: 0px;
  font-style: italic;
  font-weight: 600;
}
.quote-label {
  font-weight: 600;
  color: #343434;
  text-transform: capitalize;
  letter-spacing: normal;
  font-style: italic;
  font-size: 12px;
  line-height: 16px;
}
blockquote {
  color: #000000;
  background: #ffffff;
  padding: 30px;
  border-left: 3px solid #ce2c37;
  margin-bottom: 20px;
  font-size: 18px;  
  line-height: 26px;
}
blockquote * {
  padding: 0;
  color: #000000;
}
.prose blockquote * {
  padding: 0;
  color: #000000;
}
@media(max-width: 991px) {
  .case-hero-overlay {
    padding: 2rem;
    bottom: 0;
    top: auto;
    width: 100%;
  }
  .case-hero {
    height: 640px;
  }
}
@media(max-width: 639px) {
  .case-hero {
    height: 540px;
  }
}