/* ============================================
   PREMIUM MEDICAL ETHICS DESIGN SYSTEM
   World-Class Professional Interface
   Comprehensive Coverage for All Ethics Pages
   Version: 2.0 | Refined & Harmonious
   ============================================ */

/* -----------------------------------------------------------
   ROOT VARIABLES - SOPHISTICATED PALETTE
   ----------------------------------------------------------- */
:root {
  /* Primary Colors - Professional Blues */
  --primary-color: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  
  /* Secondary Colors - Complementary Teals */
  --secondary-color: #0891b2;
  --secondary-light: #06b6d4;
  --secondary-dark: #0e7490;
  
  /* Accent Colors - Warm Complements */
  --accent-warm: #f59e0b;
  --accent-rose: #f43f5e;
  --accent-purple: #8b5cf6;
  
  /* Semantic Colors */
  --success-color: #059669;
  --success-light: #10b981;
  --warning-color: #d97706;
  --warning-light: #f59e0b;
  --error-color: #dc2626;
  --error-light: #ef4444;
  --info-color: #0284c7;
  
  /* Neutral Palette */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-tertiary: #64748b;
  --text-light: #94a3b8;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-accent: #fef3c7;
  
  /* Complementary Gradient Backgrounds */
  --bg-warm-subtle: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  --bg-cool-subtle: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
  --bg-neutral-subtle: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --bg-rose-subtle: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  --bg-purple-subtle: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  --bg-success-subtle: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  
  /* Border Colors */
  --border-primary: #e2e8f0;
  --border-secondary: #cbd5e1;
  --border-accent: #d4af37;
  
  /* Shadows - Refined */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 12px 32px rgba(15, 23, 42, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.1, 1);
}

/* -----------------------------------------------------------
   GLOBAL STYLES
   ----------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--bg-accent);
  color: var(--primary-dark);
  text-shadow: none;
}

::-moz-selection {
  background: var(--bg-accent);
  color: var(--primary-dark);
}

/* -----------------------------------------------------------
   ETHICS CASE CARDS - PREMIUM DESIGN
   ----------------------------------------------------------- */
.ethics-case-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.ethics-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.ethics-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.ethics-case-card:hover::before {
  opacity: 1;
}

.ethics-case-card.international {
  border-left: 4px solid var(--primary-light);
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.ethics-case-card.foundational {
  border-left: 4px solid var(--accent-purple);
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.ethics-case-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.ethics-case-card h4 {
  font-size: 1.125rem;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
}

/* -----------------------------------------------------------
   CASE INFO GRID - REFINED LAYOUT
   ----------------------------------------------------------- */
.case-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
  padding: 1.75rem;
  background: var(--bg-warm-subtle);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.case-info-item {
  padding: 1.25rem;
  background: var(--bg-primary);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
  border-left: 3px solid var(--primary-light);
}

.case-info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-left-color: var(--primary-color);
}

.case-info-item strong {
  display: block;
  color: var(--primary-color);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.case-info-item em {
  color: var(--accent-rose);
  font-style: italic;
  font-weight: 600;
}

/* -----------------------------------------------------------
   INJURY GRID - MEDICAL CONTEXT
   ----------------------------------------------------------- */

.injury-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-top: 3px solid var(--primary-light);
  margin-top: 1.5rem;
}


.injury-card h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}

/* -----------------------------------------------------------
   CASE NARRATIVE - STORYTELLING DESIGN
   ----------------------------------------------------------- */
