/* ============================================================
   BLOG POST DETAIL PAGE STYLES
   Used by all individual blog post pages.
   ============================================================ */
/* ====================================================
   SAFETY: Force post body content to always be visible
   (in case .reveal animation never triggers)
   ==================================================== */
.post-body .reveal,
.post-content,
.post-content * {
    opacity: 1 !important;
    transform: none !important;
}



/* ====================================================
   POST HERO
   ==================================================== */
.post-hero {
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}
.post-hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(255, 214, 10, 0.12), transparent 70%);
    pointer-events: none;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.post-breadcrumb a {
    color: var(--muted);
    transition: color 0.2s;
}
.post-breadcrumb a:hover { color: var(--ink); }
.post-breadcrumb .sep {
    color: var(--line);
    margin: 0 2px;
}
.post-breadcrumb .current {
    color: var(--ink);
    font-weight: 500;
}

.post-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--yellow-soft);
    color: var(--yellow-deep);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.post-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 28px;
    max-width: 920px;
}
.post-hero h1 em { font-style: italic; color: var(--yellow-deep); }

.post-deck {
    font-size: 20px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 760px;
    margin-bottom: 36px;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
}

.post-meta-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.post-author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ink);
    flex-shrink: 0;
}
.post-author-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.post-author-info {
    display: flex;
    flex-direction: column;
}
.post-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}
.post-author-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.post-meta-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}
.post-meta-item i {
    color: var(--yellow-deep);
    font-size: 13px;
}

.post-share-buttons {
    margin-left: auto;
    display: flex;
    gap: 8px;
}
.post-share-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    color: var(--ink-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s var(--ease-out);
}
.post-share-btn:hover {
    background: var(--ink);
    color: var(--yellow);
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* ====================================================
   POST BODY — two column with sticky TOC
   ==================================================== */
.post-body {
    padding: 60px 0 90px;
}
.post-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}

.post-toc {
    position: sticky;
    top: 110px;
}
.post-toc-title {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.post-toc ul {
    list-style: none;
}
.post-toc ul li {
    margin-bottom: 4px;
}
.post-toc ul li a {
    display: block;
    padding: 8px 14px;
    font-size: 13.5px;
    color: var(--muted);
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: all 0.2s var(--ease-out);
    line-height: 1.4;
}
.post-toc ul li a:hover {
    color: var(--ink);
    background: var(--bg-elev);
    padding-left: 18px;
}
.post-toc ul li a.active {
    color: var(--ink);
    background: var(--bg-elev);
    border-left-color: var(--yellow);
    font-weight: 600;
}

.post-content {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-2);
}

.post-content > p,
.post-content > div > p {
    margin-bottom: 22px;
}
.post-content p strong,
.post-content p b {
    color: var(--ink);
    font-weight: 600;
}

.post-content h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(26px, 3.2vw, 32px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 56px 0 20px;
    scroll-margin-top: 120px;
}
.post-content h2 em { font-style: italic; color: var(--yellow-deep); }
.post-content h2:first-child { margin-top: 0; }

.post-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    margin: 36px 0 14px;
    letter-spacing: -0.015em;
    scroll-margin-top: 120px;
}

.post-content ul,
.post-content ol {
    margin: 18px 0 26px 8px;
    padding-left: 24px;
}
.post-content ul li,
.post-content ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}
.post-content ul li::marker {
    color: var(--yellow-deep);
}
.post-content ol li::marker {
    color: var(--yellow-deep);
    font-weight: 600;
}

