/* ── Ares Article Enricher — enricher.css ───────────────────────────────────── */
/* Eredita variabili da hub.css: --ahub-accent, --ahub-gold, --ahub-text, ecc.  */

/* ════════════════════════════════════════
   H1 SEO-SAFE — nel DOM dentro l'hero, invisibile
   ════════════════════════════════════════ */

.aenr-hero__h1-hidden {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1px !important;
    line-height: 1 !important;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */

.aenr-hero {
    position: relative;
    background: var(--ahub-accent);
    color: #fff;
    overflow: hidden;
    margin: -40px -40px 0;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aenr-hero__bg {
    position: absolute;
    inset: 0;
}

.aenr-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: .32;
}

/* gradiente scuro per leggibilità testo centrato */
.aenr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,34,64,.35) 0%,
        rgba(10,34,64,.55) 50%,
        rgba(10,34,64,.75) 100%
    );
    pointer-events: none;
}

.aenr-hero__inner {
    position: relative;
    z-index: 1;
    padding: 80px 40px 50px;
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* breadcrumb variante hero — centrato, colori vivaci */
.aenr-breadcrumb--hero {
    justify-content: center;
    border-bottom: none;
    color: rgba(255,255,255,.8);
    margin-bottom: 20px;
    padding-bottom: 0;
}

.aenr-breadcrumb--hero a {
    color: rgba(255,255,255,.9);
    font-weight: 500;
}

.aenr-breadcrumb--hero a:hover { color: #fff; text-decoration: underline; }

.aenr-breadcrumb--hero .aenr-breadcrumb__sep {
    color: rgba(255,255,255,.4);
}

.aenr-breadcrumb--hero .aenr-breadcrumb__tax-label {
    color: var(--ahub-gold);
    font-weight: 700;
}

.aenr-hero__title {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -.02em;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.aenr-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 12px;
}

.aenr-hero__cat {
    display: inline-block;
    background: var(--ahub-gold);
    color: var(--ahub-accent);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 4px 10px;
    border-radius: 3px;
    text-decoration: none;
}

.aenr-hero__cat:hover { opacity: .85; }

.aenr-hero__date,
.aenr-hero__updated {
    color: rgba(255,255,255,.8);
    font-size: 12px;
}

.aenr-hero__updated {
    color: var(--ahub-gold);
}

.aenr-hero__updated::before {
    content: '↻ ';
    font-size: 11px;
}

.aenr-hero__author {
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

.aenr-hero__sep {
    color: rgba(255,255,255,.3);
    font-size: 10px;
    user-select: none;
}

/* ════════════════════════════════════════
   BREADCRUMB TASSONOMIE (versione normale, fuori hero)
   ════════════════════════════════════════ */

.aenr-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--ahub-muted);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ahub-border);
}

.aenr-breadcrumb a {
    color: var(--ahub-muted);
    text-decoration: none;
    transition: color .15s;
}

.aenr-breadcrumb a:hover { color: var(--ahub-accent); }

.aenr-breadcrumb__sep { color: var(--ahub-border); }

.aenr-breadcrumb__tax {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.aenr-breadcrumb__tax-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ahub-gold);
    font-weight: 600;
    margin-right: 2px;
}

/* ════════════════════════════════════════
   SOMMARIO EDITORIALE
   ════════════════════════════════════════ */

.aenr-sommario {
    background: var(--ahub-accent);
    color: #fff;
    border-radius: var(--ahub-radius);
    padding: 22px 26px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.aenr-sommario::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--ahub-gold);
}

.aenr-sommario__label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--ahub-gold);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.aenr-sommario__text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.9);
    margin: 0;
}

/* ════════════════════════════════════════
   TIMELINE EVENTI
   ════════════════════════════════════════ */

.aenr-timeline {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--ahub-border);
}

.aenr-timeline__title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ahub-muted);
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aenr-timeline__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ahub-border);
}

.aenr-timeline__list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

/* linea verticale */
.aenr-timeline__list::before {
    content: '';
    position: absolute;
    left: 70px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--ahub-border);
}

.aenr-timeline__item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0 18px;
    margin-bottom: 18px;
    align-items: start;
    position: relative;
}

.aenr-timeline__item:last-child { margin-bottom: 0; }

.aenr-timeline__data {
    font-size: 11px;
    font-weight: 600;
    color: var(--ahub-accent);
    text-align: right;
    padding-top: 2px;
    line-height: 1.4;
    word-break: break-word;
}