.case-narrative {
  background: var(--bg-rose-subtle);
  border-left: 4px solid var(--accent-rose);
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.case-narrative h5 {
  font-size: 1.125rem;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.case-narrative p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.case-narrative p strong {
  color: var(--accent-rose);
  font-weight: 700;
}

/* -----------------------------------------------------------
   LEGAL ANALYSIS - PROFESSIONAL TONE
   ----------------------------------------------------------- */
.legal-analysis {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--bg-cool-subtle);
  border-radius: 1rem;
  border-left: 4px solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.legal-analysis h5 {
  font-size: 1.125rem;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-analysis p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.legal-analysis p strong {
  color: var(--secondary-dark);
  font-weight: 700;
}

/* -----------------------------------------------------------
   DAMAGES BREAKDOWN - FINANCIAL CONTEXT
   ----------------------------------------------------------- */
.damages-breakdown {
  background: var(--bg-primary);
  padding: 1.75rem;
  border-radius: 1rem;
  margin: 2rem 0;
  border-left: 4px solid var(--success-color);
  box-shadow: var(--shadow-sm);
}

.damages-breakdown h6 {
  font-size: 1.25rem;
  color: var(--success-color);
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.damages-breakdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.damages-breakdown li {
  padding: 0.75rem 0 0.75rem 2.5rem;
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-primary);
}

.damages-breakdown li:last-child {
  border-bottom: none;
}

.damages-breakdown li::before {
  content: '💰';
  position: absolute;
  left: 0;
  top: 0.75rem;
  font-size: 1.25rem;
}

/* -----------------------------------------------------------
   PRINCIPLE HIGHLIGHT - KEY CONCEPTS
   ----------------------------------------------------------- */
.principle-highlight {
  background: var(--bg-warm-subtle);
  padding: 2.5rem;
  border-radius: 1rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(217, 119, 6, 0.2);
  position: relative;
  overflow: hidden;
}

.principle-highlight::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.principle-highlight h4 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.principle-highlight p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.principle-highlight strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary-color);
}

/* -----------------------------------------------------------
   RELEVANCE - PRACTICAL APPLICATION
   ----------------------------------------------------------- */
.relevance {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--bg-purple-subtle);
  border-radius: 1rem;
  border-left: 4px solid var(--accent-purple);
  box-shadow: var(--shadow-sm);
}

.relevance h5 {
  font-size: 1.125rem;
  color: var(--accent-purple);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.relevance p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

/* -----------------------------------------------------------
   ETHICAL PRINCIPLES TENSION
   ----------------------------------------------------------- */
.comparative-table {
  margin: 2.5rem 0;
}

.ethical-principles-tension {
  margin: 2.5rem 0;
}

.ethical-principles-tension h5 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* -----------------------------------------------------------
   PRINCIPLES GRID - FOUNDATIONAL CONCEPTS
   ----------------------------------------------------------- */

.principle-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-light);
  opacity: 0;
  transition: opacity var(--transition-base);
}


.principle-card h6 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.principle-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* -----------------------------------------------------------
   LESSON CARDS - EDUCATIONAL FOCUS
   ----------------------------------------------------------- */
.lesson-cards {
  display: grid;
  gap: 2rem;
  margin: 2.5rem 0;
}

.lesson-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-left: 4px solid var(--primary-light);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.lesson-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--primary-color);
}

.lesson-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.lesson-card p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.lesson-card ul {
  margin: 1.25rem 0;
  padding-left: 1.75rem;
}

.lesson-card li {
  margin: 1rem 0;
  line-height: 1.7;
  color: var(--text-secondary);
}

.lesson-card li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.lesson-card em {
  color: var(--text-tertiary);
  font-style: italic;
}

/* -----------------------------------------------------------
   RECOMMENDATIONS GRID - ACTION ITEMS
   ----------------------------------------------------------- */

.recommendation-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-left: 4px solid var(--success-color);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  margin-top: 1.5rem;
}


.recommendation-card h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.recommendation-card ul {
  margin: 0;
  padding-left: 1.75rem;
}

.recommendation-card li {
  margin: 1rem 0;
  line-height: 1.7;
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

.recommendation-card li strong {
  color: var(--success-color);
  font-weight: 600;
}

/* -----------------------------------------------------------
   HUMAN IMPACT - EMOTIONAL RESONANCE
   ----------------------------------------------------------- */
.human-impact {
  background: var(--bg-warm-subtle);
  padding: 2.5rem;
  border-radius: 1rem;
  margin: 2.5rem 0;
  border-left: 4px solid var(--accent-warm);
  box-shadow: var(--shadow-md);
}

.human-impact h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.human-impact p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.human-impact ul {
  margin: 1.25rem 0;
  padding-left: 1.75rem;
}

.human-impact li {
  margin: 1rem 0;
  line-height: 1.7;
  color: var(--text-secondary);
}

.human-impact li strong {
  color: var(--accent-warm);
  font-weight: 600;
}

/* -----------------------------------------------------------
   BALANCE GRID - ETHICAL WEIGHING
   ----------------------------------------------------------- */

.balance-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.balance-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.balance-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
}

