/* ============================================================
   LSH — Page modules (porting layout WP common-page.php)
   Layout: PRE-GRID full-width  →  2-COL GRID  →  POST-GRID full
   ============================================================ */

.lsh-pm-wrap {
    background: #fafafa;
    padding-bottom: 56px;
}

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.lsh-pm-breadcrumb-wrap {
    padding: 18px 0 4px;
    background: #fff;
}
.lsh-pm-breadcrumb {
    font-size: 0.88rem;
    color: #6b6b6b;
}
.lsh-pm-breadcrumb a {
    color: #207359;
    text-decoration: none;
}
.lsh-pm-breadcrumb a:hover { text-decoration: underline; }
.lsh-pm-breadcrumb .sep { margin: 0 8px; color: #b8b8b8; }

/* ─── HEADER (type=header / WP 1007) ─────────────────────── */
.lsh-pm-header {
    background: #fff;
    padding: 18px 0 0;
}
/* Il separator è BORDO INFERIORE del container interno, così resta dentro
   la larghezza 1200 (non full-width). L'illustrazione poi gli si appoggia
   sopra con un margin-bottom negativo. */
.lsh-pm-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 36px;
    padding-bottom: 14px;
    border-bottom: 3px solid #15543c;
}
.lsh-pm-header__text h1 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 800;
    color: #103226;
    letter-spacing: -0.01em;
}
.lsh-pm-header__subtitle {
    margin: 0;
    font-size: 1.05rem;
    color: #4a5e56;
}
.lsh-pm-header__illustration {
    margin: 0 0 -14px 0;       /* l'immagine "sfonda" la linea di 28px */
    width: 200px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.lsh-pm-header__illustration img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 740px) {
    .lsh-pm-header__inner { grid-template-columns: 1fr; }
    .lsh-pm-header__illustration { width: 140px; justify-self: end; }
}

/* ─── INTRO PANEL (type=intro_panel / WP 1010) ───────────── */
.lsh-pm-intro {
    padding: 24px 0;
}
.lsh-pm-intro__box {
    background: #F2F7F3;
    border-radius: 12px;
    overflow: hidden;       /* permette al separator di toccare i lati */
}
.lsh-pm-intro__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #e9ecea;
    border-bottom: 1px solid #c5dccf;
}
.lsh-pm-intro__body {
    padding: 20px 28px;
}
.lsh-pm-intro__head h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f1f1f;
}
.lsh-pm-intro__icon { color: #15543c; flex-shrink: 0; }
.lsh-pm-intro__body {
    font-size: 1rem;
    line-height: 1.7;
    color: #2b2b2b;
}
.lsh-pm-intro__body p { margin: 0 0 0.9em; }
.lsh-pm-intro__body p:last-child { margin-bottom: 0; }
.lsh-pm-intro__body strong { font-weight: 700; }

/* ─── 2-COL GRID ─────────────────────────────────────────── */
.lsh-pm-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
    margin-top: 24px;
}
@media (max-width: 900px) {
    .lsh-pm-grid { grid-template-columns: 1fr; gap: 16px; }
}
.lsh-pm-main { display: flex; flex-direction: column; gap: 28px; }
.lsh-pm-side { display: flex; flex-direction: column; gap: 18px; }

/* ─── CONTENT BLOCK (type=content / WP 1004) ─────────────── */
.lsh-pm-content__title {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1f1f1f;        /* nero/grigio scuro, come WP. Verde solo per side panels */
    letter-spacing: -0.005em;
}
.lsh-pm-content__body {
    font-size: 1rem;
    line-height: 1.7;
    color: #2b2b2b;
}
.lsh-pm-content__body p { margin: 0 0 0.9em; }
.lsh-pm-content__body p:last-child { margin-bottom: 0; }
.lsh-pm-content__body h2 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #15543c;
    display: none; /* il titolo del modulo lo gestisce già lsh-pm-content__title */
}
.lsh-pm-content__body ul.checklist,
.lsh-pm-content__body ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1em;
}
.lsh-pm-content__body ul.checklist li,
.lsh-pm-content__body ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 6px;
}
.lsh-pm-content__body ul.checklist li::before,
.lsh-pm-content__body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2d6a4f;
    font-weight: 700;
}
.lsh-pm-content__disclaimer {
    margin: 8px 0 0;
    font-size: 0.88rem;
    color: #6b6b6b;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 8px;
}

/* ─── CTA PANEL (type=cta_panel / WP 1005) ───────────────── */
.lsh-pm-cta {
    background: #F2F7F3;
    border-radius: 10px;
    overflow: hidden;
}
.lsh-pm-cta__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #e9ecea;
    border-bottom: 1px solid #d5e6dd;
}
.lsh-pm-cta__head h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1f1f1f;
}
.lsh-pm-cta__icon { color: #15543c; flex-shrink: 0; }
.lsh-pm-cta__body {
    padding: 16px 18px 4px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2b2b2b;
}
.lsh-pm-cta__body p { margin: 0 0 0.8em; }
.lsh-pm-cta__body ul.checklist,
.lsh-pm-cta__body ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 0.8em;
}
.lsh-pm-cta__body ul.checklist li,
.lsh-pm-cta__body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 4px;
    font-size: 0.92rem;
}
.lsh-pm-cta__body ul.checklist li::before,
.lsh-pm-cta__body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: 700;
}
.lsh-pm-cta__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 18px 14px;
    padding: 11px 16px;
    background: #207359;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: background .2s ease;
}
.lsh-pm-cta__btn:hover {
    background: #15543c;
    text-decoration: none;
}
.lsh-pm-cta__btn + .lsh-pm-cta__btn {
    margin-top: -6px;
}
.lsh-pm-cta__chev { font-size: 1.2em; line-height: 0.8; }

/* ─── MULTI LINKS (type=multi_links / WP 1006) ───────────── */
.lsh-pm-links {
    background: #F2F7F3;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
}
.lsh-pm-links__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-bottom: 1px solid #ececec;
    background: #e9ecea;
}
.lsh-pm-links__head h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1f1f1f;
}
.lsh-pm-links__icon { color: #15543c; flex-shrink: 0; }
.lsh-pm-links__intro {
    font-size: 0.9rem;
    color: #4a5e56;
    padding: 12px 18px 0;
}
.lsh-pm-links__list {
    list-style: none;
    padding: 14px 22px;
    margin: 0;
}
.lsh-pm-links__list li {
    position: relative;
    padding: 6px 0 6px 24px;
}
.lsh-pm-links__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 6px;
    color: #2d6a4f;
    font-weight: 700;
}
.lsh-pm-links__list a {
    color: #1f1f1f;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}
.lsh-pm-links__list a:hover {
    color: #15543c;
    text-decoration: underline;
}

/* ─── CLOSING BLOCK (type=closing / WP 1009) ─────────────── */
.lsh-pm-closing {
    padding: 36px 0 0;
}
.lsh-pm-closing__box {
    background: #15543c;
    color: #fff;
    border-radius: 10px;
    padding: 22px 26px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.lsh-pm-closing__box::before {
    content: "✓";
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.lsh-pm-closing__inner { flex: 1; min-width: 0; }
.lsh-pm-closing__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}
.lsh-pm-closing__body {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #fff;
}
.lsh-pm-closing__body p { margin: 0 0 0.9em; }
.lsh-pm-closing__body p:last-child { margin-bottom: 0; }
