/* Pagina m&c PA — export Next/Tailwind con navbar Polo */
:root {
    --font-playfair: "Playfair Display", Georgia, "Times New Roman", serif;
}

body.has-nav-offset:has(#contenuto) {
    background: #faf8f6;
}

#contenuto {
    flex: 1 1 auto;
    width: 100%;
}

#contenuto .font-serif {
    font-family: var(--font-playfair);
}

/* Menu mobile (statico) */
#mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(15, 23, 42, 0.45);
}

#mobile-nav.is-open {
    display: block;
}

#mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(100%, 20rem);
    overflow-y: auto;
    background: #fff;
    padding: 5.5rem 1.25rem 1.5rem;
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
}

#mobile-nav-panel a,
#mobile-nav-panel button.nav-mobile-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #314158;
    border-radius: 0.5rem;
}

#mobile-nav-panel a:hover,
#mobile-nav-panel button.nav-mobile-link:hover {
    background: rgba(15, 23, 42, 0.05);
    color: #8a2432;
}

.mc-cookie-dialog:not([open]) {
    display: none;
}

.mc-cookie-dialog[open] {
    display: block;
    margin: auto;
    border: none;
}

.mc-cookie-dialog::backdrop {
    background: rgba(0, 0, 0, 0.4);
}
