/* ============================================
   CASE STUDY PAGE STYLES
   Dark theme with Inter font
   Based on ASCII wireframe specifications
   ============================================ */

/* ============================================
   CASE STUDIES LISTING PAGE
   Origin-inspired dark theme with gradient cards
   ============================================ */

/* === LISTING PAGE CONTAINER === */
body.case-studies-listing {
  background-color: #000000;
  color: #FFFFFF;
}

body.case-studies-listing #main {
  padding: 120px 40px 120px;
}

body.case-studies-listing .footer {
  border-top: 1px solid #333333;
}

body.case-studies-listing .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* === SECTION LABEL (CASI DI STUDIO) === */
.case-studies-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 24px 0;
}

/* === MAIN HEADING === */
.case-studies-heading {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 80px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* === GRID CONTAINER === */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 80px;
}

/* === CASE STUDY CARD === */
.case-study-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1 / 1;
  padding: 32px;
  background: linear-gradient(135deg, #4a4a4a 0%, #000000 100%);
  border-radius: 16px;
  text-decoration: none;
  transition: none;
}

/* === CLIENT NAME (top-left) === */
.case-client {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

/* === CASE TITLE (centered) === */
.case-title {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0;
  padding: 0 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === DATE (bottom-left) === */
.case-date {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #9CA3AF;
  display: block;
}

/* === RESPONSIVE - TABLET === */
@media (max-width: 1024px) {
  body.case-studies-listing #main {
    padding: 100px 32px 15px;
  }

  .case-studies-heading {
    font-size: 40px;
    margin-bottom: 60px;
  }

  .case-studies-grid {
    gap: 24px;
    margin-top: 60px;
  }

  .case-study-card {
    padding: 28px;
  }

  .case-title {
    font-size: 24px;
  }
}

/* === RESPONSIVE - MOBILE === */
@media (max-width: 768px) {
  body.case-studies-listing #main {
    padding: 80px 16px 15px;
  }

  .case-studies-label {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .case-studies-heading {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .case-study-card {
    padding: 24px;
  }

  .case-title {
    font-size: 22px;
    padding: 0 10px;
  }
}

/* === PAGE CONTAINER === */
.case-study-page {
  background-color: #000000; /* Pure black background */
  min-height: 100vh;
  padding: 60px 40px 0;
  color: #FFFFFF;
}

/* Override footer padding-top for case study pages */
.case-study-page ~ .footer,
body:has(.case-study-page) .footer {
  padding-top: 48px !important;
  margin-top: 120px;
  border-top: 1px solid #333333;
}

/* === BACK NAVIGATION === */
.case-study-back {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.case-study-back:hover {
  color: #FFFFFF;
}

/* === CONTENT CONTAINER === */
.case-study-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === PUBLISH DATE === */
/* Target first paragraph (publish date) automatically */
.case-study-content > p:first-of-type,
.case-study-content .publish-date {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 0;
  text-align: center;
}

/* === TITLE H1 === */
.case-study-content h1 {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  margin-top: 32px;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
  text-align: center;
}

/* === SECTION TITLES H2 === */
.case-study-content h2 {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #FFFFFF;
  margin-top: 100px;
  margin-bottom: 32px;
  letter-spacing: 0;
}

/* First H2 (Profilo del Cliente) - closer to title */
.case-study-content h1 + h2 {
  margin-top: 60px;
}

/* === CUSTOMER PROFILE H3 === */
.case-study-content h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 12px;
  margin-bottom: 8px;
}

/* === PARAGRAPHS - BASE STYLES === */
.case-study-content p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 26px;
  margin-top: 24px;
  margin-bottom: 0;
}

/* === CUSTOMER PROFILE ITEMS === */
/* Paragraphs inside Customer Profile (Employees, Industry, Locations) */
.case-study-content h3 ~ p {
  line-height: 24px;
  margin-top: 24px;
  font-size: 15px;
}

/* First Customer Profile item (right after h3) */
.case-study-content h3 + p {
  margin-top: 20px;
}

/* Make labels before colon bold (Employees:, Industry:, Locations:) */
.case-study-content h3 ~ p {
  font-weight: 600;
}

/* Values in Customer Profile (inside span) - normal weight */
.case-study-content h3 ~ p span {
  font-weight: 400;
  color: #FFFFFF;
}

/* === INTRO PARAGRAPHS AFTER CUSTOMER PROFILE === */
/* First intro paragraph after Customer Profile section */
.case-study-content h2 + h3 ~ p:nth-of-type(4) {
  margin-top: 48px;
  line-height: 32px;
}

/* === PARAGRAPHS IN SECTIONS (Challenges, How helped, Results) === */
/* First paragraph directly after H2 - NO margin-top */
.case-study-content h2 + p {
  margin-top: 0;
  line-height: 26px;
}

/* Subsequent paragraphs in sections */
.case-study-content h2 ~ p {
  margin-top: 24px;
  line-height: 26px;
}

/* === BLOCKQUOTE (Customer Quote) === */
.case-study-content blockquote,
.case-study-content .customer-quote {
  background-color: transparent;
  padding: 30px 0 30px 30px;
  border-left: 2px solid #FFFFFF;
  margin: 50px 0;
}

.case-study-content blockquote p,
.case-study-content .customer-quote p {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0;
}

.case-study-content blockquote footer,
.case-study-content .customer-quote footer {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #9CA3AF;
  margin-top: 24px;
}

.case-study-content blockquote footer strong,
.case-study-content .customer-quote footer strong {
  font-weight: 400;
  color: #FFFFFF;
}

/* === LISTS (if used) === */
.case-study-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.case-study-content li {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 26px;
  margin-top: 12px;
}

.case-study-content li:last-child {
  margin-bottom: 0;
}

.case-study-content li strong {
  font-weight: 600;
}

/* === CUSTOMER PROFILE (first H2 after H1) === */
/* Primo paragrafo nel "Profilo del Cliente" (primo H2) */
.case-study-content h1 + h2 + p {
  margin-top: 32px;
}

/* Label in grassetto (Personale:, Settore:, Località:) nel Profilo del Cliente */
.case-study-content h1 + h2 + p strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 4px;
}

