
    /* === HIDE giant featured-image pin hero === */
    article.post .pz-page-hero,
    article.post figure.pz-page-hero,
    article.post .pz-pin-hero,
    article.post figure.pz-pin-hero,
    article.post .pz-clean-post__hero,
    article.post .pz-hero,
    article.post .pz-injected-hero,
    article.post .ast-post-image,
    article.post .ast-single-post-image,
    article.post .post-thumb,
    article.post .post-thumbnail,
    article.post > figure.wp-post-image,
    article.post > .wp-post-image,
    article.post .entry-header .wp-post-image,
    article.post .entry-content > figure.wp-post-image:first-child,
    article.post .entry-content > p:first-child > img.wp-post-image {
        display: none !important;
    }

    /* === Premium typography for template post content === */
    article.post .entry-content {
        max-width: 820px;
        margin: 0 auto;
        padding: 0 16px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, sans-serif;
        color: #1f2937;
        line-height: 1.7;
    }
    article.post .entry-content h1 {
        font-size: clamp(1.8em, 4vw, 2.5em);
        font-weight: 800;
        color: #0f172a;
        margin: 24px 0 16px;
        line-height: 1.15;
        letter-spacing: -0.02em;
    }
    article.post .entry-content h2 {
        font-size: clamp(1.3em, 2.2vw, 1.6em);
        font-weight: 700;
        color: #0f172a;
        margin-top: 36px;
        margin-bottom: 14px;
        letter-spacing: -0.01em;
        padding-left: 14px;
        position: relative;
    }
    article.post .entry-content h2::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 70%;
        background: linear-gradient(180deg, #1a73e8, #ff6b6b);
        border-radius: 4px;
    }
    article.post .entry-content h3 {
        font-size: 1.15em;
        font-weight: 700;
        color: #0f172a;
        margin-top: 22px;
        margin-bottom: 8px;
    }
    article.post .entry-content p, article.post .entry-content li {
        color: #334155;
        font-size: 1.02em;
        line-height: 1.7;
    }
    article.post .entry-content a {
        color: #1a73e8;
        text-decoration: underline;
        text-decoration-thickness: 1.5px;
        text-underline-offset: 2px;
    }
    article.post .entry-content a:hover { color: #1557b5; }
    article.post .entry-content ul, article.post .entry-content ol {
        padding-left: 24px;
    }
    article.post .entry-content li { margin: 6px 0; }
    article.post .entry-content table {
        font-size: 0.96em;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,.05);
    }
    article.post .entry-content table th {
        background: #f8fafc;
        padding: 14px 16px;
        text-align: left;
        font-weight: 700;
        color: #0f172a;
    }
    article.post .entry-content table td {
        padding: 14px 16px;
        border-bottom: 1px solid #f1f5f9;
        color: #475569;
    }
    article.post .entry-content blockquote {
        border-left: 4px solid #1a73e8;
        padding-left: 18px;
        margin: 18px 0;
        font-style: italic;
        color: #475569;
    }

    /* === FAQ accordion styling (for posts that have details elements) === */
    article.post .entry-content details {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 0;
        margin: 8px 0;
        overflow: hidden;
        transition: border-color .2s, box-shadow .2s;
    }
    article.post .entry-content details:hover {
        border-color: rgba(26, 115, 232, .25);
    }
    article.post .entry-content details[open] {
        border-color: rgba(26, 115, 232, .35);
        box-shadow: 0 4px 16px rgba(15, 23, 42, .06);
    }
    article.post .entry-content details summary {
        cursor: pointer;
        padding: 16px 50px 16px 20px;
        font-weight: 600;
        color: #0f172a;
        font-size: 1.02em;
        list-style: none;
        position: relative;
        transition: color .2s;
    }
    article.post .entry-content details summary::-webkit-details-marker { display: none; }
    article.post .entry-content details summary:hover { color: #1a73e8; }
    article.post .entry-content details summary::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.6em;
        font-weight: 300;
        color: #64748b;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
        line-height: 1;
    }
    article.post .entry-content details[open] summary::after {
        transform: translateY(-50%) rotate(45deg);
        color: #1a73e8;
    }
    article.post .entry-content details > p {
        margin: 0;
        padding: 0 20px 18px;
        color: #475569 !important;
        line-height: 1.7;
    }

    @media (max-width: 720px) {
        article.post .entry-content {
            padding: 0 14px;
        }
        article.post .entry-content h2 {
            font-size: 1.25em;
            margin-top: 28px;
        }
    }
    