.post-content a {
    color: var(--yellow-deep);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.post-content a:hover { color: var(--ink); }

/* Pull quote */
.post-pullquote {
    margin: 36px 0;
    padding: 28px 32px;
    background: var(--bg-elev);
    border-left: 4px solid var(--yellow);
    border-radius: 0 14px 14px 0;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    line-height: 1.4;
    color: var(--ink);
    font-style: italic;
    letter-spacing: -0.01em;
}

/* Callout box (highlighted info) */
.post-callout {
    background: var(--yellow-soft);
    border-left: 4px solid var(--yellow-deep);
    padding: 22px 26px;
    border-radius: 0 14px 14px 0;
    margin: 28px 0;
}
.post-callout p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}
.post-callout p:not(:last-child) { margin-bottom: 12px; }

/* Numbered framework / step boxes */
.post-step-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 26px 0 32px;
}
.post-step {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: start;
    transition: all 0.3s var(--ease-out);
}
.post-step:hover {
    border-color: var(--ink);
    transform: translateX(4px);
}
.post-step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 500;
    flex-shrink: 0;
}
.post-step-content h4 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.post-step-content p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Tool / resource cards inline */
.post-tool-card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 28px;
    margin: 16px 0;
    transition: all 0.3s var(--ease-out);
}
.post-tool-card:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}
.post-tool-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.post-tool-card h4 .num {
    width: 28px; height: 28px;
    background: var(--ink);
    color: var(--yellow);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0;
}
.post-tool-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-2);
    margin: 0;
}
.post-tool-card p:not(:last-child) { margin-bottom: 10px; }

/* Drop cap for first paragraph */
.post-content .lead::first-letter {
    font-family: 'Fraunces', serif;
    float: left;
    font-size: 64px;
    font-weight: 500;
    line-height: 0.85;
    margin: 6px 12px 0 0;
    color: var(--yellow-deep);
}

/* Inline highlight */
.post-content .highlight {
    background: linear-gradient(180deg, transparent 65%, var(--yellow) 65%);
    padding: 0 2px;
    font-weight: 500;
    color: var(--ink);
}

/* ====================================================
   AUTHOR BIO CARD
   ==================================================== */
.author-bio {
    margin-top: 60px;
    padding: 32px;
    background: var(--ink);
    color: white;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 24px;
    align-items: center;
}
.author-bio-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--yellow);
    flex-shrink: 0;
}
.author-bio-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.author-bio-info h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.015em;
}
.author-bio-info .role {
    font-size: 13px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 12px;
}
.author-bio-info p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 16px;
}
.author-bio-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.author-bio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s var(--ease-out);
}
.author-bio-link:hover {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
}
.author-bio-link i { font-size: 13px; }

/* ====================================================
   RELATED POSTS
   ==================================================== */
