/* =========================================================
   SPORTSUITE — STYLE SINGLE ARTICLE
   Versione completa
   Palette principale: #FF8F39
   Richiede Font Awesome Pro già caricato
   ========================================================= */

:root {
    --ss-orange: #FF8F39;
    --ss-orange-dark: #F47A16;
    --ss-orange-soft: #FFF1E7;
    --ss-navy: #071F49;
    --ss-blue: #0A5FB8;
    --ss-cyan: #0AA4C8;
    --ss-text: #132642;
    --ss-muted: #6E7D92;
    --ss-page: #F2F6FB;
    --ss-surface: #FFFFFF;
    --ss-surface-soft: #F8FAFD;
    --ss-border: #DDE6F0;
    --ss-border-strong: #CDD9E7;
    --ss-shadow-sm: 0 10px 28px rgba(7, 31, 73, 0.06);
    --ss-shadow-md: 0 18px 48px rgba(7, 31, 73, 0.10);
    --ss-shadow-lg: 0 26px 70px rgba(7, 31, 73, 0.13);
    --ss-radius-sm: 12px;
    --ss-radius-md: 18px;
    --ss-radius-lg: 24px;
}

/* =========================================================
   CONTENITORE ARTICOLO
   ========================================================= */

.single-post .entry-content,
.single-post .post-content,
.single-post .article-content,
.single-post .single-content,
.single-post .content-area article {
    color: var(--ss-text);
    font-size: 18px;
    line-height: 1.8;
}

.single-post .entry-content p,
.single-post .post-content p,
.single-post .article-content p,
.single-post .single-content p {
    margin: 0 0 1.45em;
}

.single-post .entry-content > p:first-of-type,
.single-post .post-content > p:first-of-type,
.single-post .article-content > p:first-of-type,
.single-post .single-content > p:first-of-type {
    color: #354761;
    font-size: 1.08em;
    line-height: 1.85;
}

.single-post .entry-content strong,
.single-post .post-content strong,
.single-post .article-content strong,
.single-post .single-content strong {
    color: var(--ss-navy);
    font-weight: 800;
}

/* =========================================================
   LINK
   ========================================================= */

.single-post .entry-content a,
.single-post .post-content a,
.single-post .article-content a,
.single-post .single-content a {
    color: var(--ss-blue);
    text-decoration: none;
    font-weight: 700;
    background-image: linear-gradient(var(--ss-orange), var(--ss-orange));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 2px;
    transition:
        color .2s ease,
        background-size .2s ease,
        opacity .2s ease;
}

.single-post .entry-content a:hover,
.single-post .post-content a:hover,
.single-post .article-content a:hover,
.single-post .single-content a:hover {
    color: var(--ss-orange-dark);
    background-size: 100% 100%;
}

/* =========================================================
   TITOLI
   ========================================================= */

.single-post .entry-content h2,
.single-post .post-content h2,
.single-post .article-content h2,
.single-post .single-content h2 {
    position: relative;
    isolation: isolate;
    margin: 3rem 0 1.2rem;
    padding: 19px 68px 19px 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 143, 57, 0.22);
    border-radius: var(--ss-radius-md);
    color: var(--ss-navy);
    background:
        linear-gradient(
            110deg,
            rgba(255, 143, 57, 0.11),
            rgba(255, 255, 255, 0.97) 58%,
            rgba(10, 95, 184, 0.05)
        );
    box-shadow: var(--ss-shadow-sm);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.22;
    letter-spacing: -0.025em;
}

.single-post .entry-content h2::before,
.single-post .post-content h2::before,
.single-post .article-content h2::before,
.single-post .single-content h2::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(180deg, var(--ss-orange), var(--ss-orange-dark));
}

.single-post .entry-content h2::after,
.single-post .post-content h2::after,
.single-post .article-content h2::after,
.single-post .single-content h2::after {
    content: "\f091";
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 18px;
    color: rgba(255, 143, 57, 0.15);
    font-family: "Font Awesome 6 Pro";
    font-size: 44px;
    font-style: normal;
    font-weight: 900;
    transform: translateY(-50%) rotate(-8deg);
}

