/* ExtraEnergia – single.php tyylit
   Käytetään Breakdancen palettea: #d8691a / #f68523 oranssi gradientti, #1b2232 tumma. */

:root {
    /* Inter on Breakdancen brändifontti. Pidetään se ensimmäisenä, mutta annetaan
       vahva päätteetön fallback: jos Inter ei lataudu (esim. staging-ympäristön
       cross-origin-fontti), otsikot eivät putoa serif-fonttiin (Times). */
    --ee-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --ee-orange-1: #d8691a;
    --ee-orange-2: #f68523;
    --ee-orange-gradient: linear-gradient(90deg, #d8691a 0%, #f68523 100%);
    --ee-dark-1: #0e0203;
    --ee-dark-2: #1b2232;
    --ee-muted: #626d84;
    --ee-bg: #fafafa;
    --ee-card-bg: #ffffff;
    --ee-border: #e6e8ee;
    --ee-tldr-bg: #fff7ec;
    --ee-tldr-border: #fbe2bf;
    --ee-trust-bg: #f3f6fb;
    --ee-radius: 12px;
    --ee-shadow-sm: 0 1px 2px rgba(14, 2, 3, 0.06);
    --ee-shadow-md: 0 8px 24px rgba(14, 2, 3, 0.08);
    --ee-content-max: 760px;
    --ee-layout-max: 1180px;
}

.ee-article {
    width: 100%;
    margin: 0 auto;
    padding: 24px 20px 96px;
    color: var(--ee-dark-1);
    font-family: var(--ee-font);
    font-size: 18px;
    line-height: 1.7;
    background: #fff;
}

/* Fonttiperhe + otsikkokokojen suojaus -------------------------------------
   Artikkeli renderöityy Breakdancen .breakdance-kääreen sisällä, joten Breakdancen
   globaalit otsikkosäännöt (.breakdance h2 jne.) yltävät myös tänne ja ylikirjoittavat
   sekä fontin että koot. Nostetaan oma spesifisyys .ee-article-etuliitteellä, jotta
   artikkelin oma typografia voittaa varmasti. */
/* ID-spesifisyys (#ee-article) ohittaa varmasti Breakdancen .breakdance hN
   -säännön, joka muutoin pakottaa "Inter"-fontin ILMAN fallbackia → serif. */
#ee-article h1, #ee-article h2, #ee-article h3,
#ee-article h4, #ee-article h5, #ee-article h6,
#ee-article p, #ee-article li, #ee-article a,
#ee-article span, #ee-article blockquote, #ee-article summary,
#ee-article th, #ee-article td, #ee-article figcaption,
#ee-article .ee-post__title, #ee-article .ee-tldr__title,
#ee-article .ee-faq__title, #ee-article .ee-related__title,
#ee-article .ee-final-cta__title, #ee-article .ee-cta-card__title,
#ee-article .ee-author__name {
    font-family: var(--ee-font);
}
.ee-article .ee-post__title { font-size: clamp(28px, 4.5vw, 44px); }
.ee-article .ee-post__content h2 { font-size: clamp(24px, 3vw, 30px); }
.ee-article .ee-post__content h3 { font-size: clamp(20px, 2.4vw, 24px); }
.ee-article .ee-tldr__title { font-size: 15px; }
.ee-article .ee-faq__title,
.ee-article .ee-related__title { font-size: clamp(24px, 3vw, 30px); }
.ee-article .ee-final-cta__title { font-size: clamp(28px, 4vw, 40px); }
.ee-article .ee-cta-card__title { font-size: 22px; }

/* Sisällysluettelon ankkurihypyt jäävät kiinteän ylävalikon alle ilman tätä. */
html { scroll-behavior: smooth; }
.ee-post__content h2, .ee-post__content h3 { scroll-margin-top: 96px; }

/* Pitkät suomalaiset yhdyssanat (esim. "Ilmavesilämpöpumpun") tavutetaan, etteivät
   ne vuoda yli kapeimmilla näytöillä. */
.ee-post__title, .ee-post__lead, .ee-tldr, .ee-tldr__toc a, .ee-breadcrumb {
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}
/* Kaikkein kapeimmilla näytöillä (<346px) pienennetään H1 hieman, jotta pitkä
   yhdyssana ("Ilmavesilämpöpumppu") mahtuu siististi eikä katkea keskeltä sanaa. */
