/* Custom Utilities */
.text-justify-inter { 
    text-align: justify; 
    text-justify: inter-word; 
}

.lazy-img { 
    opacity: 0; 
    transition: opacity 0.5s ease-in-out; 
}

.lazy-img.loaded { 
    opacity: 1; 
}

body {
    background-image: url('paper_texture.png');
    background-repeat: repeat;
    background-blend-mode: multiply;
    /* Fallback background color is handled by Tailwind classes on body tag */
}