.balance-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* -----------------------------------------------------------
   BALANCE ANIMATION - VISUAL METAPHOR
   ----------------------------------------------------------- */
.balance-animation {
  background: var(--bg-neutral-subtle);
  padding: 3rem 2rem;
  border-radius: 1rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.balance-animation > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.balance-item {
  font-size: 3rem;
  margin: 0 1rem;
  animation: gentle-sway 3s ease-in-out infinite;
}

@keyframes gentle-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

.balance-item:nth-child(1) {
  animation-delay: 0s;
}

.balance-item:nth-child(2) {
  animation: none;
  color: var(--primary-color);
}

.balance-item:nth-child(3) {
  animation-delay: 1.5s;
}

/* -----------------------------------------------------------
   CONCEPT SECTIONS - EDUCATIONAL BLOCKS
   ----------------------------------------------------------- */
.concept {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
  border-left: 4px solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.concept h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
}

.concept p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.concept ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.concept li {
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--bg-primary);
  border-radius: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
  box-shadow: var(--shadow-xs);
}

.concept li:hover {
  background: var(--bg-cool-subtle);
  border-left-color: var(--secondary-color);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.concept li strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Small helper class */
.small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-warm-subtle);
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(217, 119, 6, 0.2);
  display: inline-block;
}

/* Callout */
.callout {
  background: var(--bg-warm-subtle);
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--warning-color);
  box-shadow: var(--shadow-sm);
}

/* -----------------------------------------------------------
   BLOCKQUOTE - QUOTATIONS
   ----------------------------------------------------------- */
blockquote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  background: var(--bg-neutral-subtle);
  border-left: 4px solid var(--primary-light);
  border-radius: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  position: relative;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: rgba(59, 130, 246, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

blockquote p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

blockquote strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* -----------------------------------------------------------
   BUTTONS - CALL TO ACTION
   ----------------------------------------------------------- */
.button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-primary);
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
  margin: 1.5rem 0;
  border: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* -----------------------------------------------------------
   FOOTER
   ----------------------------------------------------------- */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-primary);
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-md);
}

.footer p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.0625rem;
  color: var(--bg-primary) !important;
}