@media (max-width: 345px) {
    .ee-article .ee-post__title { font-size: 24px; }
}

/* Breadcrumb */
.ee-breadcrumb {
    max-width: 1120px;
    margin: 0 auto 16px;
    font-size: 14px;
    color: var(--ee-muted);
}
.ee-breadcrumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ee-breadcrumb__item a {
    color: var(--ee-muted);
    text-decoration: none;
}
.ee-breadcrumb__item a:hover { color: var(--ee-orange-1); }
.ee-breadcrumb__sep { margin: 0 6px; color: #bcc2cf; }

/* Article container */
.ee-post {
    max-width: 1120px;
    margin: 0 auto;
}
/* Yksi yhtenäinen sisältöpalsta (otsikko–sisältö–faq–kirjoittaja samalla vasemmalla
   reunalla) + sticky-sivupalkki oikealla. Korjaa "kaikki eri tasossa" -ongelman. */
.ee-post__main { min-width: 0; }

/* Header */
.ee-post__header {
    max-width: var(--ee-content-max);
    margin: 0 auto 32px;
}
.ee-post__cat {
    display: inline-block;
    background: var(--ee-orange-gradient);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.ee-post__title {
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.15;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ee-dark-2);
}
.ee-post__lead {
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.55;
    color: #3c4254;
    margin: 0 0 24px;
}
.ee-post__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--ee-muted);
    margin-bottom: 28px;
}
.ee-post__byline a { color: var(--ee-dark-2); text-decoration: none; font-weight: 600; }
.ee-post__byline a:hover { color: var(--ee-orange-1); }
.ee-post__sep { color: #bcc2cf; }
.ee-post__date--mod { color: #94a0b8; }

.ee-post__hero {
    margin: 0 0 28px;
    border-radius: var(--ee-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #eef0f5;
}
.ee-post__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Trust strip – vahvat luottamuskortit, omalla tilallaan kuvan ja Pikalukijan välissä.
   2 saraketta (≥480px) pitää kortit riittävän leveinä, jotta pitkät yhdyssanat
   ("Kotitalousvähennys") mahtuvat yhdelle riville kaikilla näytöillä; <480px 1 sarake. */
.ee-trust-strip {
    list-style: none;
    padding: 0;
    margin: 28px 0 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (max-width: 479px) {
    .ee-trust-strip { grid-template-columns: 1fr; }
}
.ee-trust-strip li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    background: var(--ee-card-bg);
    border: 1px solid var(--ee-border);
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: var(--ee-dark-2);
    box-shadow: var(--ee-shadow-sm);
}
.ee-trust-strip__ic {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ee-orange-gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}
/* Tekstin oma span → flex-itemi joka voi kutistua ja jonka pitkä sana katkeaa/tavuttuu
   siististi sen sijaan että leikkautuisi. */
.ee-trust-strip__tx {
    min-width: 0;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* TL;DR (GEO block) */
.ee-tldr {
    max-width: var(--ee-content-max);
    margin: 0 auto 40px;
    background: var(--ee-tldr-bg);
    border: 1px solid var(--ee-tldr-border);
    border-left: 4px solid var(--ee-orange-1);
    border-radius: var(--ee-radius);
    padding: 24px 28px;
}
.ee-tldr__title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ee-orange-1);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ee-tldr__lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--ee-dark-2);
    margin: 0 0 12px;
    line-height: 1.45;
}
.ee-tldr__list {
    margin: 0;
    padding-left: 22px;
    font-size: 17px;
}
.ee-tldr__list li { margin: 6px 0; line-height: 1.55; }

/* Pikalukijan linkitettävä sisällysluettelo (toimii TOC:na, ei pelkkä otsikkolista) */
.ee-tldr__nav { margin-top: 16px; }
.ee-tldr__list + .ee-tldr__nav,
.ee-tldr__lead + .ee-tldr__nav { border-top: 1px solid var(--ee-tldr-border); padding-top: 14px; }
.ee-tldr__nav-label {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ee-muted);
}
.ee-tldr__toc {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: ee-toc;
    display: grid;
    gap: 2px;
}
.ee-tldr__toc li { counter-increment: ee-toc; margin: 0; }
.ee-tldr__toc a {
    display: flex;
    gap: 10px;
    align-items: baseline;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 7px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--ee-dark-2);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    transition: background 0.12s ease, color 0.12s ease;
}
.ee-tldr__toc a::before {
    content: counter(ee-toc);
    flex-shrink: 0;
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--ee-tldr-border);
    color: var(--ee-orange-1);
    font-size: 13px;
    font-weight: 800;
}
.ee-tldr__toc a:hover { background: #fff; color: var(--ee-orange-1); }
.ee-tldr__toc a:hover::before { background: var(--ee-orange-gradient); color: #fff; border-color: transparent; }

/* Sivupalkin CTA: puhelinrivi */
.ee-article .ee-cta-card__phone {
    margin: 12px 0 0;
    font-size: 13px;
    color: #cdd3e0 !important;
    text-align: center;
}
.ee-article .ee-cta-card__phone a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--ee-orange-2);
}

