        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --rosso: #9d1720;
            --rosso-scuro: #701016;
            --nero: #111;
            --grigio: #666;
            --grigio-chiaro: #f5f4f2;
            --bianco: #fff;
            --bordo: #dedbd6;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--nero);
            background: var(--bianco);
            line-height: 1.5;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* TESTATA */

        .topbar {
            background: #080808;
            color: #ccc;
            font-size: 12px;
            padding: 7px 20px;
            text-align: center;
            letter-spacing: .4px;
        }

        .masthead {
            max-width: 1200px;
            margin: auto;
            padding: 22px 20px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .brand img {
            width: 70px;
            height: 70px;
            border-radius: 14px;
            object-fit: cover;
        }

        .brand h1 {
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(32px, 5vw, 52px);
            line-height: .9;
            font-weight: 700;
            letter-spacing: -2px;
        }

        .brand h1 span {
            color: var(--rosso);
            display: block;
        }

        .brand p {
            margin-top: 8px;
            color: var(--grigio);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .official {
            text-align: right;
            color: #777;
            font-size: 12px;
            max-width: 210px;
        }

        .official strong {
            color: #333;
        }

        /* NAV */

        nav {
            background: #0b0b0b;
            border-bottom: 4px solid var(--rosso);
        }

        .nav-inner {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            overflow-x: auto;
        }

        nav a {
            color: white;
            padding: 15px 16px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            white-space: nowrap;
        }

        nav a:hover {
            background: var(--rosso);
        }

        nav .segnala {
            margin-left: auto;
            background: var(--rosso);
        }

        /* HERO */

        .hero {
            max-width: 1200px;
            margin: 28px auto 0;
            padding: 0 20px;
        }

        .hero-card {
            min-height: 470px;
            position: relative;
            overflow: hidden;
            border-radius: 3px;
            background:
                linear-gradient(
                    90deg,
                    rgba(0,0,0,.91) 0%,
                    rgba(0,0,0,.67) 43%,
                    rgba(0,0,0,.08) 100%
                ),
                url("header-corriere-teatrale.jpg") center/cover;
        }

        .hero-content {
            position: absolute;
            left: 0;
            bottom: 0;
            max-width: 650px;
            color: white;
            padding: 45px;
        }

        .categoria {
            display: inline-block;
            background: var(--rosso);
            color: white;
            padding: 5px 9px;
            font-size: 11px;
            font-weight: bold;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-bottom: 13px;
        }

        .hero h2 {
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(34px, 5vw, 57px);
            line-height: 1.02;
            margin-bottom: 15px;
        }

        .hero p {
            color: #ddd;
            max-width: 560px;
            font-size: 17px;
        }

        /* CONTENUTO */

        main {
            max-width: 1200px;
            margin: 38px auto;
            padding: 0 20px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-bottom: 2px solid #111;
            padding-bottom: 8px;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-family: Georgia, "Times New Roman", serif;
            font-size: 27px;
        }

        .section-header a {
            color: var(--rosso);
            font-size: 13px;
            font-weight: bold;
        }

        .event-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 50px;
        }

        .event-card {
            border: 1px solid var(--bordo);
            padding: 21px;
            background: white;
        }

        .date {
            color: var(--rosso);
            font-weight: 800;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .7px;
        }

        .event-card h3 {
            font-family: Georgia, "Times New Roman", serif;
            font-size: 22px;
            margin: 8px 0;
        }

        .event-card p {
            color: var(--grigio);
            font-size: 14px;
        }

        /* DUE COLONNE */

        .editorial-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 38px;
            margin-bottom: 50px;
        }

        .article {
            border-bottom: 1px solid var(--bordo);
            padding: 17px 0;
        }

        .article:first-of-type {
            padding-top: 0;
        }

        .article h3 {
            font-family: Georgia, "Times New Roman", serif;
            font-size: 24px;
            margin: 5px 0;
        }

        .article p {
            color: var(--grigio);
            font-size: 14px;
        }

        /* BACHECA */

        .bacheca {
            background: var(--grigio-chiaro);
            padding: 25px;
            border-top: 4px solid var(--rosso);
        }

        .bacheca h2 {
            font-family: Georgia, "Times New Roman", serif;
            margin-bottom: 5px;
        }

        .annuncio {
            padding: 17px 0;
            border-bottom: 1px solid #d7d3ce;
        }

        .annuncio:last-child {
            border-bottom: 0;
        }

        .annuncio small {
            color: var(--rosso);
            font-weight: bold;
            text-transform: uppercase;
        }

        .annuncio h3 {
            font-size: 16px;
            margin-top: 4px;
        }

        /* COMPAGNIE */

        .companies {
            background: #111;
            color: white;
            padding: 45px 20px;
        }

        .companies-inner {
            max-width: 1200px;
            margin: auto;
        }

        .companies h2 {
            font-family: Georgia, "Times New Roman", serif;
            font-size: 30px;
            margin-bottom: 8px;
        }

        .companies > div > p {
            color: #aaa;
            margin-bottom: 25px;
        }

        .company-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .company-card {
            border: 1px solid #333;
            padding: 22px;
            min-height: 120px;
        }

        .company-card:hover {
            border-color: var(--rosso);
        }

        .company-card h3 {
            font-family: Georgia, "Times New Roman", serif;
            font-size: 19px;
        }

        .company-card p {
            color: #999;
            font-size: 13px;
            margin-top: 6px;
        }

        /* CTA */

        .cta {
            background: var(--rosso);
            color: white;
            text-align: center;
            padding: 48px 20px;
        }

        .cta h2 {
            font-family: Georgia, "Times New Roman", serif;
            font-size: 32px;
        }

        .cta p {
            margin: 8px auto 20px;
            max-width: 600px;
        }

        .button {
            display: inline-block;
            background: white;
            color: var(--rosso);
            padding: 12px 22px;
            font-weight: bold;
            font-size: 14px;
        }

        /* FOOTER */

        footer {
            background: #050505;
            color: #aaa;
            padding: 35px 20px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }

        footer strong {
            color: white;
        }

        footer p {
            font-size: 13px;
            margin-top: 5px;
        }

        /* MOBILE */

        @media (max-width: 800px) {

            .official {
                display: none;
            }

            .brand img {
                width: 55px;
                height: 55px;
            }

            .brand h1 {
                font-size: 32px;
            }

            .brand p {
                letter-spacing: 1px;
                font-size: 10px;
            }

            .nav-inner {
                padding: 0;
            }

            nav .segnala {
                margin-left: 0;
            }

            .hero {
                padding: 0;
                margin-top: 0;
            }

            .hero-card {
                border-radius: 0;
                min-height: 440px;
                background:
                    linear-gradient(
                        0deg,
                        rgba(0,0,0,.96),
                        rgba(0,0,0,.15)
                    ),
                    url("header-corriere-teatrale.jpg") center/cover;
            }

            .hero-content {
                padding: 25px;
            }

            .hero p {
                font-size: 15px;
            }

            .event-grid,
            .editorial-grid,
            .company-grid {
                grid-template-columns: 1fr;
            }

            .footer-inner {
                flex-direction: column;
            }
        }