.single-post .entry-content h2[id*="domand"]::after,
.single-post .post-content h2[id*="domand"]::after,
.single-post .article-content h2[id*="domand"]::after,
.single-post .single-content h2[id*="domand"]::after {
    content: "\f059";
}

.single-post .entry-content h2[id*="gestione"]::after,
.single-post .post-content h2[id*="gestione"]::after,
.single-post .article-content h2[id*="gestione"]::after,
.single-post .single-content h2[id*="gestione"]::after {
    content: "\f085";
}

.single-post .entry-content h2[id*="digit"]::after,
.single-post .post-content h2[id*="digit"]::after,
.single-post .article-content h2[id*="digit"]::after,
.single-post .single-content h2[id*="digit"]::after {
    content: "\f109";
}

.single-post .entry-content h3,
.single-post .post-content h3,
.single-post .article-content h3,
.single-post .single-content h3 {
    position: relative;
    margin: 2.1rem 0 .9rem;
    padding-left: 42px;
    color: var(--ss-navy);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.35;
}

.single-post .entry-content h3::before,
.single-post .post-content h3::before,
.single-post .article-content h3::before,
.single-post .single-content h3::before {
    content: "\f061";
    position: absolute;
    top: .02em;
    left: 0;
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    box-shadow: 0 7px 16px rgba(255, 143, 57, 0.22);
}

/* =========================================================
   IMMAGINE DI COPERTINA
   ========================================================= */

.seo-engine-cover {
    position: relative;
    margin: 2rem 0 2.6rem;
    overflow: hidden;
    border: 1px solid var(--ss-border);
    border-radius: var(--ss-radius-lg);
    background: var(--ss-surface);
    box-shadow: var(--ss-shadow-md);
}

.seo-engine-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .5s ease;
}

.seo-engine-cover:hover img {
    transform: scale(1.025);
}

.seo-engine-cover figcaption {
    padding: 12px 17px;
    border-top: 1px solid var(--ss-border);
    color: var(--ss-muted);
    background: #fff;
    font-size: 13px;
}

.seo-engine-cover::after {
    content: "\f091";
    position: absolute;
    top: 17px;
    right: 17px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 143, 57, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: "Font Awesome 6 Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(255, 143, 57, .25);
}

/* =========================================================
   INDICE ARTICOLO
   ========================================================= */

.article-toc {
    position: relative;
    isolation: isolate;
    margin: 2rem 0 2.8rem;
    padding: 31px 30px 27px;
    overflow: hidden;
    border: 1px solid rgba(255, 143, 57, 0.18);
    border-radius: var(--ss-radius-lg);
    background:
        radial-gradient(circle at 95% 10%, rgba(255, 143, 57, 0.18), transparent 28%),
        radial-gradient(circle at 0 100%, rgba(10, 95, 184, 0.09), transparent 34%),
        #fff;
    box-shadow: var(--ss-shadow-md);
}

.article-toc::before {
    content: "In questo articolo";
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
    box-shadow: 0 8px 19px rgba(255, 143, 57, .25);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.article-toc::after {
    content: "\f02d";
    position: absolute;
    z-index: -1;
    right: -20px;
    bottom: -37px;
    color: rgba(255, 143, 57, 0.08);
    font-family: "Font Awesome 6 Pro";
    font-size: 170px;
    font-style: normal;
    font-weight: 900;
    transform: rotate(-12deg);
}

.article-toc > strong {
    display: none;
}

.article-toc ol,
.article-toc ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none !important;
    counter-reset: ss-toc;
}

