        /* Animazione di entrata */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Card Style */
        .bozza-card {
            @apply border border-gray-100 rounded-[24px] p-6 relative bg-white overflow-hidden transition-all duration-300;
            box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
        }

        .bozza-card:hover {
            @apply -translate-y-2;
            box-shadow: 0 12px 30px -5px rgba(14, 131, 136, 0.15);
        }

        .card-title {
            @apply font-bold text-xl mb-2 leading-tight text-stellaDark;
        }

        .card-text {
            @apply text-sm text-gray-500 leading-relaxed mb-4;
        }

        .card-link {
            @apply inline-block text-xs font-bold uppercase tracking-wider text-stellaTeal relative;
        }

        .card-link::after {
            content: '';
            @apply absolute -bottom-1 left-0 w-0 h-[2px] bg-stellaTeal transition-all duration-300;
        }

        .card-link:hover::after {
            @apply w-full;
        }

        .card-img-wrapper {
            @apply w-32 h-24 overflow-hidden rounded-xl flex-shrink-0 bg-gray-50;
        }

        .card-img-wrapper img {
            @apply w-full h-full object-cover transition-transform duration-500;
        }

        .bozza-card:hover .card-img-wrapper img {
            @apply scale-110;
        }

        .nav-blur {
            background: rgba(248, 250, 252, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        #wcb.carbonbadge{
            text-align: right !important;
        }