/* -----------------------------------------------------------
   RESPONSIVE DESIGN - MOBILE OPTIMIZATION
   ----------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .ethics-article {
    padding: 2rem;
  }
  
  .ethics-article h1 {
    font-size: 2.25rem;
  }
  
  .section h2 {
    font-size: 1.75rem;
  }
  
  .principle-highlight h4 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .ethics-article {
    padding: 1.5rem;
  }

  .ethics-article h1 {
    font-size: 1.875rem;
  }
  
  .metadata {
    font-size: 1rem;
  }
  
  .hero-badge {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
  }
  
  .lede {
    font-size: 1.125rem;
    padding: 1.25rem;
  }
  
  .balance-animation {
    padding: 2rem 1.5rem;
  }
  
  .balance-animation > div {
    gap: 1.25rem;
  }
  
  .balance-item {
    font-size: 2rem;
    margin: 0 0.5rem;
  }
  
  .section {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .section h2 {
    font-size: 1.5rem;
  }
  
  .section p {
    font-size: 1.0625rem;
  }
  
  .confidentiality-principle-card {
    padding: 1.75rem;
  }
  
  .confidentiality-principle-card h3 {
    font-size: 1.25rem;
  }
  
  .confidentiality-principle-card p {
    font-size: 1.0625rem;
  }
  
  .callout {
    padding: 1.25rem 1.75rem;
  }
  
  .concept h3 {
    font-size: 1.375rem;
  }
  
  .small {
    font-size: 1rem;
  }
  
  
  .ethics-case-card {
    padding: 1.5rem;
  }
  
  .ethics-case-card h3 {
    font-size: 1.25rem;
  }
  
  .ethics-case-card h4 {
    font-size: 1.0625rem;
  }
  
  .case-info {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  
  .case-info-item {
    padding: 1rem;
  }
  
  .case-info-item strong {
    font-size: 0.875rem;
  }
  
  .case-narrative,
  .legal-analysis,
  .relevance {
    padding: 1.5rem;
  }
  
  .case-narrative h5,
  .legal-analysis h5,
  .relevance h5 {
    font-size: 1.0625rem;
  }
  
  .case-narrative p,
  .legal-analysis p,
  .relevance p {
    font-size: 1.0625rem;
  }
  
  .principle-highlight {
    padding: 2rem;
  }
  
  .principle-highlight h4 {
    font-size: 1.5rem;
  }
  
  .principle-highlight p {
    font-size: 1.0625rem;
  }
  
  .principle-highlight strong {
    font-size: 1.125rem;
  }
  
  .damages-breakdown {
    padding: 1.5rem;
  }
  
  .damages-breakdown h6 {
    font-size: 1.125rem;
  }
  
  .damages-breakdown li {
    font-size: 1.0625rem;
  }
  
  .lesson-card,
  .recommendation-card {
    padding: 1.75rem;
  }
  
  .lesson-card h3 {
    font-size: 1.375rem;
  }
  
  .lesson-card p,
  .lesson-card li,
  .recommendation-card li {
    font-size: 1.0625rem;
  }
  
  .recommendation-card h4 {
    font-size: 1.125rem;
  }
  
  .ethical-principles-tension h5 {
    font-size: 1.25rem;
  }
  
  .principle-card {
    padding: 1.5rem;
  }
  
  .principle-card h6 {
    font-size: 1.0625rem;
  }
  
  .principle-card p {
    font-size: 1.0625rem;
  }
  
  .balance-card {
    padding: 1.5rem;
  }
  
  .balance-card h3 {
    font-size: 1.25rem;
  }
  
  .balance-card p {
    font-size: 1.0625rem;
  }
  
  .concept li {
    padding: 1.25rem;
    font-size: 1.0625rem;
  }
  
  .human-impact {
    padding: 2rem;
  }
  
  .human-impact p,
  .human-impact li {
    font-size: 1.0625rem;
  }
  
  blockquote {
    padding: 1.5rem 2rem;
  }
  
  blockquote p {
    font-size: 1.0625rem;
  }
  
  .footer {
    padding: 1.75rem;
  }
  
  .footer p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .ethics-article {
    padding: 1.25rem;
  }
  
  .ethics-article h1 {
    font-size: 1.625rem;
  }
  
  .metadata {
    font-size: 0.9375rem;
  }
  
  .hero-badge {
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
  }
  
  .lede {
    font-size: 1.0625rem;
    padding: 1rem;
  }
  
  .balance-animation {
    padding: 1.5rem 1rem;
  }
  
  .balance-item {
    font-size: 1.75rem;
  }
  
  .section h2 {
    font-size: 1.375rem;
  }
  
  .section p {
    font-size: 1.0625rem;
  }
  
  .ethics-case-card {
    padding: 1.25rem;
  }
  
  .ethics-case-card h3 {
    font-size: 1.125rem;
  }
  
  .ethics-case-card h4 {
    font-size: 1rem;
  }
  
  .case-info {
    padding: 1rem;
  }
  
  .case-info-item {
    padding: 0.875rem;
  }
  
  .principle-highlight h4 {
    font-size: 1.375rem;
  }
  
  .principle-highlight p {
    font-size: 1.0625rem;
  }
  
  .lesson-card h3,
  .recommendation-card h4 {
    font-size: 1.125rem;
  }
  
  .balance-card h3 {
    font-size: 1.125rem;
  }
}

/* -----------------------------------------------------------
   PRINT STYLES
   ----------------------------------------------------------- */
@media print {
  .ethics-article {
    box-shadow: none;
    padding: 0;
  }
  
  .balance-animation,
  .button,
  .nav-links,
  .footer {
    display: none;
  }
  
  .ethics-case-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--border-secondary);
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  a {
    color: var(--text-primary);
    text-decoration: underline;
  }
  
  .ethics-article h1 {
    color: var(--text-primary);
  }
}

/* ============================================
   END OF PREMIUM MEDICAL ETHICS STYLESHEET
   ============================================ */