/* dot sulla linea */
.aenr-timeline__dot {
    position: absolute;
    left: 64px;
    top: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--ahub-accent);
    z-index: 1;
}

.aenr-timeline__item:first-child .aenr-timeline__dot {
    border-color: var(--ahub-gold);
    background: var(--ahub-gold);
}

.aenr-timeline__testo {
    font-size: 14px;
    color: var(--ahub-text);
    line-height: 1.55;
    padding-left: 6px;
}

/* ════════════════════════════════════════
   ARTICOLI CORRELATI
   ════════════════════════════════════════ */

.aenr-correlati {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--ahub-border);
}

.aenr-correlati__title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ahub-muted);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aenr-correlati__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ahub-border);
}

/* riusa hub-articles-grid e hub-card da hub.css */

/* ════════════════════════════════════════
   CARD HUB CORRELATE
   ════════════════════════════════════════ */

.aenr-hub-cards {
    margin-top: 40px;
}

.aenr-hub-cards__title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ahub-muted);
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aenr-hub-cards__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ahub-border);
}

.aenr-hub-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.aenr-hub-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ahub-border);
    border-radius: var(--ahub-radius);
    text-decoration: none;
    color: var(--ahub-text);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.aenr-hub-card:hover {
    box-shadow: var(--ahub-shadow);
    transform: translateY(-2px);
}

.aenr-hub-card__img {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--ahub-accent);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aenr-hub-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
}

/* bandiere: cover senza padding */
.aenr-hub-card[data-tax="paese"] .aenr-hub-card__img img {
    object-fit: cover;
    padding: 0;
}

.aenr-hub-card__body {
    padding: 10px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aenr-hub-card__tax {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: var(--ahub-gold);
    text-transform: uppercase;
    letter-spacing: .14em;
}

.aenr-hub-card__name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ahub-text);
}

/* ════════════════════════════════════════
   FONTI
   ════════════════════════════════════════ */

.aenr-fonti {
    background: var(--ahub-accent);
    color: #fff;
    border-radius: var(--ahub-radius);
    padding: 22px 26px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.aenr-fonti::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--ahub-gold);
}

.aenr-fonti__title {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--ahub-gold);
    font-weight: 700;
    margin: 0 0 12px;
    display: block;
}

.aenr-fonti__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.aenr-fonti__list li::before {
    display: none !important;
}

.aenr-fonti__item {
    font-size: 14px;
    line-height: 1.6;
    list-style: none !important;
    padding-left: 0 !important;
}

.aenr-fonti__link {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    transition: color .15s;
}

.aenr-fonti__link:hover {
    color: #fff;
    text-decoration: underline;
}

.aenr-fonti__text {
    color: rgba(255,255,255,.75);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.aenr-fonti__icon {
    font-size: 11px;
    flex-shrink: 0;
    color: var(--ahub-gold);
    opacity: .9;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 640px) {
    .aenr-hero { margin: -20px -20px 0; min-height: 340px; }
    .aenr-hero__inner { padding: 32px 20px 28px; }
    .aenr-hero__title { font-size: 22px; }
    .aenr-sommario { padding: 16px 18px; }
    .aenr-sommario__text { font-size: 14px; }
    .aenr-timeline__list::before { left: 56px; }
    .aenr-timeline__item { grid-template-columns: 56px 1fr; }
    .aenr-timeline__dot  { left: 50px; }
    .aenr-hub-cards__grid { grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); }
}


/* ════════════════════════════════════════
   ARES PREMIUM ARTICLE OVERRIDES
   Da aggiungere dopo il CSS esistente oppure usare questo file completo.
   ════════════════════════════════════════ */

/* Disattiva l'overlay legacy su .aenr-hero perché il nuovo overlay vive su .aenr-hero__bg::after */
.aenr-hero::after {
    display: none;
}

/* Compatibilità: se nel PHP resta ancora l'H1 nascosto, non rompe nulla.
   Nel nuovo PHP il titolo dovrebbe essere un vero <h1 class="aenr-hero__title">. */
/* Ares articolo premium — hero, deck, quick intel */

/* HERO */
.aenr-hero {
    position: relative;
    min-height: clamp(520px, 78vh, 820px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: #07101a;
    color: #fff;
}

.aenr-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.aenr-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 18% 20%, rgba(63, 132, 190, .28), transparent 34%),
        linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.50) 46%, rgba(0,0,0,.94) 100%);
}

