/**
 * WordPress 6.9 compatibility fixes
 */

/* Remove default text-decoration on links */
a {
    text-decoration: none !important;
}

/* Fix header overlap - add padding-top to body to compensate fixed header height */
body {
    padding-top: 80px !important; /* Height of fixed header (h-20 = 5rem = 80px) */
}

/* Alternative: add margin-top to main content if body padding doesn't work */
body > main,
body > .main,
#content,
.site-content {
    margin-top: 0 !important;
}