/* Paragrafi successivi nel Profilo del Cliente (solo fino al prossimo H2) */
.case-study-content h1 + h2 + p ~ p {
  margin-top: 24px;
}

.case-study-content h1 + h2 + p ~ p strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 4px;
}

/* Remove bottom margin from last H2 */
.case-study-content h2:last-of-type {
  margin-bottom: 24px;
}

/* Remove bottom margin from last element in content */
.case-study-content > *:last-child {
  margin-bottom: 0 !important;
}

/* === BOLD TEXT (metrics, emphasis) === */
.case-study-content strong {
  font-weight: 600;
  color: #FFFFFF;
}

/* === CTA BOX (if needed) === */
.case-study-cta {
  background-color: #1F2937;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 80px;
  border: 1px solid #374151;
}

.case-study-cta h3 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.case-study-cta p {
  font-size: 18px;
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 24px;
  color: #D1D5DB;
}

.case-study-cta .btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #FFFFFF;
  color: #111827;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-study-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* === RESPONSIVE - TABLET === */
@media (max-width: 1024px) {
  .case-study-content h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .case-study-content h2 {
    font-size: 32px;
    margin-top: 60px;
  }
}

/* === RESPONSIVE - MOBILE === */
@media (max-width: 768px) {
  .case-study-page {
    padding: 40px 16px;
  }

  .case-study-content h1 {
    font-size: 36px;
    line-height: 44px;
    margin-top: 12px;
  }

  .case-study-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
  }

  .case-study-content p,
  .case-study-content li {
    font-size: 16px;
    line-height: 28px;
  }

  .case-study-content blockquote,
  .case-study-content .customer-quote {
    padding: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .case-study-content blockquote p,
  .case-study-content .customer-quote p {
    font-size: 20px;
    line-height: 32px;
  }

  .case-study-cta {
    padding: 32px 20px;
    margin-top: 60px;
  }
}

