/* --- FONTS & IMPORTS --- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600");

@import url(https://db.onlinewebfonts.com/c/32d0ba9a82b15c3100ae9dd9e614ef11?family=HelveticaNeue-Extended);

:root 
{
    --yellow: #3f8d4b;
    --main: #000;
}





/* --- HEADER & NAVIGATION (FIXED & DROPDOWN) --- */

.header-wrap {
    position: fixed;
    top:0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    background-color: #000;
    z-index: 999999;
    padding: 0 8px;
    /* Permette la visualizzazione degli elementi che escono dal bordo */
    overflow: visible !important;
    margin-top: 10px;
}

.header-wrap [grid-row] {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: visible !important;
}

.header-logo {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1000001;
}

.header-logo a {
    text-decoration: none;
    color: #fff !important;
}

/* Nascondi elementi mobile su desktop */
#mobile-menu-check, .mobile-menu-trigger {
    display: none;
}

/* Menu Desktop */
.menu-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    width: 100%;
    overflow: visible !important;
}

.menu-item {
    position: relative;
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold";
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    padding: 10px 10px;
    /* Essenziale per far sì che il dropdown 100% si riferisca alla larghezza del testo */
    display: inline-block; 
}

/* Fix per i tag small di Cargo */
.menu-item small {
    display: block !important; 
    font-size: inherit !important;
    font-family: inherit !important;
    color: inherit !important;
}

.menu-item a { text-decoration: none; color: #fff !important; }

/* --- DROPDOWN DESKTOP (LARGHEZZA VINCOLATA ALLA VOCE) --- */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0; /* Allineamento orizzontale perfetto all'inizio della scritta */
    width: 100%; /* Forza la larghezza del dropdown a quella del menu-item */
    background-color: #000 !important;
    list-style: none !important;
    padding: 5px 10px; /* Padding solo verticale */
    text-align: left;
    z-index: 9999999 !important;
    overflow: hidden;
}

/* Mostra al passaggio del mouse */
.menu-item:hover .dropdown-content {
    display: block !important;
}

.dropdown-content li {
    padding: 4px 0 !important;
    margin: 0 !important;
    width: 100%;
}

.dropdown-content li a {
    color: #fff !important;
    font-size: 15px; /* Leggermente ridotto per gestire meglio lo spazio stretto */
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold";
    font-weight: bold;
    text-transform: none;
    line-height: 14px;
    display: block;
    /* Se il nome è più lungo della voce principale, va a capo senza allargare il box */
    white-space: normal; 
}

.dropdown-content li a:hover {
    color: #a5a5a5 !important;
}

/* --- MOBILE CONFIGURATION --- */
@media (max-width: 767px) {
    .header-wrap {
        top: 0rem; /* Corretto da 8rem che era troppo basso */
    }

    .mobile-menu-trigger {
        display: block;
        color: #fff;
        font-family: "Helvetica Neue", sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 14px;
        cursor: pointer;
        z-index: 1000001;
    }

    .menu-container {
        display: none !important; 
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #000;
        padding: 40px;
        gap: 25px;
    }

    #mobile-menu-check:checked ~ .menu-container {
        display: flex !important;
    }

    #mobile-menu-check:checked ~ .mobile-menu-trigger::before {
        content: "CHIUDI";
        position: fixed;
        right: 20px;
        top: 20px;
    }
    
    #mobile-menu-check:checked ~ .mobile-menu-trigger {
        font-size: 0;
    }

    .menu-item {
        font-size: 28px;
        width: 100%;
    }

    .dropdown-content {
        display: block !important;
        position: static;
        padding: 10px 0 0 15px !important;
        background: transparent !important;
        border: none !important;
    }

    .dropdown-content li a {
        font-size: 14px !important;
        opacity: 0.6;
    }
}

