/* LOGHI COMPAGNIE */

.company-logo {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 18px;
    background: #fff;
}

@media (max-width: 800px) {
    .company-logo {
        height: 240px;
    }
}
/* SCHEDA COMPAGNIA */

.company-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    padding: 30px 0 40px;
}

.company-profile-logo img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
}

.company-profile-content {
    max-width: 760px;
}


/* LOCANDINE EVENTI */

.event-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: top;
    margin-bottom: 18px;
}


/* MOBILE */

@media (max-width: 800px) {

    .company-profile {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .company-profile-logo img {
        max-width: 220px;
    }

}
/* =========================================================
   SCHEDA SINGOLO SPETTACOLO
   ========================================================= */

.event-detail {
    padding: 35px 0 60px;
}

.event-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 55px;
    align-items: start;
}

.event-detail-poster img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ddd;
}

.event-detail-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    margin: 14px 0 15px;
}

.event-detail-company {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    margin-bottom: 30px;
}

.event-detail-company a {
    font-weight: bold;
}

.event-detail-description {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.event-detail-block {
    border-top: 1px solid #ccc;
    padding: 18px 0;
}

.event-detail-block h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.event-detail-date {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 500px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.event-button {
    display: inline-block;
    background: #a71920;
    color: #fff;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .5px;
}

.event-button:hover {
    background: #111;
}


/* MOBILE */

@media (max-width: 800px) {

    .event-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-detail-poster {
        max-width: 420px;
    }

    .event-detail-content h1 {
        font-size: 38px;
    }

    .event-detail-date {
        flex-direction: column;
        gap: 2px;
    }

}
/* =========================================================
   BACHECA
   ========================================================= */

.section-intro {
    max-width: 760px;
    margin: 18px 0 28px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}


/* FILTRI */

.bacheca-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #d8d8d8;
}

.bacheca-filter {
    appearance: none;
    border: 1px solid #c7c7c7;
    background: #fff;
    color: #222;
    padding: 9px 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}

.bacheca-filter:hover {
    border-color: #a71920;
    color: #a71920;
}

.bacheca-filter.active {
    background: #a71920;
    border-color: #a71920;
    color: #fff;
}


/* GRIGLIA ANNUNCI */

.bacheca-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 55px;
}


