/* Custom theme and layout classes */

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

/* Animations using native CSS */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulseSlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-scale-up {
    animation: scaleUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0; /* Handled by animation */
}

.animate-pulse-slow {
    animation: pulseSlow 2s infinite ease-in-out;
}

html {
    scroll-behavior: smooth;
}

/* Fix for icons */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
}

.partner-logo{
height:10rem!important;
}