.aenr-hero__image,
.aenr-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.aenr-hero__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(90px, 12vh, 150px) 0 clamp(42px, 8vh, 86px);
    position: relative;
    z-index: 3;
}

.aenr-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .46rem .72rem;
    border: 1px solid rgba(142, 197, 255, .35);
    border-radius: 999px;
    background: rgba(8, 18, 31, .62);
    color: #9ed1ff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.aenr-hero__kicker:hover {
    color: #fff;
    border-color: rgba(255,255,255,.46);
}

.aenr-hero__title {
    max-width: 1040px;
    margin: 1.1rem 0 0;
    color: #fff;
    font-size: clamp(2.45rem, 6vw, 5.35rem);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 850;
    text-wrap: balance;
}

.aenr-hero__deck {
    max-width: 860px;
    margin: 1.15rem 0 0;
    color: rgba(255,255,255,.88);
    font-size: clamp(1.08rem, 1.8vw, 1.42rem);
    line-height: 1.48;
    font-weight: 430;
    text-wrap: pretty;
}

.aenr-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .38rem .55rem;
    margin-top: 1.25rem;
    color: rgba(255,255,255,.72);
    font-size: .91rem;
}

.aenr-hero__sep {
    color: rgba(255,255,255,.36);
}

/* TAX HERO */
.aenr-hero-tax {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.55rem;
    max-width: 1050px;
}

.aenr-hero-tax__item {
    display: inline-flex;
    flex-direction: column;
    min-width: 145px;
    padding: .72rem .86rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.075);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.aenr-hero-tax__item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.12);
    border-color: rgba(142,197,255,.42);
    color: #fff;
}

.aenr-hero-tax__label {
    margin-bottom: .22rem;
    color: rgba(255,255,255,.54);
    font-size: .66rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 750;
}

.aenr-hero-tax__name {
    color: rgba(255,255,255,.94);
    font-size: .92rem;
    line-height: 1.2;
    font-weight: 760;
}

/* INTRO PANEL */
.aenr-intro-panel {
    width: min(1080px, calc(100% - 40px));
    margin: clamp(28px, 5vw, 54px) auto clamp(28px, 4vw, 48px);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 1rem;
    align-items: stretch;
}

.aenr-intro-panel .aenr-sommario,
.aenr-keypoints {
    margin: 0;
    border: 1px solid rgba(18, 38, 63, .12);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: 0 18px 50px rgba(10, 25, 45, .08);
}

.aenr-intro-panel .aenr-sommario {
    padding: clamp(22px, 3vw, 34px);
}

.aenr-keypoints {
    padding: clamp(20px, 2.6vw, 30px);
}

.aenr-sommario__label,
.aenr-keypoints__label {
    display: inline-flex;
    margin-bottom: .8rem;
    color: #244764;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.aenr-sommario__text {
    margin: 0;
    color: #142334;
    font-size: clamp(1.04rem, 1.5vw, 1.22rem);
    line-height: 1.62;
}

.aenr-summary-toggle {
    display: none;
}

.aenr-keypoints__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .78rem;
}

.aenr-keypoints__list li {
    position: relative;
    padding-left: 1.45rem;
    color: #182838;
    line-height: 1.45;
    font-weight: 620;
}

.aenr-keypoints__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: .48rem;
    height: .48rem;
    border-radius: 999px;
    background: #244764;
    box-shadow: 0 0 0 4px rgba(36,71,100,.12);
}

/* HUB CARD: piccola estensione per descrizione */
.aenr-hub-card__desc {
    display: block;
    margin-top: .28rem;
    color: rgba(20,35,52,.66);
    font-size: .82rem;
    line-height: 1.35;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .aenr-hero {
        min-height: 640px;
    }

    .aenr-hero__inner {
        width: min(100% - 28px, 680px);
        padding-bottom: 34px;
    }

    .aenr-hero__title {
        font-size: clamp(2.25rem, 11vw, 3.4rem);
        letter-spacing: -.035em;
    }

    .aenr-hero-tax {
        gap: .55rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: .4rem;
        scrollbar-width: none;
    }

    .aenr-hero-tax::-webkit-scrollbar {
        display: none;
    }

    .aenr-hero-tax__item {
        min-width: 155px;
    }

    .aenr-intro-panel {
        grid-template-columns: 1fr;
        width: min(100% - 28px, 680px);
    }
}

@media (max-width: 520px) {
    .aenr-hero__meta {
        font-size: .84rem;
    }

    .aenr-hero__deck {
        font-size: 1.04rem;
    }
}