/* Sivupalkin CTA: Google-arvostelut-badge */
.ee-article .ee-cta-card__reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 0;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.ee-article .ee-cta-card__reviews:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
}
.ee-cta-card__reviews-g {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ee-cta-card__reviews-info { display: flex; flex-direction: column; gap: 3px; }
.ee-article .ee-cta-card__reviews-meta { font-size: 12px; color: #cdd3e0 !important; line-height: 1; }
.ee-article .ee-cta-card__reviews-meta strong { color: #fff !important; font-size: 13px; }
.ee-stars {
    --ee-rating: 5;
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 2px;
    font-family: Arial, sans-serif;
}
.ee-stars::before {
    content: "★★★★★";
    background: linear-gradient(90deg, #fbbf24 calc(var(--ee-rating) / 5 * 100%), rgba(255, 255, 255, 0.3) calc(var(--ee-rating) / 5 * 100%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Layout: content + sidebar */
.ee-post__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    margin-bottom: 56px;
}
/* Kaikki pääpalstan lohkot täyttävät palstan ja jakavat saman vasemman reunan. */
.ee-post__main > * { max-width: none; margin-left: 0; margin-right: 0; }
@media (min-width: 1024px) {
    .ee-post__layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: start;
    }
}

.ee-post__content {
    max-width: none;
    margin: 0;
    width: 100%;
}

/* Content typography */
.ee-post__content h2 {
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.25;
    margin: 48px 0 16px;
    color: var(--ee-dark-2);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.ee-post__content h3 {
    font-size: clamp(20px, 2.4vw, 24px);
    line-height: 1.3;
    margin: 32px 0 12px;
    color: var(--ee-dark-2);
    font-weight: 700;
}
.ee-post__content p { margin: 0 0 20px; }
.ee-post__content a { color: var(--ee-orange-1); text-decoration: underline; text-underline-offset: 3px; }
.ee-post__content a:hover { color: var(--ee-dark-2); }
.ee-post__content ul, .ee-post__content ol { padding-left: 24px; margin: 0 0 24px; }
.ee-post__content li { margin: 6px 0; }
.ee-post__content img { max-width: 100%; height: auto; border-radius: var(--ee-radius); margin: 16px 0; }
.ee-post__content blockquote {
    border-left: 4px solid var(--ee-orange-1);
    background: #fff7ec;
    margin: 24px 0;
    padding: 16px 24px;
    border-radius: 0 var(--ee-radius) var(--ee-radius) 0;
    font-style: italic;
    color: var(--ee-dark-2);
}
.ee-post__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}
.ee-post__content th, .ee-post__content td {
    border: 1px solid var(--ee-border);
    padding: 10px 12px;
    text-align: left;
}
.ee-post__content th { background: #f7f9fc; font-weight: 700; }
.ee-post__content figure { margin: 28px 0; }
.ee-post__content figcaption { font-size: 14px; color: var(--ee-muted); margin-top: 8px; text-align: center; }

/* ============================================================
   Sisällön visuaalinen järjestelmä – otsikkonumerot, ikonilistat,
   korosteet ja kuvat. Tuo "elämää" muuten pelkkään leipätekstiin.
   ============================================================ */

/* H2: numeroitu oranssi badge – sama numerointi kuin Pikalukijan sisällysluettelossa */
.ee-post__content { counter-reset: ee-h2; overflow-wrap: break-word; hyphens: auto; -webkit-hyphens: auto; }
.ee-post__content h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    counter-increment: ee-h2;
    min-width: 0;
    /* otsikon teksti on flex-itemi → "anywhere" sallii pitkän yhdyssanan katketa,
       jottei se vuoda yli kapeilla näytöillä (tavutus hoitaa siistit katkot). */
    overflow-wrap: anywhere;
}
.ee-post__content h2 > * { overflow-wrap: anywhere; }
.ee-post__content h2::before {
    content: counter(ee-h2);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ee-orange-gradient);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(246, 133, 35, 0.32);
}

/* H3: oranssi reunapalkki – kevyempi taso otsikkohierarkiaan */
.ee-post__content h3 {
    padding-left: 16px;
    border-left: 4px solid var(--ee-orange-2);
}

/* Rungon ensimmäinen kappale johdantona (hieman isompi) */
.ee-post__content > p:first-of-type { font-size: 1.06em; color: #2a2f3e; }

/* Ikonilistat: ei luettelomerkkejä, oranssi ✓-pallo */
.ee-post__content ul { list-style: none; padding-left: 0; margin: 4px 0 24px; }
.ee-post__content ul > li { position: relative; padding-left: 34px; margin: 11px 0; }
.ee-post__content ul > li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: var(--ee-orange-gradient);
    border-radius: 50%;
}

/* Numeroidut listat: oranssit numerobadget */
.ee-post__content ol { list-style: none; padding-left: 0; margin: 4px 0 24px; counter-reset: ee-ol; }
.ee-post__content ol > li { position: relative; padding-left: 42px; margin: 13px 0; counter-increment: ee-ol; min-height: 28px; }
.ee-post__content ol > li::before {
    content: counter(ee-ol);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: var(--ee-orange-gradient);
    border-radius: 8px;
}

/* Lainaus/nosto = korostelaatikko */
.ee-post__content blockquote {
    border-left: 4px solid var(--ee-orange-1);
    background: var(--ee-tldr-bg);
    margin: 28px 0;
    padding: 18px 24px;
    border-radius: 0 var(--ee-radius) var(--ee-radius) 0;
    font-style: normal;
    font-size: 1.05em;
    color: var(--ee-dark-2);
}
.ee-post__content blockquote p:last-child { margin-bottom: 0; }

/* Taulukot: brändätty tumma otsikkorivi + vuororaidat */
.ee-post__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
    border: 1px solid var(--ee-border);
    border-radius: var(--ee-radius);
    overflow: hidden;
}
.ee-post__content thead th, .ee-post__content table th {
    background: var(--ee-dark-2);
    color: #fff;
    font-weight: 700;
}
.ee-post__content td, .ee-post__content th { padding: 12px 14px; border-bottom: 1px solid var(--ee-border); text-align: left; }
.ee-post__content tbody tr:nth-child(even) { background: #f7f9fc; }
/* Teeman .table-wrap-kääre on overflow:hidden → leikkaa leveän taulukon mobiilissa.
   Pakotetaan vieritys, jotta kaikki sarakkeet ovat saavutettavissa. */
.ee-post__content .table-wrap { overflow-x: auto !important; -webkit-overflow-scrolling: touch; max-width: 100%; }

/* Kuvat: pyöristys + pehmeä varjo, ettei "leijaa" tyhjässä */
.ee-post__content img { box-shadow: var(--ee-shadow-md); }

.ee-post__content strong { font-weight: 700; color: var(--ee-dark-2); }

/* Artikkelin keskelle nostettu CTA – rikkoo tekstimassan */
.ee-midcta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 24px;
    margin: 36px 0;
    padding: 22px 26px;
    background: linear-gradient(120deg, #fff7ec 0%, #ffe6c9 100%);
    border: 1px solid var(--ee-tldr-border);
    border-radius: var(--ee-radius);
}
.ee-midcta__text { flex: 1 1 260px; }
.ee-midcta__title { display: block; font-size: 18px; line-height: 1.3; color: var(--ee-dark-2); margin-bottom: 4px; }
.ee-midcta__sub { display: block; font-size: 14.5px; line-height: 1.5; color: #4a5160; }
.ee-midcta .ee-btn { flex-shrink: 0; }
.ee-post__content a.ee-btn { text-decoration: none; }

/* Mobiili: leveä taulukko vierii vaakasuunnassa eikä riko leiskaa */
@media (max-width: 600px) {
    /* Kääreettömät (raa'at) taulukot: vieritys suoraan taulukkoon. */
    .ee-post__content > table { display: block; overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; }
    .ee-midcta { padding: 20px; }
}

/* Sidebar / sticky CTA */
.ee-sidebar { display: none; }
@media (min-width: 1024px) {
    /* Sticky suoraan grid-itemiin: toimii koska .ee-post__layout on koko artikkelin
       korkuinen (align-self:start pitää kortin luonnollisella korkeudella ylhäällä). */
    .ee-sidebar { display: block; position: sticky; top: 96px; align-self: start; }
}
.ee-sidebar__sticky { /* kääre – sticky hoidetaan .ee-sidebarissa */ }
.ee-article .ee-cta-card {
    background: var(--ee-dark-2);
    color: #fff !important;
    border-radius: var(--ee-radius);
    padding: 28px 24px;
    box-shadow: var(--ee-shadow-md);
    background-image: linear-gradient(160deg, #1b2232 0%, #0e0203 100%);
}
.ee-article .ee-cta-card *,
.ee-article .ee-cta-card h1,
.ee-article .ee-cta-card h2,
.ee-article .ee-cta-card h3,
.ee-article .ee-cta-card h4,
.ee-article .ee-cta-card p,
.ee-article .ee-cta-card span,
.ee-article .ee-cta-card li { color: inherit; }
.ee-article .ee-cta-card__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ee-orange-2) !important;
    margin-bottom: 8px;
}
.ee-article .ee-cta-card__title { margin: 0 0 10px; font-size: 22px; line-height: 1.25; color: #fff !important; }
.ee-article .ee-cta-card__body { margin: 0 0 18px; font-size: 15px; line-height: 1.55; color: #cdd3e0 !important; }
.ee-article .ee-cta-card__bullets {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    font-size: 14px;
    color: #cdd3e0 !important;
}
.ee-article .ee-cta-card__bullets li {
    padding-left: 22px;
    position: relative;
    margin: 6px 0;
    color: #cdd3e0 !important;
}
.ee-article .ee-cta-card__bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ee-orange-2) !important;
    font-weight: 700;
}

/* Buttons */
.ee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 16px;
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}
.ee-article .ee-btn--primary,
a.ee-btn--primary {
    background: var(--ee-orange-gradient);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(246, 133, 35, 0.35);
}
.ee-article .ee-btn--primary:hover,
a.ee-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(246, 133, 35, 0.45); color: #fff !important; }
.ee-article .ee-btn--ghost,
a.ee-btn--ghost {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.ee-article .ee-btn--ghost:hover,
a.ee-btn--ghost:hover { background: rgba(255, 255, 255, 0.08); color: #fff !important; }
.ee-btn--block { width: 100%; }
.ee-btn--lg { padding: 18px 32px; font-size: 18px; }

/* FAQ */
.ee-faq {
    max-width: var(--ee-content-max);
    margin: 0 auto 56px;
}
.ee-faq__title {
    font-size: clamp(24px, 3vw, 30px);
    margin: 0 0 20px;
    color: var(--ee-dark-2);
}
.ee-faq__item {
    border: 1px solid var(--ee-border);
    border-radius: var(--ee-radius);
    padding: 16px 20px;
    margin-bottom: 10px;
    background: #fff;
    transition: box-shadow 0.15s;
}
.ee-faq__item[open] { box-shadow: var(--ee-shadow-sm); border-color: #d8d8e2; }
.ee-faq__item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: var(--ee-dark-2);
    list-style: none;
    position: relative;
    padding-right: 32px;
}
.ee-faq__item summary::-webkit-details-marker { display: none; }
.ee-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--ee-orange-1);
    font-weight: 400;
}
.ee-faq__item[open] summary::after { content: "−"; }
.ee-faq__item > div { margin-top: 12px; color: #3c4254; font-size: 16px; line-height: 1.65; }

/* Sources */
.ee-sources {
    max-width: var(--ee-content-max);
    margin: 0 auto 56px;
    padding: 20px 24px;
    background: var(--ee-bg);
    border-radius: var(--ee-radius);
    font-size: 14px;
    color: var(--ee-muted);
}
.ee-sources__title { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 8px; color: var(--ee-dark-2); }
.ee-sources__list { margin: 0; padding-left: 20px; }
.ee-sources__list a { color: var(--ee-orange-1); }

/* Author */
.ee-author {
    max-width: var(--ee-content-max);
    margin: 0 auto 56px;
}
.ee-author__inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--ee-bg);
    border-radius: var(--ee-radius);
}
.ee-author__avatar { border-radius: 50%; flex-shrink: 0; width: 72px; height: 72px; object-fit: cover; }
.ee-author__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ee-muted); }
.ee-author__name { margin: 4px 0 8px; font-size: 18px; }
.ee-author__name a { color: var(--ee-dark-2); text-decoration: none; }
.ee-author__name a:hover { color: var(--ee-orange-1); }
.ee-author__bio { margin: 0; font-size: 15px; color: #3c4254; line-height: 1.55; }

/* Related */
.ee-related {
    max-width: var(--ee-layout-max);
    margin: 0 auto 64px;
}
.ee-related__title {
    font-size: clamp(24px, 3vw, 30px);
    margin: 0 0 20px;
    color: var(--ee-dark-2);
}
.ee-related__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .ee-related__list { grid-template-columns: repeat(3, 1fr); }
}
.ee-related__link {
    display: block;
    background: #fff;
    border: 1px solid var(--ee-border);
    border-radius: var(--ee-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--ee-dark-2);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.ee-related__link:hover { transform: translateY(-2px); box-shadow: var(--ee-shadow-md); border-color: #d8d8e2; }
.ee-related__img {
    display: block;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-color: #eef0f5;
}
.ee-related__body { padding: 16px; display: block; }
.ee-related__heading { display: block; font-weight: 700; font-size: 17px; line-height: 1.35; margin-bottom: 6px; }
.ee-related__excerpt { display: block; font-size: 14px; color: var(--ee-muted); line-height: 1.5; }

/* Final CTA */
.ee-final-cta {
    max-width: var(--ee-layout-max);
    margin: 0 auto 80px;
}
.ee-article .ee-final-cta__inner {
    background: var(--ee-dark-2);
    background-image: linear-gradient(135deg, #1b2232 0%, #0e0203 100%);
    color: #fff !important;
    border-radius: 24px;
    padding: clamp(32px, 5vw, 64px) clamp(24px, 5vw, 48px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ee-article .ee-final-cta__inner *,
.ee-article .ee-final-cta__inner h1,
.ee-article .ee-final-cta__inner h2,
.ee-article .ee-final-cta__inner h3,
.ee-article .ee-final-cta__inner h4,
.ee-article .ee-final-cta__inner p,
.ee-article .ee-final-cta__inner span,
.ee-article .ee-final-cta__inner li { color: inherit; }
.ee-final-cta__inner::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(246, 133, 35, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.ee-article .ee-final-cta__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ee-orange-2) !important;
    margin-bottom: 12px;
    position: relative;
}
.ee-article .ee-final-cta__title {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    color: #fff !important;
    position: relative;
}
.ee-article .ee-final-cta__body {
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 17px;
    line-height: 1.6;
    color: #cdd3e0 !important;
    position: relative;
}
.ee-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
}
.ee-article .ee-final-cta__trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #94a0b8 !important;
    position: relative;
}
.ee-article .ee-final-cta__trust li {
    padding-left: 20px;
    position: relative;
    color: #94a0b8 !important;
}
.ee-article .ee-final-cta__trust li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ee-orange-2) !important;
    font-weight: 700;
}

/* Mobile sticky CTA */
.ee-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: var(--ee-orange-gradient);
    color: #fff;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 28px rgba(216, 105, 26, 0.45);
}
.ee-mobile-cta__arrow { font-size: 18px; }
@media (min-width: 1024px) {
    .ee-mobile-cta { display: none; }
}

/* Print */
@media print {
    .ee-sidebar, .ee-mobile-cta, .ee-final-cta, .ee-related, .ee-breadcrumb { display: none; }
}
