 body {
            font-size: 48px;
        }

        div:nth-child(1) {
            font-family: 'Crimson Pro', serif;
        }

        div:nth-child(2) {
            font-family: 'Literata’, serif;

        }

        .section-title.text-center.mb-16 {
            color: #ff0000;
            /* Sostituisci con il colore desiderato (Hex, RGB o nome) */
        }

        text-xl font-black mt-2 mb-4 swiper-container {
            width: 100%;
            height: 100%;
        }


        swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
        }



        swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

       

        .center-wrapper {
            text-align: center;
            margin: 2rem 0;
        }

        #gallery-container-R4C {
            position: relative;
            width: 100vw;
            height: 80vh;
        }

        .photoGallery {
            position: absolute;
            padding: 10px 10px 35px 10px;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #fff;
            /* Animazione di entrata */
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .photoGallery.visible {
            opacity: 1;
            transform: scale(1) rotate(var(--r));
        }

        .photoGallery img {
            max-width: 250px;
            height: auto;
            display: block;
        }
        
        
         /* Correzione font Literata (virgolette corrette) */
    .font-crimson {
        font-family: 'Crimson Pro', serif;
    }

    .font-literata {
        font-family: 'Literata', serif;
    }

    .section-title {
        color: #ff0000;
    }

    /* Centratura globale per le sezioni */
    section {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: auto;
    }

    /* Ottimizzazione immagini */
    img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
        /* Opzionale: arrotonda leggermente i bordi degli articoli */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        /* Opzionale: dà profondità */
    }