.article-toc li {
    counter-increment: ss-toc;
    position: relative;
    min-height: 48px;
    margin: 0 !important;
    padding: 11px 13px 11px 52px !important;
    border: 1px solid transparent;
    border-radius: 13px;
    list-style: none !important;
    background: transparent;
    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.article-toc li::before {
    content: counter(ss-toc) !important;
    position: absolute;
    top: 7px;
    left: 6px;
    display: grid !important;
    place-items: center;
    width: 35px !important;
    height: 35px !important;
    border-radius: 11px !important;
    color: var(--ss-orange-dark) !important;
    background: var(--ss-orange-soft) !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.article-toc li:hover {
    border-color: rgba(255, 143, 57, 0.17);
    background: rgba(255, 241, 231, 0.72);
    transform: translateX(4px);
}

.article-toc li:hover::before {
    color: #fff !important;
    background: var(--ss-orange) !important;
}

.article-toc a {
    color: var(--ss-navy);
    background: none !important;
    font-weight: 700;
    line-height: 1.45;
}

/* =========================================================
   BOX EDITORIALI
   ========================================================= */

.seo-box {
    position: relative;
    isolation: isolate;
    margin: 2rem 0;
    min-height: 130px;
    padding: 28px 30px 27px 104px;
    overflow: hidden;
    border: 1px solid var(--ss-border);
    border-radius: var(--ss-radius-lg);
    background: var(--ss-surface);
    box-shadow: var(--ss-shadow-md);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.seo-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--ss-shadow-lg);
}

.seo-box::before {
    position: absolute;
    top: 28px;
    left: 28px;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 17px;
    color: #fff;
    font-family: "Font Awesome 6 Pro";
    font-size: 21px;
    font-style: normal;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(255, 143, 57, .22);
}

.seo-box::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -52px;
    right: -52px;
    width: 160px;
    height: 160px;
    border: 34px solid rgba(255,255,255,.44);
    border-radius: 50%;
}

.seo-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ss-navy);
    font-size: 1.12rem;
}

.seo-box p:last-child {
    margin-bottom: 0;
}