/* --- RESET & ELEMENTI BASE --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body 
{
    font-family: "Segoe UI", sans-serif;
    color: #333;
    background-color: #fff;
}

p 
{
    color: inherit;
    margin-top: 12px;
    font-family: sans-serif;
}

b,
strong 
{
    font-weight: 800;
}

i,
em 
{
    font-style: italic;
}

s 
{
    text-decoration: line-through;
}

sub 
{
    position: relative;
    vertical-align: baseline;
    top: 0.3em;
}

sup 
{
    position: relative;
    vertical-align: baseline;
    top: -0.4em;
}

ul,
ol 
{
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    list-style-type: none;
}

blockquote 
{
    margin: 0;
    padding: 0 0 0 1em;
}

hr 
{
    background: rgba(0, 0, 0, 1);
    border: 0;
    height: 0px;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}

img 
{
    border: 0;
    padding: 0;
    top: 0;
    bottom: 0;
    left: 0;
}

mark 
{
    background-color: #fff;
    color: #fff;
    padding: 2px 4px;
    border-radius: 1px;
}

/* --- LAYOUT & CONTAINERS --- */
[grid-col] 
{
    padding-left: 8px !important;
    padding-right: 8px !important;
}

[data-css-preset] .container 
{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.0rem;
    padding-bottom: 0px;
    margin-top: 0rem;
    padding-top: 0;
    text-align: left;
}

[data-css-preset] .container_width 
{
    max-width: 1200px;
    height: 100%;
}

[data-css-preset] .content_padding 
{
    width: 100% !important;
}

.page-header.page-detail 
{
    padding-bottom: 60px;
    padding-top: 120px;
}

[local-style="35449641"] .page_background 
{
    background-color: #fff;
}

[data-predefined-style="true"] [local-style="37146116"] .page 
{
    background-color: initial;
}

[data-css-preset] .page 
{
    background-color: initial;
}

.home .page_background 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.paddi 
{
    padding-top: 8rem;
}

.spanna 
{
    min-height: 60vh;
}

.contain 
{
    backdrop-filter: blur(8px);
}

.content img 
{
    float: none;
    margin-bottom: 0rem;
    vertical-align: bottom;
    position: relative;
}

.content img.image-zoom:active 
{
    opacity: .7;
}

/* --- TIPOGRAFIA --- */


/* --- FONDAZIONE PRADA STYLE (DESKTOP) --- */

[data-predefined-style="true"] bodycopy {
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 21px;           /* Valore Prada */
    line-height: 26px;         /* Valore Prada */
    letter-spacing: -0.024em;
    font-weight: normal;
}

[data-predefined-style="true"] h1 {
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 110px;
    line-height: 80px;         /* Interlinea negativa Prada */
    letter-spacing: -0.045em;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: -4px;         /* Allineamento ottico */
}

[data-predefined-style="true"] small {
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    font-weight: bold;
}

[data-predefined-style="true"] subhead {
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 46px;
    line-height: 90%;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    font-weight: bold;
}

/* --- CONFIGURAZIONE MOBILE NATIVA CARGO (.mobile) --- */

/* Utilizzo della classe .mobile che Cargo applica al body */
body.mobile [data-predefined-style="true"] h1 {
    font-size: 48px !important;
    line-height: 42px !important;
    letter-spacing: -0.05em !important;
    margin-left: 0 !important;
}

body.mobile [data-predefined-style="true"] bodycopy {
    font-size: 16px !important;
    line-height: 22px !important;
    letter-spacing: -0.01em !important;
}

body.mobile [data-predefined-style="true"] subhead {
    font-size: 26px !important;
    line-height: 28px !important;
    letter-spacing: -0.024em !important;
}

body.mobile [data-predefined-style="true"] small {
    font-size: 11px !important;
    letter-spacing: 0.05em !important;
}

/* Fix per elementi specifici del tuo menu in modalità mobile */
body.mobile .menu-item {
    font-size: 28px !important;
}







.premio 
{
    text-align: justify;
    text-justify: inter-word;
}

body .premio 
{
    font-size: 1.4rem;
    letter-spacing: 0.0rem;
}

/* --- SITE MENU & NAVIGATION --- */
#site_menu 
{
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
    font-size: 20px;
    margin: 1rem;
    color: #fff;
    max-width: 1000px;
    min-width: 400px;
    text-align: right;
    background: rgba(25, 25, 25, 1);
    justify-content: center;
    position: fixed;
}

#site_menu .page-link a,
#site_menu .set-link > a 
{
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
    font-size: 28px;
    padding-bottom: 1rem;
    padding-top: 1rem;
    line-height: 0.6;
    letter-spacing: -0.1rem;
    font-style: normal;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}

#site_menu .close 
{
    color: #fff;
    font-size: 45px;
    position: absolute;
    padding-top: 1rem;
    padding-right: 1rem;
    font-weight: 200;
    line-height: 28px;
}