/* SINGOLO ANNUNCIO */

.annuncio-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 290px;
    padding: 25px;
    background: #f7f6f4;
    border-top: 4px solid #a71920;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.annuncio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.annuncio-categoria {
    margin-bottom: 16px;
    color: #a71920;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.annuncio-card h3 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.12;
}

.annuncio-card h3 a {
    color: #111;
    text-decoration: none;
}

.annuncio-card h3 a:hover {
    color: #a71920;
}

.annuncio-descrizione {
    margin: 0 0 20px;
    color: #444;
    font-size: 15px;
    line-height: 1.55;
}

.annuncio-meta {
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid #d5d2ce;
    color: #666;
    font-size: 12px;
    line-height: 1.6;
}

.annuncio-compagnia {
    margin-bottom: 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: bold;
}

.annuncio-compagnia a {
    color: #111;
    text-decoration: none;
}

.annuncio-compagnia a:hover {
    color: #a71920;
}


/* =========================================================
   CTA BACHECA
   ========================================================= */

.bacheca-cta {
    width: 100%;
    margin-top: 25px;
    padding: 50px 20px;
    background: #a71920;
    color: #fff;
    text-align: center;
}

.bacheca-cta > div {
    width: min(100%, 1000px);
    margin: 0 auto;
}

.bacheca-cta h2 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
}

.bacheca-cta p {
    margin: 0 auto 22px;
    font-size: 16px;
    line-height: 1.5;
}

.bacheca-cta a {
    display: inline-block;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #fff;
    color: #a71920;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .7px;
    transition: all .2s ease;
}

.bacheca-cta a:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}


/* =========================================================
   BACHECA - TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .bacheca-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   BACHECA - MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .section-intro {
        font-size: 16px;
    }

    .bacheca-filters {
        gap: 6px;
    }

    .bacheca-filter {
        padding: 8px 10px;
        font-size: 10px;
    }

    .bacheca-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .annuncio-card {
        min-height: auto;
        padding: 20px;
    }

    .bacheca-cta {
        padding: 38px 20px;
    }

    .bacheca-cta h2 {
        font-size: 27px;
    }

}
/* =========================================================
   SEGNALA
   ========================================================= */

.segnala-page {
    padding-bottom: 70px;
}

.segnala-intro {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 70px;
    align-items: start;
    margin: 25px 0 50px;
}

.segnala-intro h1 {
    max-width: 800px;
    margin: 10px 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
}