.seo-box-note {
    border-color: rgba(255, 143, 57, 0.18);
    background: linear-gradient(120deg, var(--ss-orange-soft), #fff);
}

.seo-box-note::before {
    content: "\f05a";
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
}

.seo-box-example {
    border-color: rgba(10, 95, 184, 0.16);
    background: linear-gradient(120deg, #EEF6FF, #fff);
}

.seo-box-example::before {
    content: "\f0eb";
    background: linear-gradient(135deg, var(--ss-blue), var(--ss-cyan));
}

.seo-box-warning {
    border-color: rgba(255, 143, 57, 0.24);
    background: linear-gradient(120deg, #FFF6EE, #fff);
}

.seo-box-warning::before {
    content: "\f071";
    background: linear-gradient(135deg, #E66C14, var(--ss-orange));
}

/* =========================================================
   FAQ
   ========================================================= */

.article-faq {
    position: relative;
    isolation: isolate;
    margin: 3rem 0 2rem;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 143, 57, 0.16);
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 143, 57, 0.13), transparent 31%),
        linear-gradient(145deg, #F7F9FC, #fff);
    box-shadow: var(--ss-shadow-md);
}

.article-faq > h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 24px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.article-faq > h2::before {
    content: "\f059" !important;
    position: static !important;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(255, 143, 57, .24);
}

.article-faq > h2::after {
    display: none !important;
}

.article-faq details {
    margin: 12px 0;
    overflow: hidden;
    border: 1px solid var(--ss-border);
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.article-faq details:hover,
.article-faq details[open] {
    border-color: rgba(255, 143, 57, 0.26);
    box-shadow: var(--ss-shadow-sm);
}

.article-faq details[open] {
    transform: translateY(-1px);
}

.article-faq summary {
    position: relative;
    padding: 21px 68px 21px 22px;
    color: var(--ss-navy);
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    transition:
        color .2s ease,
        padding-left .2s ease;
}

.article-faq summary::-webkit-details-marker {
    display: none;
}

.article-faq summary:hover {
    color: var(--ss-orange-dark);
    padding-left: 27px;
}

.article-faq summary::after {
    content: "\2b";
    position: absolute;
    top: 50%;
    right: 18px;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    transform: translateY(-50%);
    box-shadow: 0 7px 16px rgba(255, 143, 57, .22);
    transition: transform .2s ease;
}

.article-faq details[open] summary::after {
    content: "\f068";
    transform: translateY(-50%) rotate(180deg);
}

.article-faq details p {
    margin: 0;
    padding: 0 22px 22px;
    color: #4B5C73;
}

/* =========================================================
   FONTI E APPROFONDIMENTI
   ========================================================= */

.article-sources {
    position: relative;
    isolation: isolate;
    margin: 3rem 0 1.5rem;
    padding: 31px;
    overflow: hidden;
    border: 1px solid rgba(255, 143, 57, 0.17);
    border-radius: var(--ss-radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 241, 231, 0.78), rgba(255,255,255,.98));
    box-shadow: var(--ss-shadow-sm);
}

.article-sources::after {
    content: "\f02d";
    position: absolute;
    z-index: -1;
    right: -16px;
    bottom: -41px;
    color: rgba(255, 143, 57, 0.09);
    font-family: "Font Awesome 6 Pro";
    font-size: 145px;
    font-style: normal;
    font-weight: 900;
    transform: rotate(-16deg);
}

.article-sources > h2 {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 22px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 1.45rem !important;
}

.article-sources > h2::before {
    content: "\f02d" !important;
    position: static !important;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
    font-family: "Font Awesome 6 Pro";
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(255, 143, 57, .22);
}

.article-sources > h2::after {
    display: none !important;
}

.article-sources ul,
.article-sources ol {
    display: grid;
    gap: 13px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.article-sources li {
    position: relative;
    margin: 0 !important;
    padding: 16px 17px 16px 54px !important;
    border: 1px solid rgba(255, 143, 57, 0.12);
    border-radius: 14px;
    list-style: none !important;
    color: var(--ss-text);
    background: rgba(255,255,255,.86);
    box-shadow: 0 6px 18px rgba(7,31,73,.035);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.article-sources li::before {
    content: "\f35d" !important;
    position: absolute !important;
    top: 15px !important;
    left: 16px !important;
    display: grid !important;
    place-items: center !important;
    width: 27px !important;
    height: 27px !important;
    border-radius: 9px !important;
    color: #fff !important;
    background: var(--ss-orange) !important;
    font-family: "Font Awesome 6 Pro" !important;
    font-size: 10px !important;
    font-style: normal !important;
    font-weight: 900 !important;
}

.article-sources li:hover {
    border-color: rgba(255, 143, 57, .24);
    box-shadow: var(--ss-shadow-sm);
    transform: translateX(4px);
}

.article-sources a {
    background: none !important;
    color: var(--ss-blue);
    font-weight: 800;
}

/* =========================================================
   ELENCHI — NESSUN BULLET POINT
   ========================================================= */

.single-post .entry-content ul,
.single-post .entry-content ol,
.single-post .post-content ul,
.single-post .post-content ol,
.single-post .article-content ul,
.single-post .article-content ol,
.single-post .single-content ul,
.single-post .single-content ol {
    margin: 1.6rem 0 1.9rem;
    padding: 0;
    list-style: none !important;
}

.single-post .entry-content li,
.single-post .post-content li,
.single-post .article-content li,
.single-post .single-content li {
    position: relative;
    margin: 0 0 12px;
    padding: 15px 18px 15px 52px;
    border: 1px solid var(--ss-border);
    border-radius: 14px;
    list-style: none !important;
    background: var(--ss-surface);
    box-shadow: 0 7px 18px rgba(7,31,73,.04);
}

.single-post .entry-content li::marker,
.single-post .post-content li::marker,
.single-post .article-content li::marker,
.single-post .single-content li::marker {
    content: "";
}

.single-post .entry-content ul > li::before,
.single-post .post-content ul > li::before,
.single-post .article-content ul > li::before,
.single-post .single-content ul > li::before {
    content: "\f00c";
    position: absolute;
    top: 15px;
    left: 16px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 9px;
    color: #fff;
    background: var(--ss-orange);
    font-family: "Font Awesome 6 Pro";
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.single-post .entry-content ol,
.single-post .post-content ol,
.single-post .article-content ol,
.single-post .single-content ol {
    counter-reset: ss-list;
}

.single-post .entry-content ol > li,
.single-post .post-content ol > li,
.single-post .article-content ol > li,
.single-post .single-content ol > li {
    counter-increment: ss-list;
}

.single-post .entry-content ol > li::before,
.single-post .post-content ol > li::before,
.single-post .article-content ol > li::before,
.single-post .single-content ol > li::before {
    content: counter(ss-list);
    position: absolute;
    top: 14px;
    left: 15px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--ss-orange), var(--ss-orange-dark));
    font-size: 12px;
    font-weight: 800;
}

/* =========================================================
   CITAZIONI
   ========================================================= */

.single-post .entry-content blockquote,
.single-post .post-content blockquote,
.single-post .article-content blockquote,
.single-post .single-content blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 27px 29px 27px 76px;
    border: 1px solid rgba(255, 143, 57, .16);
    border-left: 6px solid var(--ss-orange);
    border-radius: var(--ss-radius-md);
    color: #31445F;
    background: linear-gradient(135deg, var(--ss-orange-soft), #fff);
    box-shadow: var(--ss-shadow-sm);
    font-size: 1.06em;
    font-style: italic;
}

.single-post .entry-content blockquote::before,
.single-post .post-content blockquote::before,
.single-post .article-content blockquote::before,
.single-post .single-content blockquote::before {
    content: "\f10d";
    position: absolute;
    top: 25px;
    left: 25px;
    color: var(--ss-orange);
    font-family: "Font Awesome 6 Pro";
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
}

/* =========================================================
   TABELLE
   ========================================================= */

.single-post .entry-content table,
.single-post .post-content table,
.single-post .article-content table,
.single-post .single-content table {
    width: 100%;
    margin: 2rem 0;
    overflow: hidden;
    border: 1px solid var(--ss-border);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--ss-radius-md);
    background: #fff;
    box-shadow: var(--ss-shadow-sm);
}

.single-post .entry-content th,
.single-post .post-content th,
.single-post .article-content th,
.single-post .single-content th {
    padding: 15px 17px;
    color: #fff;
    background: var(--ss-navy);
    text-align: left;
}

.single-post .entry-content td,
.single-post .post-content td,
.single-post .article-content td,
.single-post .single-content td {
    padding: 14px 17px;
    border-top: 1px solid var(--ss-border);
}

.single-post .entry-content tbody tr:hover,
.single-post .post-content tbody tr:hover,
.single-post .article-content tbody tr:hover,
.single-post .single-content tbody tr:hover {
    background: var(--ss-orange-soft);
}

/* =========================================================
   HR E MARK
   ========================================================= */

.single-post .entry-content hr,
.single-post .post-content hr,
.single-post .article-content hr,
.single-post .single-content hr {
    height: 1px;
    margin: 3rem 0;
    border: 0;
    background: linear-gradient(90deg, transparent, rgba(255,143,57,.45), transparent);
}

.single-post .entry-content mark,
.single-post .post-content mark,
.single-post .article-content mark,
.single-post .single-content mark {
    padding: 2px 6px;
    border-radius: 5px;
    color: inherit;
    background: var(--ss-orange-soft);
}

/* =========================================================
   LINK ESTERNI CON ICONA
   ========================================================= */

.single-post .entry-content p a[target="_blank"]::after,
.single-post .post-content p a[target="_blank"]::after,
.single-post .article-content p a[target="_blank"]::after,
.single-post .single-content p a[target="_blank"]::after {
    content: "\f35d";
    display: inline-block;
    margin-left: 5px;
    font-family: "Font Awesome 6 Pro";
    font-size: .7em;
    font-style: normal;
    font-weight: 900;
    transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {
    .single-post .entry-content,
    .single-post .post-content,
    .single-post .article-content,
    .single-post .single-content {
        font-size: 17px;
        line-height: 1.72;
    }

    .single-post .entry-content h2,
    .single-post .post-content h2,
    .single-post .article-content h2,
    .single-post .single-content h2 {
        padding: 17px 53px 17px 18px;
        border-radius: 15px;
    }

    .single-post .entry-content h2::after,
    .single-post .post-content h2::after,
    .single-post .article-content h2::after,
    .single-post .single-content h2::after {
        right: 12px;
        font-size: 34px;
    }

    .article-toc {
        padding: 26px 19px 21px;
    }

    .article-toc ol,
    .article-toc ul {
        grid-template-columns: 1fr;
    }

    .seo-box {
        min-height: 0;
        padding: 88px 21px 24px;
    }

    .seo-box::before {
        top: 21px;
        left: 21px;
    }

    .article-faq,
    .article-sources {
        padding: 23px 17px;
    }

    .single-post .entry-content table,
    .single-post .post-content table,
    .single-post .article-content table,
    .single-post .single-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* =========================================================
   RIDUZIONE ANIMAZIONI
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .seo-box,
    .seo-engine-cover img,
    .article-faq details,
    .article-faq summary,
    .article-faq summary::after,
    .article-toc li,
    .article-sources li,
    .single-post .entry-content a,
    .single-post .post-content a,
    .single-post .article-content a,
    .single-post .single-content a {
        transition: none !important;
    }
}


/* =========================================================
   SPORTSUITE — SMOOTH HOVER & TRANSITIONS
   ========================================================= */

.single-post .entry-content a,
.single-post .post-content a,
.single-post .article-content a,
.single-post .single-content a,
.single-post .entry-content h2,
.single-post .post-content h2,
.single-post .article-content h2,
.single-post .single-content h2,
.single-post .entry-content h3,
.single-post .post-content h3,
.single-post .article-content h3,
.single-post .single-content h3,
.seo-engine-cover,
.seo-engine-cover img,
.article-toc,
.article-toc li,
.article-toc li::before,
.seo-box,
.seo-box::before,
.article-faq,
.article-faq details,
.article-faq summary,
.article-faq summary::after,
.article-sources,
.article-sources li,
.single-post .entry-content li,
.single-post .post-content li,
.single-post .article-content li,
.single-post .single-content li,
.single-post .entry-content table,
.single-post .post-content table,
.single-post .article-content table,
.single-post .single-content table {
    transition:
        transform .38s cubic-bezier(.22, .61, .36, 1),
        box-shadow .38s cubic-bezier(.22, .61, .36, 1),
        border-color .32s ease,
        background-color .32s ease,
        color .28s ease,
        opacity .28s ease;
}

.seo-engine-cover:hover,
.article-toc:hover,
.article-faq:hover,
.article-sources:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(7, 31, 73, 0.12);
}

.single-post .entry-content h2:hover,
.single-post .post-content h2:hover,
.single-post .article-content h2:hover,
.single-post .single-content h2:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 143, 57, .34);
    box-shadow: 0 16px 36px rgba(7, 31, 73, .09);
}

