/* Base editorial styles */
body {
    overflow-x: hidden;
}

.editorial-shadow {
    box-shadow: 0 4px 20px rgba(0, 10, 30, 0.05);
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #faf9fd;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 10, 30, 0.1);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 10, 30, 0.2);
}

/* Glass effect */
.glass {
    background: rgba(250, 249, 253, 0.8);
    backdrop-filter: blur(12px);
}

/* Image scaling */
.zoom-on-hover img {
    transition: transform 0.5s ease;
}

.zoom-on-hover:hover img {
    transform: scale(1.05);
}

/* Form focus */
input:focus {
    outline: none;
}
