/* Typography Fixes - Remove shadows from all headings except FV */

/* Ensure all H2 tags have no text shadow */
h2 {
    text-shadow: none !important;
}

/* Ensure all H3 tags have no text shadow */
h3 {
    text-shadow: none !important;
}

/* Ensure pure black color for headings */
.text-2xl, 
.text-3xl, 
.text-4xl, 
.text-5xl, 
.text-6xl,
.text-7xl,
.text-8xl {
    color: inherit;
    text-shadow: none;
}

/* Specific fix for section headings */
section:not(:first-of-type) h1,
section:not(:first-of-type) h2,
section:not(:first-of-type) h3,
section:not(:first-of-type) h4,
section:not(:first-of-type) h5,
section:not(:first-of-type) h6 {
    text-shadow: none !important;
    color: inherit;
}

/* Ensure black headings stay black */
.text-black {
    color: #000000 !important;
}

/* Fix for any potential gray text shadows */
.text-gray-900 {
    color: #111827 !important;
    text-shadow: none !important;
}