.single-post .entry-content h3:hover,
.single-post .post-content h3:hover,
.single-post .article-content h3:hover,
.single-post .single-content h3:hover {
    transform: translateX(3px);
}

.article-toc li:hover,
.article-sources li:hover,
.single-post .entry-content li:hover,
.single-post .post-content li:hover,
.single-post .article-content li:hover,
.single-post .single-content li:hover {
    transform: translateX(5px);
}

.seo-box:hover {
    transform: translateY(-4px);
}

.article-faq details:hover {
    transform: translateY(-2px);
}

.article-faq summary:hover::after {
    transform: translateY(-50%) scale(1.06);
}

.article-faq details[open] summary::after {
    transform: translateY(-50%) rotate(180deg) scale(1.03);
}

.single-post .entry-content a:hover,
.single-post .post-content a:hover,
.single-post .article-content a:hover,
.single-post .single-content a:hover {
    opacity: .92;
}

.single-post .entry-content table:hover,
.single-post .post-content table:hover,
.single-post .article-content table:hover,
.single-post .single-content table:hover {
    box-shadow: 0 18px 42px rgba(7, 31, 73, .09);
}

@media (hover: none) {
    .seo-engine-cover:hover,
    .article-toc:hover,
    .article-faq:hover,
    .article-sources:hover,
    .seo-box:hover,
    .article-faq details:hover,
    .article-toc li:hover,
    .article-sources li:hover,
    .single-post .entry-content h2:hover,
    .single-post .post-content h2:hover,
    .single-post .article-content h2:hover,
    .single-post .single-content h2:hover,
    .single-post .entry-content h3:hover,
    .single-post .post-content h3:hover,
    .single-post .article-content h3:hover,
    .single-post .single-content h3:hover,
    .single-post .entry-content li:hover,
    .single-post .post-content li:hover,
    .single-post .article-content li:hover,
    .single-post .single-content li:hover {
        transform: none;
    }
}

/* =========================================================
   GALLERIA WORDPRESS — GRIGLIA EDITORIALE
   ========================================================= */

.single-post .gallery,
.single-post .post-content .gallery,
.single-post .article-content .gallery,
.single-post .single-content .gallery {
	display: none !important;
}

 