.segnala-intro > div > p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

.segnala-note {
    padding: 25px;
    border-top: 4px solid #a71920;
    background: #f5f4f2;
}

.segnala-note strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.segnala-note p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: #555;
}


/* SEZIONI FORM */

.segnala-form {
    max-width: 1100px;
}

.form-section {
    margin: 0 0 35px;
    padding: 30px;
    border: 1px solid #d6d6d6;
    background: #fff;
}

.form-section legend {
    padding: 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: bold;
}


/* SCELTA TIPO */

.tipo-segnalazione {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.tipo-card {
    position: relative;
    min-height: 165px;
    padding: 22px 17px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: .2s ease;
}

.tipo-card:hover {
    border-color: #a71920;
}

.tipo-card.selected {
    border-color: #a71920;
    box-shadow: inset 0 -4px 0 #a71920;
    background: #faf6f6;
}

.tipo-card input {
    position: absolute;
    opacity: 0;
}

.tipo-icon {
    display: block;
    margin-bottom: 15px;
    font-size: 27px;
}

.tipo-card strong {
    display: block;
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.1;
}

.tipo-card small {
    display: block;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}


/* CAMPI */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
}

.optional {
    color: #777;
    font-weight: normal;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border: 1px solid #bbb;
    border-radius: 0;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.form-group textarea {
    resize: vertical;
    line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(167, 25, 32, .18);
    border-color: #a71920;
}

.form-help {
    margin-top: 8px;
    color: #777;
    font-size: 12px;
}


/* UPLOAD IMMAGINE */

.image-upload-box {
    position: relative;
    min-height: 125px;
    border: 2px dashed #bbb;
    background: #f8f8f8;
    transition: .2s ease;
}

.image-upload-box:hover {
    border-color: #a71920;
    background: #faf6f6;
}

.image-upload-box input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-copy {
    display: flex;
    min-height: 125px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 20px;
    text-align: center;
    pointer-events: none;
}

.upload-copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.upload-copy span {
    color: #666;
    font-size: 12px;
}


/* ANTEPRIMA 16:9 */

.image-preview {
    margin-top: 18px;
}

.preview-frame {
    width: min(100%, 560px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee;
}

.preview-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.image-preview > span {
    display: block;
    margin-top: 7px;
    color: #777;
    font-size: 11px;
}


/* PRIVACY + INVIO */

.form-final {
    background: #f7f6f4;
}

.privacy-check {
    display: flex;
    max-width: 800px;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.5;
}

.privacy-check input {
    margin-top: 3px;
}

.submit-segnala {
    appearance: none;
    padding: 15px 26px;
    border: 0;
    background: #a71920;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.submit-segnala:hover {
    background: #111;
}

.submit-note {
    margin-top: 12px;
    color: #777;
    font-size: 11px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .segnala-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .segnala-note {
        max-width: 600px;
    }

    .tipo-segnalazione {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .segnala-intro h1 {
        font-size: 40px;
    }

    .tipo-segnalazione {
        grid-template-columns: 1fr;
    }

    .tipo-card {
        min-height: auto;
    }

    .form-section {
        padding: 22px 17px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-full {
        grid-column: auto;
    }
}
/* =========================================================
   SEGNALA — RESTYLING EDITORIALE
   ========================================================= */

.segnala-page {
    padding-top: 20px;
    padding-bottom: 80px;
}


/* INTRO */

.segnala-intro {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 340px !important;
    gap: 60px !important;
    align-items: start;
    margin: 35px 0 65px !important;
}

.segnala-intro h1 {
    margin: 12px 0 24px !important;
    max-width: 720px;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(48px, 5vw, 72px) !important;
    font-weight: 700;
    line-height: .98 !important;
    letter-spacing: -2px;
}

.segnala-intro > div > p {
    max-width: 760px;
    margin: 8px 0 !important;
    color: #444;
    font-size: 18px !important;
    line-height: 1.6 !important;
}


/* BOX PRIMA DI INVIARE */

.segnala-note {
    display: block !important;
    padding: 26px 28px !important;
    border: 0 !important;
    border-top: 5px solid #a71920 !important;
    background: #f3f1ee !important;
}

.segnala-note strong {
    display: block;
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px !important;
}

.segnala-note p {
    margin: 9px 0 !important;
    color: #555;
    font-size: 14px !important;
    line-height: 1.55 !important;
}


/* FORM GENERALE */

.segnala-form {
    width: 100%;
    max-width: 1180px;
}

.segnala-form fieldset {
    min-width: 0;
}

.form-section {
    display: block;
    margin: 0 0 42px !important;
    padding: 32px !important;
    border: 1px solid #d4d4d4 !important;
    background: #fff !important;
}

.form-section legend {
    width: auto !important;
    padding: 0 14px !important;
    color: #111;
    background: #fff;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 25px !important;
    font-weight: 700 !important;
}


/* =========================================================
   LE 5 SCELTE
   ========================================================= */

.tipo-segnalazione {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100%;
    margin-top: 10px;
}

.tipo-card {
    position: relative !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    min-width: 0;
    min-height: 185px !important;

    box-sizing: border-box;
    padding: 24px 20px !important;

    border: 1px solid #d1d1d1 !important;
    border-top: 4px solid #111 !important;

    background: #f8f7f5 !important;

    cursor: pointer;

    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.tipo-card:hover {
    transform: translateY(-3px);
    border-color: #a71920 !important;
    border-top-color: #a71920 !important;
    background: #fff !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.07);
}

.tipo-card.selected {
    border-color: #a71920 !important;
    border-top-color: #a71920 !important;
    background: #faf4f4 !important;
    box-shadow: inset 0 -4px 0 #a71920;
}


/* NASCONDIAMO IL RADIO NATIVO */

.tipo-card input[type="radio"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none;
}


/* ICONA */

.tipo-icon {
    display: block !important;
    margin: 0 0 22px !important;
    font-size: 31px !important;
    line-height: 1 !important;
}


/* TITOLO CARD */

.tipo-card strong {
    display: block !important;
    margin: 0 0 10px !important;
    color: #111;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 20px !important;
    line-height: 1.08 !important;
}


/* DESCRIZIONE CARD */

.tipo-card small {
    display: block !important;
    margin-top: auto;
    color: #666 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
}


/* =========================================================
   CAMPI DEL FORM
   ========================================================= */

.form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 28px !important;
}

.form-group {
    min-width: 0;
}

.form-full {
    grid-column: 1 / -1 !important;
}

.form-group label {
    display: block !important;
    margin: 0 0 8px !important;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;

    margin: 0 !important;
    padding: 13px 14px !important;

    border: 1px solid #bbb !important;
    border-radius: 0 !important;

    background: #fff !important;
    color: #111;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
}

.form-group input,
.form-group select {
    min-height: 47px;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #a71920 !important;
    box-shadow: 0 0 0 2px rgba(167,25,32,.10);
}

.optional {
    color: #777;
    font-weight: 400;
}


/* =========================================================
   UPLOAD
   ========================================================= */

.image-upload-box {
    position: relative !important;
    display: block !important;
    min-height: 150px;

    border: 2px dashed #aaa !important;
    background: #f6f5f3 !important;

    overflow: hidden;
}

.image-upload-box:hover {
    border-color: #a71920 !important;
    background: #faf5f5 !important;
}

.image-upload-box input[type="file"] {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    opacity: 0 !important;
    cursor: pointer;
    z-index: 2;
}

.upload-copy {
    display: flex !important;
    min-height: 150px;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    padding: 25px;

    text-align: center;
}

.upload-copy strong {
    margin-bottom: 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.upload-copy span {
    display: block;
    margin: 2px 0;
    color: #666;
    font-size: 12px;
}


/* ANTEPRIMA */

.image-preview {
    margin-top: 18px !important;
}

.preview-frame {
    width: min(100%, 600px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee;
}

.preview-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview > span {
    display: block;
    margin-top: 7px;
    color: #777;
    font-size: 11px;
}


/* =========================================================
   CONTATTI / PRIVACY
   ========================================================= */

.form-final {
    padding: 30px !important;
    background: #f5f4f2 !important;
    border: 0 !important;
    border-top: 4px solid #111 !important;
}

.privacy-check {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;

    max-width: 820px;
    margin: 0 0 28px !important;

    color: #444;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.privacy-check input[type="checkbox"] {
    flex: 0 0 auto;
    width: 17px !important;
    height: 17px !important;
    margin: 2px 0 0 !important;
}


/* PULSANTE */

.submit-segnala {
    display: inline-block !important;

    min-width: 220px;
    padding: 15px 25px !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: #a71920 !important;
    color: #fff !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .8px;
    text-transform: uppercase;

    cursor: pointer;
}

.submit-segnala:hover {
    background: #111 !important;
}

.submit-note {
    margin: 13px 0 0 !important;
    color: #777;
    font-size: 11px !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .tipo-segnalazione {
        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;
    }
}


@media (max-width: 850px) {

    .segnala-intro {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .segnala-note {
        max-width: 600px;
    }

    .tipo-segnalazione {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }
}


@media (max-width: 600px) {

    .segnala-intro h1 {
        font-size: 42px !important;
        letter-spacing: -1px;
    }

    .tipo-segnalazione {
        grid-template-columns: 1fr !important;
    }

    .tipo-card {
        min-height: 145px !important;
    }

    .form-section {
        padding: 22px 17px !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .form-full {
        grid-column: auto !important;
    }
}
/* ANTEPRIMA LOCANDINA SPETTACOLO */

.poster-preview {
    margin-top: 18px;
}

.poster-preview-frame {
    width: min(100%, 320px);
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #eee;
    border: 1px solid #ddd;
}

.poster-preview-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

.poster-preview > span {
    display: block;
    max-width: 320px;
    margin-top: 7px;
    color: #777;
    font-size: 11px;
}
/* =========================================================
   ANTEPRIMA LOGO COMPAGNIA
   ========================================================= */

.logo-preview {
    margin-top: 18px;
}

.logo-preview-frame {
    width: min(100%, 280px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ddd;
}

.logo-preview-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    box-sizing: border-box;
}

.logo-preview > span {
    display: block;
    max-width: 280px;
    margin-top: 7px;
    color: #777;
    font-size: 11px;
}
/* =========================================================
   PAGINA GRAZIE
   ========================================================= */

.grazie-page {
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px 90px;
}

.grazie-box {
    width: min(100%, 850px);
    text-align: center;
}

.grazie-check {
    display: flex;
    width: 76px;
    height: 76px;
    align-items: center;
    justify-content: center;

    margin: 28px auto;

    border: 2px solid #a71920;
    border-radius: 50%;

    color: #a71920;

    font-size: 38px;
    font-weight: bold;
}

.grazie-box h1 {
    margin: 0 auto 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -1.5px;
}

.grazie-lead {
    margin: 0 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.grazie-box > p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;

    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.grazie-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 35px;
}

.grazie-primary,
.grazie-secondary {
    display: inline-block;
    padding: 14px 20px;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .7px;
}

.grazie-primary {
    background: #a71920;
    border: 1px solid #a71920;
    color: #fff;
}

.grazie-primary:hover {
    background: #111;
    border-color: #111;
}

.grazie-secondary {
    background: #fff;
    border: 1px solid #111;
    color: #111;
}

.grazie-secondary:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 600px) {

    .grazie-page {
        min-height: 500px;
        padding: 50px 20px 70px;
    }

    .grazie-box h1 {
        font-size: 42px;
    }

}
/* =========================================================
   CHI SIAMO
   ========================================================= */

.chi-siamo-hero {
    padding: 55px 0 45px;
    border-bottom: 1px solid #d8d8d8;
}

.chi-siamo-hero .section-label {
    display: inline-block;
    margin-bottom: 18px;
    padding-top: 8px;
    border-top: 4px solid #b30000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #b30000;
}

.chi-siamo-hero h1 {
    max-width: 950px;
    margin: 0 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -2px;
    color: #111;
}

.chi-siamo-lead {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.5;
    color: #444;
}


/* CORPO PAGINA */

.chi-siamo-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
    gap: 65px;
    padding: 50px 0 70px;
}

.chi-siamo-main {
    max-width: 850px;
}

.chi-siamo-main h2 {
    margin: 45px 0 18px;
    padding-top: 16px;
    border-top: 4px solid #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.15;
    color: #111;
}

.chi-siamo-main h2:first-child {
    margin-top: 0;
}

.chi-siamo-main p {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.7;
    color: #282828;
}

.chi-siamo-main strong {
    color: #111;
}


/* CALL TO ACTION */

.chi-siamo-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 20px;
    background: #b30000;
    color: #fff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    transition: background 0.2s ease;
}

.chi-siamo-cta:hover {
    background: #111;
}


/* COLONNA DESTRA */

.chi-siamo-sidebar {
    border-left: 1px solid #d8d8d8;
    padding-left: 35px;
}

.chi-siamo-box {
    margin-bottom: 40px;
    padding-top: 14px;
    border-top: 4px solid #111;
}

.chi-siamo-box:first-child {
    border-top-color: #b30000;
}

.chi-siamo-box .section-label {
    margin-bottom: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    color: #b30000;
}

.chi-siamo-box h3 {
    margin: 0 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.1;
}

.chi-siamo-box p {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.chi-siamo-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chi-siamo-box li {
    padding: 10px 0;
    border-bottom: 1px solid #e4e4e4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.chi-siamo-box li::before {
    content: "— ";
    color: #b30000;
}


/* FOOTER CHI SIAMO */

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

footer a {
    color: inherit;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .chi-siamo-hero {
        padding: 35px 0;
    }

    .chi-siamo-hero h1 {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .chi-siamo-lead {
        font-size: 20px;
    }

    .chi-siamo-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 35px;
    }

    .chi-siamo-sidebar {
        border-left: 0;
        padding-left: 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .chi-siamo-hero h1 {
        font-size: 36px;
    }

    .chi-siamo-lead {
        font-size: 18px;
    }

    .chi-siamo-main h2 {
        font-size: 27px;
    }

    .chi-siamo-main p {
        font-size: 17px;
    }
}


/* =========================================================
   I FATTI IN CASA APS
   ========================================================= */

.official a {
    color: inherit;
    text-decoration: none;
}

.official a:hover {
    color: #b30000;
}


/* HERO COMPAGNIA */

.compagnia-istituzionale-hero {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    padding: 55px 0 50px;
    border-bottom: 1px solid #d8d8d8;
}

.compagnia-istituzionale-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #fff;
    border: 1px solid #dedede;
}

.compagnia-istituzionale-logo img {
    display: block;
    width: 100%;
    max-width: 270px;
    height: auto;
    object-fit: contain;
}

.compagnia-istituzionale-intro .section-label {
    display: inline-block;
    margin-bottom: 16px;
    padding-top: 8px;
    border-top: 4px solid #b30000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    color: #b30000;
}

.compagnia-istituzionale-intro h1 {
    margin: 0 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -2px;
    color: #111;
}

.compagnia-istituzionale-lead {
    margin: 0 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.35;
    font-style: italic;
    color: #555;
}

.compagnia-istituzionale-intro > p:not(.compagnia-istituzionale-lead) {
    max-width: 800px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.65;
    color: #333;
}


/* CORPO */

.compagnia-istituzionale-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
    gap: 65px;
    padding: 50px 0 75px;
}

.compagnia-istituzionale-main {
    max-width: 880px;
}

.compagnia-istituzionale-main > .section-label {
    margin-bottom: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    color: #b30000;
}

.compagnia-istituzionale-main h2 {
    margin: 0 0 22px;
    padding-top: 15px;
    border-top: 4px solid #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.15;
    color: #111;
}

.compagnia-istituzionale-main > p {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.7;
    color: #282828;
}

.sezione-spettacoli-label {
    margin-top: 60px;
}


/* PRODUZIONE TEATRALE */

.produzione-teatrale {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 30px;
    margin-top: 25px;
    padding: 25px 0;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.produzione-locandina {
    display: block;
}

.produzione-locandina img {
    display: block;
    width: 100%;
    height: auto;
}

.produzione-info {
    align-self: center;
}

.produzione-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #b30000;
}

.produzione-info h3 {
    margin: 0 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.08;
}

.produzione-info h3 a {
    color: #111;
    text-decoration: none;
}

.produzione-info h3 a:hover {
    color: #b30000;
}

.produzione-info p {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.55;
    color: #444;
}

.produzione-link {
    color: #b30000;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.produzione-link:hover {
    text-decoration: underline;
}


/* SIDEBAR */

.compagnia-istituzionale-sidebar {
    padding-left: 35px;
    border-left: 1px solid #d8d8d8;
}


/* MOBILE */

@media (max-width: 900px) {

    .compagnia-istituzionale-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px 0;
    }

    .compagnia-istituzionale-logo {
        max-width: 330px;
    }

    .compagnia-istituzionale-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 35px;
    }

    .compagnia-istituzionale-sidebar {
        padding-left: 0;
        border-left: 0;
    }
}


@media (max-width: 600px) {

    .compagnia-istituzionale-intro h1 {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .compagnia-istituzionale-lead {
        font-size: 21px;
    }

    .produzione-teatrale {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 18px;
    }

    .produzione-info h3 {
        font-size: 23px;
    }

    .produzione-info p {
        font-size: 15px;
    }
}
/* =========================================================
   HEADER DEFINITIVO
   ========================================================= */

header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

header .brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .brand > a {
    flex: 0 0 auto;
}

header .site-logo {
    display: block;
}

header .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .official {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

header .official a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

header .official a:hover {
    color: #b30000;
}

@media (max-width: 700px) {

    header .header-inner {
        align-items: flex-start;
        gap: 15px;
    }

    header .official {
        white-space: normal;
        font-size: 11px;
    }
}
/* =========================================================
   MENU MOBILE HAMBURGER
   ========================================================= */

/* Su desktop la barra mobile non si vede */
.nav-mobile-bar {
    display: none;
}


/* MOBILE */
@media (max-width: 768px) {

    .main-nav {
        position: relative;
    }

    /* Barra nera con MENU + hamburger */
    .nav-mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 52px;
        padding: 0 20px;
        background: #111;
        color: #fff;
    }

    .nav-mobile-title {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    /* Pulsante hamburger */
    .menu-toggle {
        width: 42px;
        height: 42px;
        padding: 9px;
        border: 0;
        background: transparent;
        cursor: pointer;

        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        transition: transform 0.25s ease,
                    opacity 0.25s ease;
    }

    /* Menu chiuso */
    .main-nav .nav-inner {
        display: none;
        width: 100%;
        padding: 0;
        background: #111;
        overflow: visible;
    }

    /* Menu aperto */
    .main-nav.menu-open .nav-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav .nav-inner a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        border-top: 1px solid #2d2d2d;
        box-sizing: border-box;
        white-space: normal;
    }

    .main-nav .nav-inner a.segnala {
        background: #b30000;
    }

    /* Trasformazione ☰ → X */
    .main-nav.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .main-nav.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .main-nav.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}
/* =========================================================
   HEADER UFFICIALE CORRIERE TEATRALE
   ========================================================= */

.masthead .official a {
    color: inherit;
    text-decoration: none;
}

.masthead .official a:hover {
    color: #b30000;
}

.masthead .brand > a {
    flex: 0 0 auto;
}

.masthead .brand > a img {
    display: block;
}