/* === CHART CONTAINERS === */
.chart-container {
  margin: 60px 0;
  width: 100%;
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.chart-container svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Timeline Chart specific styles */
.timeline-chart .phase circle {
  transition: r 0.3s ease, fill 0.3s ease;
}

.timeline-chart .phase:hover circle {
  r: 12;
  fill: #0088ff;
}

.timeline-chart text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Performance Chart specific styles */
.performance-chart text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.performance-chart rect {
  transition: opacity 0.3s ease;
}

.performance-chart rect:hover {
  opacity: 0.9;
}

/* Benefits Chart specific styles */
.benefits-chart text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.benefits-chart g rect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-chart g:hover rect {
  transform: translateY(-5px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* === RESPONSIVE - CHARTS === */
@media (max-width: 768px) {
  .chart-container {
    padding: 20px 10px;
    margin: 40px -16px;
    border-radius: 0;
  }

  .chart-container svg text {
    font-size: 10px !important;
  }

  /* Hide some labels on mobile for better readability */
  .performance-chart g:last-child text:nth-child(2),
  .performance-chart g:last-child text:nth-child(3) {
    display: none;
  }
}

/* ============================================
   BLOG LISTING PAGE
   Origin-inspired dark theme with gradient cards (3 columns)
   ============================================ */

/* === LISTING PAGE CONTAINER === */
body.blog-listing {
  background-color: #000000;
  color: #FFFFFF;
}

body.blog-listing #main {
  padding: 120px 40px 120px;
}

body.blog-listing .footer {
  border-top: 1px solid #333333;
}

body.blog-listing .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* === SECTION LABEL (BLOG) === */
.blog-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 24px 0;
}

/* === MAIN HEADING === */
.blog-heading {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 80px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* === GRID CONTAINER (3 COLUMNS) === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}

/* === BLOG CARD === */
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1 / 1;
  padding: 32px;
  background: linear-gradient(135deg, #4a4a4a 0%, #000000 100%);
  border-radius: 16px;
  text-decoration: none;
  transition: none;
}

/* === CLIENT NAME (top-left) - VUOTO per blog === */
.blog-client {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  visibility: hidden; /* Mantiene layout ma invisibile */
}

/* === BLOG TITLE (centered) === */
.blog-title {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0;
  padding: 0 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === DATE (bottom-left) === */
.blog-date {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #9CA3AF;
  display: block;
}

/* === RESPONSIVE - TABLET === */
@media (max-width: 1024px) {
  body.blog-listing #main {
    padding: 100px 32px 15px;
  }

  .blog-heading {
    font-size: 40px;
    margin-bottom: 60px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .blog-card {
    padding: 28px;
  }

  .blog-title {
    font-size: 24px;
  }
}

/* === RESPONSIVE - MOBILE === */
@media (max-width: 768px) {
  body.blog-listing #main {
    padding: 80px 16px 15px;
  }

  .blog-label {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .blog-heading {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .blog-card {
    padding: 24px;
  }

  .blog-title {
    font-size: 22px;
    padding: 0 10px;
  }
}

/* ============================================
   BLOG POST PAGE (ARTICLE VIEW)
   Same dark theme and typography as case studies
   ============================================ */

/* === BODY BACKGROUND === */
body:has(.blog-post-page) {
  background-color: #000000;
}

body:has(.blog-post-page) #main {
  background-color: #000000;
}

/* === PAGE CONTAINER === */
.blog-post-page {
  background-color: #000000;
  min-height: 100vh;
  padding: 60px 40px 0;
  color: #FFFFFF;
}

/* Override footer padding-top for blog post pages */
.blog-post-page ~ .footer,
body:has(.blog-post-page) .footer {
  padding-top: 48px !important;
  margin-top: 120px;
  border-top: 1px solid #333333;
}

/* === BACK NAVIGATION === */
.blog-post-back {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.blog-post-back:hover {
  color: #FFFFFF;
}

/* === CONTENT CONTAINER === */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === PUBLISH DATE === */
.blog-post-content > p:first-of-type,
.blog-post-content .publish-date {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 0;
  text-align: center;
}

/* === TITLE H1 === */
.blog-post-content h1 {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  margin-top: 32px;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
  text-align: center;
}

/* === SECTION TITLES H2 === */
.blog-post-content h2 {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #FFFFFF;
  margin-top: 60px;
  margin-bottom: 24px;
  letter-spacing: 0;
}

/* === SUBSECTION TITLES H3 === */
.blog-post-content h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 16px;
}

/* === PARAGRAPHS === */
.blog-post-content p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 26px;
  margin-top: 24px;
  margin-bottom: 0;
}

/* First paragraph after H2 - no top margin */
.blog-post-content h2 + p {
  margin-top: 0;
}

/* === LISTS === */
.blog-post-content ul,
.blog-post-content ol {
  list-style-position: outside;
  padding-left: 24px;
  margin: 24px 0;
}

.blog-post-content ul {
  list-style-type: disc;
}

.blog-post-content ol {
  list-style-type: decimal;
}

.blog-post-content li {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 26px;
  margin-top: 12px;
}

.blog-post-content li:first-child {
  margin-top: 0;
}

/* === BOLD TEXT === */
.blog-post-content strong {
  font-weight: 600;
  color: #FFFFFF;
}

/* === LINKS === */
.blog-post-content a {
  color: #FFFFFF;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.blog-post-content a:hover {
  opacity: 0.7;
}

/* === BLOCKQUOTE === */
.blog-post-content blockquote {
  background-color: transparent;
  padding: 30px 0 30px 30px;
  border-left: 2px solid #FFFFFF;
  margin: 50px 0;
}

.blog-post-content blockquote p {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0;
}

/* === AUTHOR SIGNATURE === */
.blog-post-content .blog-author {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #9CA3AF;
  margin-top: 60px;
  text-align: right;
  font-style: italic;
}

/* === CODE BLOCKS (if needed) === */
.blog-post-content code {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  background-color: #1a1a1a;
  padding: 2px 6px;
  border-radius: 4px;
  color: #FFFFFF;
}

.blog-post-content pre {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}

.blog-post-content pre code {
  background: none;
  padding: 0;
}

/* === IMAGES === */
.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
  display: block;
}

