/* Blog Typography Enhancement - 30% Larger Fonts */

/* Main article content */
article .prose {
  font-size: 1.3rem !important; /* Base was 1rem, now 1.3rem */
}

article .prose-lg {
  font-size: 1.43rem !important; /* Base was 1.1rem, now 1.43rem */
}

/* Headings - 30% larger */
article h1,
article .text-4xl {
  font-size: 3.12rem !important; /* Was 2.4rem */
}

article h2,
article .text-2xl {
  font-size: 2.6rem !important; /* Was 2rem - increased by 30% */
  line-height: 1.3 !important;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem !important;
}

article .text-3xl {
  font-size: 2.6rem !important; /* Was 2rem */
}

/* Paragraphs and body text */
article p {
  font-size: 1.3rem !important; /* 30% larger */
  line-height: 1.8 !important;
}

article p.text-xl {
  font-size: 1.625rem !important; /* Was 1.25rem - intro paragraphs */
  line-height: 1.9 !important;
}

article .text-xl {
  font-size: 1.625rem !important; /* Was 1.25rem */
}

article .mb-8 {
  font-size: 1.3rem !important;
}

article .mb-6 {
  font-size: 1.3rem !important;
}

/* Intro paragraphs - extra emphasis */
article p.text-xl.mb-8 {
  font-size: 1.95rem !important; /* 30% larger than 1.5rem */
  line-height: 1.7 !important;
  font-weight: 300;
}

/* Lists */
article ul,
article ol {
  font-size: 1.3rem !important;
}

article li {
  font-size: 1.3rem !important;
  line-height: 1.8 !important;
}

/* Blockquotes */
article blockquote {
  font-size: 1.43rem !important;
}

/* Small text elements */
article .text-sm {
  font-size: 1.17rem !important; /* Was 0.9rem */
}

article .text-xs {
  font-size: 1.04rem !important; /* Was 0.8rem */
}

/* All h2 titles in articles - force size */
article h2.text-2xl.font-bold.mt-12.mb-6 {
  font-size: 2.6rem !important;
}

/* Strong/bold text */
article strong {
  font-size: inherit !important;
}

/* Green CTA section titles */
section h3.text-3xl.font-bold {
  font-size: 3.9rem !important; /* Was 3rem - increased by 30% */
  line-height: 1.2 !important;
}

section p.text-xl {
  font-size: 1.625rem !important; /* Was 1.25rem - increased by 30% */
}

/* Related articles cards */
.gradient-card h4 {
  font-size: 1.56rem !important; /* Was 1.2rem */
}

.gradient-card p {
  font-size: 1.17rem !important; /* Was 0.9rem */
}