/* Piccoli affinamenti finali */
.aenr-hero__bg img,
.aenr-hero__image {
    opacity: 1;
}

@media (max-width: 640px) {
    .aenr-hero {
        margin: -20px -20px 0;
    }
}

.aenr-hero-tax {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
}

.aenr-hero-tax__item {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.aenr-hero-tax__name,
.aenr-hero-tax__label {
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (max-width: 860px) {
    .aenr-hero-tax {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .55rem;
        overflow-x: visible;
        padding-bottom: 0;
        justify-content: stretch;
    }

    .aenr-hero-tax__item {
        width: 100%;
        min-width: 0;
        padding: .62rem .68rem;
    }
}

@media (max-width: 420px) {
    .aenr-hero-tax {
        grid-template-columns: 1fr;
    }
}

/* 2) Sommario editoriale: centra il blocco e lo rende coerente col layout */
.aenr-intro-panel {
    width: min(1080px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.aenr-summary-stack {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.aenr-intro-panel .aenr-sommario,
.aenr-keypoints {
    width: 100%;
    box-sizing: border-box;
}

.aenr-sommario--en {
    background: linear-gradient(180deg, #fbfcff 0%, #f2f5f9 100%);
}

.aenr-sommario--en .aenr-sommario__text {
    font-size: clamp(.98rem, 1.25vw, 1.08rem);
}

.aenr-summary-card {
    min-width: 0;
}

.aenr-summary-card > summary {
    list-style: none;
}

.aenr-summary-card > summary::-webkit-details-marker {
    display: none;
}

/* Se il sommario è da solo, non resta schiacciato a sinistra */
.aenr-intro-panel:has(.aenr-sommario:only-child),
.aenr-intro-panel:has(.aenr-summary-stack:only-child),
.aenr-intro-panel:has(.aenr-keypoints:only-child) {
    display: block;
    max-width: 860px;
}

/* Fallback se :has non è supportato o se il PHP stampa solo il sommario fuori griglia */
.aenr-sommario {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 860px) {
    .aenr-intro-panel {
        align-items: start;
    }

    .aenr-keypoints {
        order: 1;
    }

    .aenr-summary-stack {
        order: 2;
    }

    .aenr-intro-panel .aenr-sommario {
        padding: 18px;
    }

    .aenr-summary-toggle {
        display: grid;
        gap: .5rem;
        cursor: pointer;
    }

    .aenr-summary-toggle .aenr-sommario__label {
        margin-bottom: 0;
        padding-right: 2.3rem;
        position: relative;
    }

    .aenr-summary-toggle .aenr-sommario__label::after {
        content: "Apri";
        position: absolute;
        right: 0;
        top: 0;
        color: #64748b;
        font-size: .68rem;
        font-weight: 760;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .aenr-summary-card[open] .aenr-summary-toggle .aenr-sommario__label::after {
        content: "Chiudi";
    }

    .aenr-summary-toggle__preview {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        color: #142334;
        font-size: .98rem;
        line-height: 1.5;
        font-weight: 560;
    }

    .aenr-summary-card[open] .aenr-summary-toggle {
        margin-bottom: .9rem;
        padding-bottom: .9rem;
        border-bottom: 1px solid rgba(18, 38, 63, .1);
    }

    .aenr-summary-card[open] .aenr-summary-toggle__preview {
        display: none;
    }

    .aenr-summary-card > .aenr-sommario__label {
        display: none;
    }

    .aenr-summary-card:not([open]) > .aenr-sommario__text {
        display: none;
    }

    .aenr-sommario__text {
        font-size: 1rem;
        line-height: 1.55;
    }

    .aenr-sommario--en .aenr-summary-toggle__preview,
    .aenr-sommario--en .aenr-sommario__text {
        font-size: .95rem;
    }
}

/* 3) Fonti: porta lo stile in linea con i nuovi box chiari */
.aenr-fonti {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #142334;
    border: 1px solid rgba(18, 38, 63, .12);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(10, 25, 45, .08);
}

.aenr-fonti::before {
    background: #244764;
}

.aenr-fonti__title {
    color: #244764;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.aenr-fonti__link {
    color: #142334;
}

.aenr-fonti__link:hover {
    color: #244764;
}

.aenr-fonti__text {
    color: rgba(20, 35, 52, .72);
}

.aenr-fonti__icon {
    color: #244764;
}