#site_menu a.active 
{
    color: #fff;
}

[data-css-preset] #site_menu_button 
{
    color: rgba(0, 0, 0, 1);
    font-size: 28px;
    line-height: 28px;
    position: fixed;
    right: 0rem;
    top: 0rem;
    margin: 2rem;
    text-align: right;
    background-color: #fff;
    z-index: 999999;
}

#site_menu_button.custom_icon 
{
    width: 80px;
    height: auto;
}

#site_menu_button.active 
{
    display: none;
}

.homepage a#site_menu_button 
{
    color: #000;
    padding: 2px;
    margin: 2rem;
}

[data-predefined-style="true"] [local-style="27997947"] #site_menu_button a 
{
    display: none;
}

.site_menu div a.active 
{
    background-color: transparent;
}

/* --- HEADER MENU & TOGGLES --- */
.header-menu 
{
    background-color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.header-menu-items,
.header-menu-itemz 
{
    display: none;
    z-index: 1;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 40px;
}

.header-menu-items hr 
{
    display: none;
}

#toggle-menu,
#toggle-menu1 
{
    display: none;
}

#toggle-menu:checked ~ .header-menu-items 
{
    display: block;
}

#toggle-menu1:checked ~ .header-menu-itemz 
{
    display: block;
}

#toggle-menu ~ label .hide,
#toggle-menu1 ~ label .hide 
{
    display: none;
}

#toggle-menu:checked ~ label .show,
#toggle-menu1:checked ~ label .show 
{
    display: none;
}

#toggle-menu:checked ~ label .hide,
#toggle-menu1:checked ~ label .hide 
{
    display: inline;
}

/* --- PROGRAMMA LIST --- */
ul.programma 
{
    list-style: none;
    padding-top: 50px;
    padding-bottom: 100px;
    margin: 0;
}

ul.programma li 
{
    display: grid;
    grid-template-columns: 4fr 4fr 2fr;
    gap: 1rem;
    padding: 10px 10px;
    border-bottom: 1px solid #000;
    font-size: 18px;
    position: relative;
    cursor: pointer;
}

ul.programma li:hover 
{
    background-color: black;
    color: white;
}

ul.programma li span 
{
    position: relative;
    z-index: 2;
}

ul.programma .luogo,
ul.programma .data 
{
    font-size: 16px;
    letter-spacing: 0.00em;
    text-decoration: none;
    color: inherit;
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
    font-style: normal;
    font-weight: bold;
}

ul.programma .titolo 
{
    font-size: 16px;
    letter-spacing: 0.00em;
    color: inherit;
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
    font-weight: bold;
    text-transform: capitalize;
}

/* --- DROPDOWNS & ACCORDIONS --- */
.dropdown 
{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    font-family: sans-serif;
    background: transparent !important;
    text-align: center;
}

.dropdown input[type="checkbox"] 
{
    display: none;
}

.dropdown label 
{
    display: flex;
    align-items: center;
    cursor: pointer;
    color: black;
    flex-direction: row;
    justify-content: space-between;
}

.dropdown label h2,
.dropdown label small 
{
    margin: 0;
    color: black;
}

.dropdown label::after 
{
    content: "+";
    font-weight: 200;
    font-size: 4rem;
    transition: transform 0.2s ease;
    color: black;
    line-height: 1;
}

.dropdown input[type="checkbox"]:checked + label::after 
{
    content: "–";
}

.dropdown .content 
{
    display: none;
    margin: 1rem 0 4rem 0;
}

.dropdown input[type="checkbox"]:checked + label + .content 
{
    display: block;
}

.dropdown .content ul 
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown .content li 
{
    margin: 0.5rem 0;
    line-height: 1.5;
    text-align: left;
}

.dropdown .content a 
{
    color: black;
    text-decoration: none;
}

.dropdown-toggle 
{
    width: 100% !important;
    padding: 4px 0px;
    background: transparent !important;
    color: #000 !important;
    border: none !important;
    cursor: pointer;
    position: relative;
    text-align: center;
}

.dropdown-toggle .icon 
{
    position: absolute;
    right: 0em;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    transition: transform 0.2s;
    color: #000 !important;
}

.dropdown-menu 
{
    display: none !important;
    width: 100% !important;
    box-sizing: border-box;
    margin-top: 0.3em;
    background: #fff !important;
    border: none !important;
    text-align: left;
    overflow: hidden;
}

.dropdown.open .dropdown-menu 
{
    display: block !important;
}

.dropdown-menu h2,
.dropdown-menu h2 a 
{
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: #000 !important;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center !important;
}

details summary 
{
    font-size: 30px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

details summary::after 
{
    content: "+";
    font-size: 1.2em;
    transition: transform 0.25s ease, content 0.25s ease;
}

details[open] summary::after 
{
    content: "–";
}

/* --- THUMBNAILS & GALLERIES --- */
div[thumbnails] 
{
    background-color: #fff;
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
}

[data-css-preset] .thumbnails 
{
    background-color: transparent;
    margin-bottom: 0rem;
}

[data-css-preset] .thumbnails_width 
{
    max-width: 1200px;
}

[data-css-preset] [thumbnails-pad] 
{
    padding-bottom: 40px;
}

.thumbnail a.image-link 
{
    display: flex !important;
    flex-direction: column !important;
}

.thumbnails .title 
{
    order: 1 !important;
    position: relative;
    color: #000;
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Regular", Icons;
    font-style: normal;
    font-weight: 800;
    font-size: 60px;
    letter-spacing: -0.056em;
    text-transform: uppercase;
    line-height: 52px;
    display: block;
    margin-bottom: 8px;
}

.thumbnails .thumb_image 
{
    order: 2 !important;
    -webkit-filter: brightness(95%);
    transition: all 0.6s ease;
    display: block;
    width: 100%;
}

.thumbnails .thumb_image:hover 
{
    -webkit-filter: brightness(110%);
}

.thumbnails .tags 
{
    order: 3 !important;
    margin-top: 1.0rem;
    margin-bottom: 1.0rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
    text-transform: capitalize;
}

.thumbnails .tags a 
{
    border-bottom: 0;
    color: inherit;
    text-decoration: none;
}

/* --- SHOP & PRODUCTS --- */
[data-css-preset] #shop_button 
{
    color: rgba(0, 0, 0, 0.85);
    background: transparent;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    position: fixed;
    padding: 6px;
    top: 1rem;
    left: 1.5rem;
}

#shop_button.text 
{
    font-size: 1.6rem;
    color: rgba(0, 0, 0, 0.75);
    font-family: Diatype, Icons;
    padding: 0;
    line-height: 1.3;
}

#shop_button.custom_icon 
{
    width: 40px;
    height: auto;
}

.shop_product 
{
    width: 100%;
    max-width: 22rem;
    position: relative;
    display: block;
}

.shop_product .price 
{
    font-family: Diatype, Icons;
    font-size: 2.0rem;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.75);
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.shop_product .dropdown 
{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Icons;
    font-size: 2.0rem;
    display: inline-block;
    width: 100%;
    border: 1px solid rgba(0,0,0,.2);
    background: white url(https://static.cargo.site/assets/images/select-line-arrows.svg) no-repeat right;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: .7rem 2.5rem .7rem 1rem;
    color: rgba(0, 0, 0, 0.75);
}

.shop_product .button 
{
    font-family: Diatype, Icons;
    font-size: 2.0rem;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    flex: 0 0 50%;
    text-align: left;
    display: inline-block;
    line-height: 1.2;
    padding: .8rem 1rem .9rem;
    font-weight: 500;
}

/* --- SLIDESHOW NAVIGATION --- */
.slideshow-navigation,
.navigation 
{
    display: flex !important;
    justify-content: flex-start !important;
    margin-top: 20px !important;
    gap: 8px !important;
}

.slideshow-navigation a,
.slideshow-navigation span,
.navigation a,
.navigation span 
{
    display: block !important;
    width: 6px !important;
    height: 6px !important;
    background-color: #d1d1d1 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    border: none !important;
    transition: background 0.3s ease;
    cursor: pointer;
}

.slideshow-navigation a.active,
.slideshow-navigation span.active,
.navigation a.active,
.navigation span.current 
{
    background-color: #555555 !important;
}

/* --- UTILITIES & ANIMATIONS --- */
.text-center 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: start;
}

.titlean 
{
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.typewriteran 
{
    overflow: hidden;
    border-right: 0.15em solid black;
    white-space: nowrap;
    animation: typing 3s steps(40, end) forwards;
}

.social img 
{
    max-width: 25px;
    margin: 0 1rem;
    opacity: 1;
    max-height: 7rem;
}

#toolset,
.search,
.search-icon 
{
    display: none;
}

.material-symbols-outlined 
{
    scale: 1.6;
    margin-top: 0px;
}

.cky-btn 
{
    font-family: sans-serif;
}

body div#eu_cookie_notification 
{
    background: white;
    color: #4c3f36;
}

/* --- MEDIA QUERIES (MOBILE) --- */
@media (max-width: 767px) 
{
    [data-css-preset] .content_padding 
    {
        padding-left: 10px !important;
        padding-right: 10px !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    [data-predefined-style="true"] .page-header.page-detail 
    {
        padding-bottom: 40px;
        padding-top: 80px;
    }

    [data-css-preset] .container 
    {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    [data-css-preset] .container_width 
    {
        max-width: 100%;
        height: 100%;
    }

    .mobile .page,
    [data-css-preset].mobile .page 
    {
        position: relative;
        max-width: 100%;
        width: 100%;
        background-color: transparent;
    }

    [data-predefined-style="true"] bodycopy 
    {
        font-size: 17px;
        line-height: 20px;
        letter-spacing: -0.024em;
        font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
        font-style: normal;
        font-weight: bold;
    }

    [data-predefined-style="true"] h1 
    {
        font-size: 50px;
        line-height: 0.9;
        letter-spacing: -0.048em;
        padding-bottom: 10px;
	color: #a5a5a5;
    }

    [data-predefined-style="true"] h2 
    {
        text-transform: uppercase;
        font-size: 16px;
        line-height: 16px;
        letter-spacing: -0.03em;
        font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
        font-style: normal;
        font-weight: bold;
    }

    [data-predefined-style="true"] small 
    {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: -0.010em;
    }

    [data-predefined-style="true"] subhead 
    {
        font-size: 16px;
        line-height: 10px !important;
        letter-spacing: -0.009em;
        max-width: 70%;
        white-space: pre-wrap;
    }

    body.mobile #site_menu 
    {
        font-family: "Golos Text", Icons;
        font-weight: normal;
        font-style: normal;
    }

    body.mobile #site_menu .page-link a 
    {
        font-family: "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue Bold", Icons;
        line-height: 0px;
        padding: 2.5rem 0;
        font-size: 30px;
        text-align: right;
        font-weight: bold;
        color: white;
        font-style: normal;
        display: block;
    }

    body.mobile #site_menu .close 
    {
        font-family: "Space Grotesk", Icons;
        font-size: 50px;
        line-height: 1em;
        padding-top: 1rem;
        padding-right: 1rem;
        justify-content: center;
        color: #fff;
        font-style: normal;
        font-weight: 400;
    }

    body.mobile #site_menu_wrapper .site_menu 
    {
        display: flex;
        justify-content: center;
    }

    body.mobile #site_menu_button 
    {
        font-family: "Golos Text", Icons;
        font-size: 30px;
        line-height: 26px;
        color: #000;
    }

    [data-css-preset] [responsive-layout] [thumbnails-pad] 
    {
        padding-top: 0;
        margin-right: 0.0rem;
        margin-left: 0px;
        margin-bottom: 40px;
    }

    [data-css-preset] [responsive-layout] [thumbnails-gutter] 
    {
        justify-content: center;
        margin-top: 0.0rem;
    }

    .thumbnails .title 
    {
        font-size: 40px !important;
        line-height: 35px;
        padding-bottom: 0px;
        max-width: 80%;
        white-space: pre-wrap;
    }

    body.mobile #shop_button:not(.text) 
    {
        margin: -6px;
        font-size: 40px;
    }
}

@media (max-width: 991px) 
{
    ul.programma li 
    {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    ul.programma .titolo 
    {
        grid-column: 1;
        grid-row: 1;
        font-size: 18px;
    }

    ul.programma .luogo 
    {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
        display: block;
        margin-bottom: 0.2rem;
    }

    ul.programma .data 
    {
        grid-column: 2;
        grid-row: 2;
        text-align: right;
        font-size: 16px;
        margin-top: 0.2rem;
    }
}