body { font-family: 'Inter', sans-serif; }
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.editorial-frame-tl { border-top-left-radius: 1.5rem; border-bottom-right-radius: 0; }
.editorial-frame-tr { border-top-right-radius: 1.5rem; border-bottom-left-radius: 0; }
.glass-nav { background: rgba(249, 249, 255, 0.7); backdrop-filter: blur(20px); }

/* Animacje Fade-In przypisane przez Intersection Observer */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Wygładzanie scrolla - dodatkowe w razie braku natywnej obsługi z biblioteki */
html {
    scroll-behavior: smooth;
}