/* === RESPONSIVE - TABLET === */
@media (max-width: 1024px) {
  .blog-post-content h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .blog-post-content h2 {
    font-size: 32px;
    margin-top: 48px;
  }
}

/* === RESPONSIVE - MOBILE === */
@media (max-width: 768px) {
  .blog-post-page {
    padding: 40px 16px;
  }

  .blog-post-content h1 {
    font-size: 36px;
    line-height: 44px;
    margin-top: 12px;
  }

  .blog-post-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .blog-post-content h3 {
    font-size: 18px;
    margin-top: 32px;
  }

  .blog-post-content p,
  .blog-post-content li {
    font-size: 16px;
    line-height: 28px;
  }

  .blog-post-content blockquote {
    padding: 24px;
    margin: 32px 0;
  }

  .blog-post-content blockquote p {
    font-size: 18px;
    line-height: 28px;
  }
}

/* === PRINT STYLES (optional) === */
@media print {
  .case-study-back {
    display: none;
  }

  .case-study-page {
    background-color: white;
    color: black;
  }

  .case-study-content h1,
  .case-study-content h2,
  .case-study-content h3,
  .case-study-content p,
  .case-study-content li {
    color: black;
  }

  .case-study-content blockquote,
  .case-study-content .customer-quote {
    background-color: #f5f5f5;
    border-left-color: black;
  }

  .chart-container {
    background-color: white;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}