.related-posts-section {
    padding: 90px 0;
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
}
.related-posts-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.related-posts-head h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
}
.related-posts-head h2 em { font-style: italic; color: var(--yellow-deep); }
.related-posts-head .all-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    transition: gap 0.25s;
}
.related-posts-head .all-link:hover { gap: 12px; }

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-post {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s var(--ease-out);
    display: flex;
    flex-direction: column;
}
.related-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--ink);
}
.related-post-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--ink), #333);
    color: white;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.related-post-thumb::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.15), transparent 70%);
}
.related-post-thumb.tone-career { background: linear-gradient(135deg, #0a0a0a, #1f2937); }
.related-post-thumb.tone-ai { background: linear-gradient(135deg, #1f2937, #4338ca); }
.related-post-thumb.tone-learning { background: linear-gradient(135deg, #1f2937, #7c2d12); }
.related-post-thumb.tone-marketing { background: linear-gradient(135deg, #0a0a0a, #064e3b); }
.related-post-cat-pill {
    display: inline-block;
    background: var(--yellow);
    color: var(--ink);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    align-self: flex-start;
    z-index: 1;
    position: relative;
}
.related-post-icon {
    font-size: 32px;
    color: var(--yellow);
    opacity: 0.4;
    align-self: flex-end;
    z-index: 1;
    position: relative;
}
.related-post-body {
    padding: 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.related-post-body h3 {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 10px;
}
.related-post-body p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 16px;
    flex: 1;
}
.related-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
}
.related-post-meta .dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--muted);
}

/* ====================================================
   NEWSLETTER CTA (bottom of post)
   ==================================================== */
.post-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--yellow);
    position: relative;
    overflow: hidden;
}
.post-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
}
.post-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.post-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 18px;
}
.post-cta h2 em { font-style: italic; }
.post-cta p {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.post-cta .btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.post-cta .btn-primary {
    background: var(--ink);
    color: var(--yellow);
}
.post-cta .btn-primary:hover { color: var(--ink); }
.post-cta .btn-primary::before { background: white; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 991px) {
    .post-hero { padding: 30px 0 20px; }
    .post-body { padding: 40px 0 70px; }
    .post-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .post-toc {
        position: static;
        background: var(--bg-elev);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 22px 24px;
    }
    .post-toc-title {
        margin-bottom: 14px;
        padding-bottom: 12px;
    }
    .post-meta-bar { gap: 18px; padding: 18px 0; }
    .post-share-buttons {
        margin-left: 0;
        width: 100%;
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }
    .related-posts-grid { grid-template-columns: 1fr; }
    .author-bio {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px;
    }
    .author-bio-avatar { margin: 0 auto; }
    .author-bio-links { justify-content: center; }
}

@media (max-width: 600px) {
    .post-meta-divider { display: none; }
    .post-content { font-size: 16px; }
    .post-content h2 { margin-top: 40px; }
    .post-pullquote { font-size: 17px; padding: 22px 24px; }
    .post-callout { padding: 18px 22px; }
    .post-step { padding: 18px 20px; grid-template-columns: 40px 1fr; gap: 14px; }
    .post-step-num { width: 36px; height: 36px; font-size: 15px; }
    .post-cta { padding: 60px 0; }
}

/* ============================================================
   ANIMATED FEATURED IMAGE (blog posts)
   Self-contained SVG scenes — sit between hero and body.
   Keyframes are prefixed per-theme so they never collide.
   ============================================================ */
.post-featured {
    margin: 8px 0 4px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1200 / 460;
    box-shadow: 0 20px 50px rgba(0,0,0,0.16);
    border: 1px solid var(--line);
}
.post-featured svg { display: block; width: 100%; height: 100%; }
.post-featured .feat-label {
    position: absolute;
    left: 18px; bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 100px;
    background: rgba(10,10,10,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 2;
}
.post-featured .feat-label i { color: var(--yellow); }
@media (max-width: 640px) {
    .post-featured { aspect-ratio: 1200 / 620; }
    .post-featured .feat-label { font-size: 11px; left: 12px; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
    .post-featured svg * { animation: none !important; }
}

/* shared soft float used by several scenes */
@keyframes feat-bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* ---- 1. YouTube scene (yt-) ---- */
@keyframes yt-pulse { 0%,100%{ transform: scale(1); opacity:.95;} 50%{ transform: scale(1.08); opacity:1;} }
@keyframes yt-drift { 0%{ transform: translateX(0) translateY(0);} 50%{ transform: translateX(14px) translateY(-12px);} 100%{ transform: translateX(0) translateY(0);} }
@keyframes yt-ring { 0%,92%,100%{ transform: rotate(0);} 94%{ transform: rotate(-14deg);} 96%{ transform: rotate(12deg);} 98%{ transform: rotate(-6deg);} }
.yt-play { transform-box: fill-box; transform-origin: center; animation: yt-pulse 2.6s var(--ease-in-out) infinite; }
.yt-card-a { animation: yt-drift 7s ease-in-out infinite; }
.yt-card-b { animation: yt-drift 8.5s ease-in-out infinite reverse; }
.yt-card-c { animation: yt-drift 6s ease-in-out infinite; }
.yt-bell { transform-box: fill-box; transform-origin: top center; animation: yt-ring 5s ease-in-out infinite; }

/* ---- 2. Dropshipping scene (ds-) ---- */
@keyframes ds-truck { 0%{ transform: translateX(-180px);} 100%{ transform: translateX(1240px);} }
@keyframes ds-spin { from{ transform: rotate(0);} to{ transform: rotate(360deg);} }
@keyframes ds-warn { 0%,100%{ opacity:.35;} 50%{ opacity:1;} }
@keyframes ds-box { 0%,100%{ transform: translateY(0) rotate(-3deg);} 50%{ transform: translateY(-12px) rotate(3deg);} }
.ds-truck { animation: ds-truck 9s linear infinite; }
.ds-orbit { transform-box: fill-box; transform-origin: center; animation: ds-spin 18s linear infinite; }
.ds-warn { transform-box: fill-box; transform-origin: center; animation: ds-warn 1.8s ease-in-out infinite; }
.ds-box { transform-box: fill-box; transform-origin: center; animation: ds-box 4s ease-in-out infinite; }

/* ---- 3. Career 2026 scene (cr-) ---- */
@keyframes cr-grow { from{ transform: scaleY(0);} to{ transform: scaleY(1);} }
@keyframes cr-rocket { 0%{ transform: translate(0,0) rotate(0);} 100%{ transform: translate(120px,-150px) rotate(8deg);} }
@keyframes cr-coin { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.cr-bar { transform-box: fill-box; transform-origin: bottom; animation: cr-grow 1.3s var(--ease-out) forwards; }
.cr-bar-2 { animation-delay: .18s; }
.cr-bar-3 { animation-delay: .36s; }
.cr-bar-4 { animation-delay: .54s; }
.cr-bar-5 { animation-delay: .72s; }
.cr-rocket { transform-box: fill-box; transform-origin: center; animation: cr-rocket 5.5s var(--ease-in-out) infinite alternate; }
.cr-coin { transform-box: fill-box; transform-origin: center; animation: cr-coin 3.4s ease-in-out infinite; }
.cr-coin-2 { animation-delay: .8s; }

/* ---- 4. Freelancer tools scene (fl-) ---- */
@keyframes fl-pop { 0%,100%{ opacity:.55; transform: scale(.96);} 50%{ opacity:1; transform: scale(1);} }
@keyframes fl-check { 0%,70%{ stroke-dashoffset: 40;} 100%{ stroke-dashoffset: 0;} }
.fl-tile { transform-box: fill-box; transform-origin: center; animation: fl-pop 3.2s ease-in-out infinite; }
.fl-tile-2 { animation-delay: .4s; }
.fl-tile-3 { animation-delay: .8s; }
.fl-tile-4 { animation-delay: 1.2s; }
.fl-tile-5 { animation-delay: 1.6s; }
.fl-tile-6 { animation-delay: 2.0s; }
.fl-check { stroke-dasharray: 40; animation: fl-check 3s ease-in-out infinite; }

/* ---- 5. Branding scene (br-) ---- */
@keyframes br-heart { 0%{ transform: translateY(0) scale(.8); opacity:0;} 20%{ opacity:1;} 100%{ transform: translateY(-120px) scale(1.1); opacity:0;} }
@keyframes br-mega { 0%,100%{ transform: rotate(-8deg);} 50%{ transform: rotate(-2deg);} }
@keyframes br-wave { 0%,100%{ transform: scaleX(1); opacity:.5;} 50%{ transform: scaleX(1.25); opacity:.9;} }
.br-heart { transform-box: fill-box; transform-origin: center; animation: br-heart 4.5s ease-in infinite; }
.br-heart-2 { animation-delay: 1.5s; }
.br-heart-3 { animation-delay: 3s; }
.br-mega { transform-box: fill-box; transform-origin: bottom left; animation: br-mega 3s ease-in-out infinite; }
.br-wave { transform-box: fill-box; transform-origin: left center; animation: br-wave 2.4s ease-in-out infinite; }
.br-wave-2 { animation-delay: .5s; }
.br-wave-3 { animation-delay: 1s; }

/* ============================================================
   COMPARISON TABLE (blog posts)
   ============================================================ */
.post-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: 12px; border: 1px solid var(--line); }
.post-content table.post-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 460px;
}
.post-content table.post-table thead th {
    background: var(--ink);
    color: #fff;
    text-align: left;
    padding: 13px 18px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.post-content table.post-table td {
    padding: 13px 18px;
    border-top: 1px solid var(--line);
    color: var(--ink-2);
    vertical-align: top;
}
.post-content table.post-table tbody tr:nth-child(even) { background: var(--yellow-soft); }
.post-content table.post-table td:first-child { font-weight: 600; color: var(--ink); }
.post-table-level {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    background: var(--ink);
    color: #fff;
}

/* ============================================================
   INLINE FAQ (blog posts)
   ============================================================ */
.post-faq { margin-top: 14px; }
.post-faq-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.post-faq-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.post-faq-item p { color: var(--ink-2); margin: 0; }

/* ---- featured-image v2: extra flair keyframes ---- */
@keyframes feat-twinkle { 0%,100%{ opacity:.15; transform: scale(.6);} 50%{ opacity:1; transform: scale(1);} }
@keyframes feat-particle { 0%{ transform: translateY(0); opacity:0;} 20%{ opacity:.55;} 100%{ transform: translateY(-70px); opacity:0;} }
@keyframes yt-glow { 0%,100%{ opacity:.22; transform: scale(1);} 50%{ opacity:.5; transform: scale(1.18);} }
@keyframes yt-like { 0%{ transform: translateY(0) scale(.5); opacity:0;} 25%{ opacity:1;} 100%{ transform: translateY(-95px) scale(1.05); opacity:0;} }
@keyframes cr-flame { 0%,100%{ transform: scaleY(1); opacity:.85;} 50%{ transform: scaleY(1.45); opacity:1;} }
@keyframes cr-trail { 0%{ opacity:0;} 45%{ opacity:.8;} 100%{ opacity:0;} }
@keyframes fl-cursor { 0%{ transform: translate(0,0);} 25%{ transform: translate(70px,34px);} 50%{ transform: translate(150px,-8px);} 75%{ transform: translate(46px,54px);} 100%{ transform: translate(0,0);} }
@keyframes br-sparkle { 0%,100%{ opacity:0; transform: scale(.4) rotate(0);} 50%{ opacity:1; transform: scale(1) rotate(45deg);} }
@keyframes ds-pkg-orbit { from{ transform: rotate(0);} to{ transform: rotate(-360deg);} }

.feat-twinkle { transform-box: fill-box; transform-origin: center; animation: feat-twinkle 2.6s ease-in-out infinite; }
.feat-particle { animation: feat-particle 5s linear infinite; }
.yt-glow { transform-box: fill-box; transform-origin: center; animation: yt-glow 2.6s var(--ease-in-out) infinite; }
.yt-like { animation: yt-like 4.2s ease-in infinite; }
.yt-like-2 { animation-delay: 1.4s; }
.yt-like-3 { animation-delay: 2.8s; }
.cr-flame { transform-box: fill-box; transform-origin: top center; animation: cr-flame .45s ease-in-out infinite; }
.cr-trail { animation: cr-trail 2.2s ease-out infinite; }
.cr-trail-2 { animation-delay: .5s; } .cr-trail-3 { animation-delay: 1s; }
.fl-cursor { animation: fl-cursor 8s ease-in-out infinite; }
.br-sparkle { transform-box: fill-box; transform-origin: center; animation: br-sparkle 3s ease-in-out infinite; }
.br-sparkle-2 { animation-delay: 1.5s; }
.ds-pkg-orbit { transform-box: fill-box; transform-origin: center; animation: ds-pkg-orbit 16s linear infinite; }
.feat-p2 { animation-delay: 1.2s; } .feat-p3 { animation-delay: 2.4s; } .feat-p4 { animation-delay: 3.6s; }

/* ============================================================
   FEATURED IMAGE v3 — 3D glossy/isometric scene animations
   ============================================================ */
@keyframes f3d-float    { 0%,100%{ transform: translateY(0) rotate(0); } 50%{ transform: translateY(-16px) rotate(-1.2deg); } }
@keyframes f3d-float-2  { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-24px); } }
@keyframes f3d-float-3  { 0%,100%{ transform: translateY(0) rotate(0); } 50%{ transform: translateY(-11px) rotate(2deg); } }
@keyframes f3d-shadow   { 0%,100%{ transform: scaleX(1);   opacity:.38; } 50%{ transform: scaleX(.82); opacity:.22; } }
@keyframes f3d-shadow-2 { 0%,100%{ transform: scaleX(1);   opacity:.34; } 50%{ transform: scaleX(.78); opacity:.18; } }
@keyframes f3d-shimmer  { 0%{ opacity:.0; transform: translateX(-40px);} 35%{ opacity:.55;} 70%{ opacity:0; transform: translateX(60px);} 100%{ opacity:0; } }
@keyframes f3d-bokeh    { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(18px,-14px); } }
@keyframes f3d-coinspin { 0%,100%{ transform: scaleX(1);} 50%{ transform: scaleX(.16);} }
@keyframes f3d-orbit    { from{ transform: rotate(0);} to{ transform: rotate(360deg);} }
@keyframes f3d-rise     { 0%{ transform: translateY(0) scale(.7); opacity:0;} 20%{ opacity:1;} 100%{ transform: translateY(-130px) scale(1.05); opacity:0;} }
@keyframes f3d-flame    { 0%,100%{ transform: scaleY(1) scaleX(1); opacity:.92;} 50%{ transform: scaleY(1.5) scaleX(.86); opacity:1;} }

.f3d-float   { transform-box: fill-box; transform-origin: center; animation: f3d-float 5.5s var(--ease-in-out) infinite; }
.f3d-float-2 { transform-box: fill-box; transform-origin: center; animation: f3d-float-2 7s var(--ease-in-out) infinite; }
.f3d-float-3 { transform-box: fill-box; transform-origin: center; animation: f3d-float-3 6.2s var(--ease-in-out) infinite; }
.f3d-delay-1 { animation-delay: -1.5s; } .f3d-delay-2 { animation-delay: -3s; } .f3d-delay-3 { animation-delay: -4.4s; }
.f3d-shadow   { transform-box: fill-box; transform-origin: center; animation: f3d-shadow 5.5s var(--ease-in-out) infinite; }
.f3d-shadow-2 { transform-box: fill-box; transform-origin: center; animation: f3d-shadow-2 7s var(--ease-in-out) infinite; }
.f3d-shimmer { animation: f3d-shimmer 4.5s ease-in-out infinite; }
.f3d-bokeh   { animation: f3d-bokeh 9s ease-in-out infinite; }
.f3d-bokeh-2 { animation: f3d-bokeh 12s ease-in-out infinite reverse; }
.f3d-coinspin{ transform-box: fill-box; transform-origin: center; animation: f3d-coinspin 4.5s var(--ease-in-out) infinite; }
.f3d-orbit   { transform-box: fill-box; transform-origin: center; animation: f3d-orbit 22s linear infinite; }
.f3d-rise    { animation: f3d-rise 5s ease-in infinite; }
.f3d-rise-2  { animation: f3d-rise 5s ease-in infinite; animation-delay: 1.7s; }
.f3d-rise-3  { animation: f3d-rise 5s ease-in infinite; animation-delay: 3.3s; }
.f3d-flame   { transform-box: fill-box; transform-origin: top center; animation: f3d-flame .42s ease-in-out infinite; }
