/* =========================================================
   TOOLSGROVE BLOG SYSTEM
   Scoped to blog/archive/search/single-post surfaces only.
========================================================= */

body.tg-blog-surface {
    /* =====================================================
       TOOLSGROVE BLOG COLOR SYSTEM
       Change colors here to update the complete blog design.
    ====================================================== */
    --tg-green: #059669;
    --tg-green-dark: #047857;
    --tg-green-deep: #065f46;
    --tg-green-light: #10b981;
    --tg-soft: #ecfdf5;
    --tg-soft-2: #d1fae5;
    --tg-soft-3: #f7fcf9;
    --tg-page-bg: #f8fcfa;
    --tg-page-bg-top: #f9fdfa;
    --tg-page-bg-mobile: #fbfefc;
    --tg-white: #ffffff;
    --tg-ink: #0b1f18;
    --tg-code-bg: #10211a;
    --tg-code-text: #e8fff4;
    --tg-text: #2d4138;
    --tg-article-text: #32463d;
    --tg-muted: #62736a;
    --tg-muted-light: #87968f;
    --tg-border: rgba(6, 95, 70, .10);
    --tg-border-green: rgba(5, 150, 105, .17);
    --tg-green-03: rgba(5, 150, 105, .035);
    --tg-green-05: rgba(5, 150, 105, .05);
    --tg-green-055: rgba(16, 185, 129, .055);
    --tg-green-075: rgba(16, 185, 129, .075);
    --tg-green-11: rgba(5, 150, 105, .11);
    --tg-green-15: rgba(16, 185, 129, .15);
    --tg-green-18: rgba(5, 150, 105, .18);
    --tg-green-19: rgba(5, 150, 105, .19);
    --tg-green-26: rgba(5, 150, 105, .26);
    --tg-shadow-04: rgba(6, 95, 70, .04);
    --tg-shadow-045: rgba(6, 95, 70, .045);
    --tg-shadow-05: rgba(6, 95, 70, .05);
    --tg-shadow-055: rgba(6, 95, 70, .055);
    --tg-shadow-08: rgba(6, 95, 70, .08);
    --tg-white-82: rgba(255, 255, 255, .82);
    --tg-white-88: rgba(255, 255, 255, .88);
    --tg-white-90: rgba(255, 255, 255, .90);
    --tg-white-92: rgba(255, 255, 255, .92);
    --tg-white-94: rgba(255, 255, 255, .94);
    --tg-white-95: rgba(255, 255, 255, .95);
    --tg-soft-alpha-72: rgba(236, 253, 245, .72);
    --tg-soft-alpha-78: rgba(236, 253, 245, .78);
    --tg-mask-dark: #000000;
    --tg-mask-72: rgba(0, 0, 0, .72);
    --tg-ease: cubic-bezier(.22, 1, .36, 1);
    background: var(--tg-page-bg);
}

body.tg-blog-surface #page,
body.tg-blog-surface #primary,
body.tg-blog-surface .site-content,
body.tg-blog-surface .content-area {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body.tg-blog-surface .site-content {
    display: block;
}

body.tg-blog-surface .widget-area,
body.tg-blog-surface #right-sidebar,
body.tg-blog-surface #left-sidebar {
    display: none;
}

body.tg-blog-surface .tg-blog,
body.tg-blog-surface .tg-blog * {
    box-sizing: border-box;
}

body.tg-blog-surface .tg-blog {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 70vh;
    background:
        radial-gradient(circle at 8% 5%, var(--tg-green-075), transparent 25rem),
        radial-gradient(circle at 94% 26%, var(--tg-green-05), transparent 24rem),
        linear-gradient(180deg, var(--tg-page-bg-top) 0%, var(--tg-white) 44%, var(--tg-page-bg) 100%);
    color: var(--tg-text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.tg-blog-surface .tg-blog a {
    text-decoration: none;
}

body.tg-blog-surface .tg-blog-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(var(--tg-green-03) 1px, transparent 1px),
        linear-gradient(90deg, var(--tg-green-03) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: linear-gradient(to bottom, var(--tg-mask-dark) 0%, var(--tg-mask-72) 45%, transparent 92%);
    mask-image: linear-gradient(to bottom, var(--tg-mask-dark) 0%, var(--tg-mask-72) 45%, transparent 92%);
}

body.tg-blog-surface .tg-blog-container {
    width: min(100% - 40px, 1220px);
    margin-inline: auto;
}

body.tg-blog-surface .tg-blog h1,
body.tg-blog-surface .tg-blog h2,
body.tg-blog-surface .tg-blog h3,
body.tg-blog-surface .tg-blog h4,
body.tg-blog-surface .tg-blog h5,
body.tg-blog-surface .tg-blog h6 {
    font-family: "Sora", "Inter", sans-serif;
    color: var(--tg-ink);
}

/* Hero */
body.tg-blog-surface .tg-blog-hero {
    padding: 88px 0 74px;
    text-align: center;
}

body.tg-blog-surface .tg-blog-hero-inner {
    max-width: 900px;
}

body.tg-blog-surface .tg-blog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 39px;
    padding: 6px 14px 6px 7px;
    border: 1px solid var(--tg-border);
    border-radius: 999px;
    background: var(--tg-white-90);
    color: var(--tg-green-deep);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 8px 22px var(--tg-shadow-05);
    backdrop-filter: blur(12px);
}

body.tg-blog-surface .tg-blog-kicker-icon {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tg-green-deep), var(--tg-green-light));
    color: var(--tg-white);
    box-shadow: 0 6px 14px var(--tg-green-18);
}

body.tg-blog-surface .tg-blog-hero h1 {
    max-width: 860px;
    margin: 18px auto 0;
    font-size: clamp(2.6rem, 5.5vw, 4.35rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.052em;
}

body.tg-blog-surface .tg-blog-hero p {
    max-width: 660px;
    margin: 20px auto 0;
    color: var(--tg-muted);
    font-size: 15px;
    line-height: 1.75;
}

body.tg-blog-surface .tg-blog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

body.tg-blog-surface .tg-blog-button {
    display: inline-flex;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
    transition: transform .22s var(--tg-ease), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

body.tg-blog-surface .tg-blog-button:hover {
    transform: translateY(-2px);
}

body.tg-blog-surface .tg-blog-button-primary {
    border: 1px solid var(--tg-green-dark);
    background: linear-gradient(135deg, var(--tg-green-deep), var(--tg-green));
    color: var(--tg-white);
    box-shadow: 0 11px 23px var(--tg-green-19);
}

body.tg-blog-surface .tg-blog-button-primary:hover {
    color: var(--tg-white);
    box-shadow: 0 16px 29px var(--tg-green-26);
}

body.tg-blog-surface .tg-blog-button-secondary {
    border: 1px solid var(--tg-border);
    background: var(--tg-white-90);
    color: var(--tg-green-deep);
}

body.tg-blog-surface .tg-blog-button-secondary:hover {
    background: var(--tg-soft);
    color: var(--tg-green-deep);
}

/* Shared section */
body.tg-blog-surface .tg-blog-section {
    padding: 0 0 86px;
}

body.tg-blog-surface .tg-blog-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 26px;
}

body.tg-blog-surface .tg-blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--tg-green-deep);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

body.tg-blog-surface .tg-blog-section-head h2 {
    margin: 8px 0 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.04em;
}

/* Cards */
body.tg-blog-surface .tg-blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

body.tg-blog-surface .tg-blog-card {
    overflow: hidden;
    border: 1px solid var(--tg-border);
    border-radius: 18px;
    background: var(--tg-white-92);
    box-shadow: 0 9px 26px var(--tg-shadow-04);
    transition: transform .25s var(--tg-ease), border-color .25s ease, box-shadow .25s ease;
}

body.tg-blog-surface .tg-blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--tg-border-green);
    box-shadow: 0 18px 38px var(--tg-shadow-08);
}

body.tg-blog-surface .tg-blog-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(145deg, var(--tg-soft), var(--tg-white));
}

body.tg-blog-surface .tg-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s var(--tg-ease);
}

body.tg-blog-surface .tg-blog-card:hover .tg-blog-card-image img {
    transform: scale(1.035);
}

body.tg-blog-surface .tg-blog-card-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background-image:
        linear-gradient(var(--tg-green-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--tg-green-05) 1px, transparent 1px),
        radial-gradient(circle at center, var(--tg-green-15), transparent 55%);
    background-size: 28px 28px, 28px 28px, auto;
}

body.tg-blog-surface .tg-blog-card-placeholder span {
    font-family: "Sora", sans-serif;
    color: var(--tg-green-deep);
    font-weight: 800;
}

body.tg-blog-surface .tg-blog-card-body {
    padding: 17px;
}

body.tg-blog-surface .tg-blog-card-topline,
body.tg-blog-surface .tg-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

body.tg-blog-surface .tg-blog-card-topline {
    color: var(--tg-muted-light);
    font-size: 8.5px;
    font-weight: 600;
}

body.tg-blog-surface .tg-blog-card-category {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 5px 9px;
    border: 1px solid var(--tg-green-11);
    border-radius: 999px;
    background: var(--tg-soft);
    color: var(--tg-green-dark);
    font-size: 8px;
    font-weight: 700;
}

body.tg-blog-surface .tg-blog-card-title {
    margin: 14px 0 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.025em;
}

body.tg-blog-surface .tg-blog-card-title a {
    color: var(--tg-ink);
}

body.tg-blog-surface .tg-blog-card-title a:hover {
    color: var(--tg-green-deep);
}

body.tg-blog-surface .tg-blog-card-excerpt {
    margin: 9px 0 0;
    color: var(--tg-muted);
    font-size: 11.5px;
    line-height: 1.65;
}

body.tg-blog-surface .tg-blog-card-footer {
    margin-top: 16px;
    padding-top: 13px;
    border-top: 1px solid var(--tg-border);
    color: var(--tg-muted-light);
    font-size: 8.5px;
    font-weight: 600;
}

body.tg-blog-surface .tg-blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--tg-green-deep);
    font-size: 9px;
    font-weight: 700;
}

/* Pagination */
body.tg-blog-surface .tg-blog-pagination {
    margin-top: 34px;
}

body.tg-blog-surface .tg-blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

body.tg-blog-surface .tg-blog-pagination .page-numbers {
    display: inline-flex;
    min-width: 39px;
    min-height: 39px;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border: 1px solid var(--tg-border);
    border-radius: 10px;
    background: var(--tg-white);
    color: var(--tg-text);
    font-size: 10px;
    font-weight: 700;
}

body.tg-blog-surface .tg-blog-pagination .page-numbers.current,
body.tg-blog-surface .tg-blog-pagination .page-numbers:hover {
    border-color: var(--tg-green-dark);
    background: linear-gradient(135deg, var(--tg-green-deep), var(--tg-green));
    color: var(--tg-white);
}

/* Topics */
body.tg-blog-surface .tg-blog-topics {
    padding: 0 0 92px;
}

body.tg-blog-surface .tg-blog-topics-panel {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--tg-border-green);
    border-radius: 22px;
    background: linear-gradient(145deg, var(--tg-white-94), var(--tg-soft-alpha-72));
    box-shadow: 0 16px 42px var(--tg-shadow-055);
}

body.tg-blog-surface .tg-blog-topic-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 8px;
}

body.tg-blog-surface .tg-blog-topic-list a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--tg-border);
    border-radius: 11px;
    background: var(--tg-white-82);
    color: var(--tg-text);
    font-size: 10px;
    font-weight: 700;
    transition: transform .2s var(--tg-ease), border-color .2s ease, background .2s ease;
}

body.tg-blog-surface .tg-blog-topic-list a:hover {
    transform: translateY(-2px);
    border-color: var(--tg-border-green);
    background: var(--tg-white);
    color: var(--tg-green-deep);
}

body.tg-blog-surface .tg-blog-topic-list small {
    display: grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 7px;
    background: var(--tg-soft);
    color: var(--tg-green-dark);
    font-size: 8px;
}

/* Archive hero */
body.tg-blog-surface .tg-blog-archive-hero {
    padding: 72px 0 54px;
    text-align: center;
}

body.tg-blog-surface .tg-blog-archive-hero-inner {
    max-width: 780px;
}

body.tg-blog-surface .tg-blog-archive-hero h1 {
    margin: 10px 0 0;
    font-size: clamp(2.25rem, 4.5vw, 3.65rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.048em;
}

body.tg-blog-surface .tg-blog-archive-hero p {
    max-width: 620px;
    margin: 16px auto 0;
    color: var(--tg-muted);
    font-size: 13px;
    line-height: 1.7;
}

body.tg-blog-surface .tg-blog-archive-section {
    padding-bottom: 92px;
}

/* Empty */
body.tg-blog-surface .tg-blog-empty {
    max-width: 650px;
    margin: 20px auto 0;
    padding: 42px 24px;
    border: 1px solid var(--tg-border);
    border-radius: 20px;
    background: var(--tg-white-88);
    text-align: center;
}

body.tg-blog-surface .tg-blog-empty-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    place-items: center;
    border-radius: 14px;
    background: var(--tg-soft);
    color: var(--tg-green-deep);
}

body.tg-blog-surface .tg-blog-empty h2 {
    margin: 17px 0 0;
    font-size: 22px;
}

body.tg-blog-surface .tg-blog-empty p {
    margin: 8px 0 20px;
    color: var(--tg-muted);
}

/* Single article */
body.tg-single-post .tg-article-header {
    padding: 66px 0 44px;
    text-align: center;
}

body.tg-single-post .tg-article-header-inner {
    max-width: 930px;
}

body.tg-single-post .tg-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-bottom: 20px;
    color: var(--tg-muted-light);
    font-size: 9px;
    font-weight: 600;
}

body.tg-single-post .tg-breadcrumbs a {
    color: var(--tg-muted);
}

body.tg-single-post .tg-breadcrumbs a:hover {
    color: var(--tg-green-deep);
}

body.tg-single-post .tg-article-category {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid var(--tg-border-green);
    border-radius: 999px;
    background: var(--tg-soft);
    color: var(--tg-green-deep);
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

body.tg-single-post .tg-article-header h1 {
    max-width: 900px;
    margin: 16px auto 0;
    font-size: clamp(2.45rem, 5vw, 4.3rem);
    font-weight: 800;
    line-height: 1.035;
    letter-spacing: -.052em;
}

body.tg-single-post .tg-article-deck {
    max-width: 710px;
    margin: 19px auto 0;
    color: var(--tg-muted);
    font-size: 14px;
    line-height: 1.72;
}

body.tg-single-post .tg-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px 16px;
    margin-top: 24px;
    color: var(--tg-muted-light);
    font-size: 9px;
    font-weight: 600;
}

body.tg-single-post .tg-article-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tg-text);
}

body.tg-single-post .tg-author-avatar,
body.tg-single-post .tg-author-box-avatar img {
    border-radius: 50%;
}

body.tg-single-post .tg-article-author span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

body.tg-single-post .tg-article-author strong {
    color: var(--tg-ink);
    font-size: 9.5px;
}

body.tg-single-post .tg-article-author small {
    margin-top: 2px;
    color: var(--tg-muted-light);
    font-size: 7px;
}

body.tg-single-post .tg-article-featured-wrap {
    max-width: 1100px;
}

body.tg-single-post .tg-article-featured {
    overflow: hidden;
    aspect-ratio: 16 / 8.6;
    margin: 0;
    border: 1px solid var(--tg-border);
    border-radius: 22px;
    background: var(--tg-soft);
    box-shadow: 0 20px 50px var(--tg-shadow-08);
}

body.tg-single-post .tg-article-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.tg-single-post .tg-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 800px) minmax(250px, 300px);
    justify-content: center;
    gap: 40px;
    padding-top: 50px;
    padding-bottom: 94px;
}

body.tg-single-post .tg-article-main {
    min-width: 0;
}

body.tg-single-post .tg-article-content {
    padding: 34px clamp(24px, 4vw, 46px);
    border: 1px solid var(--tg-border);
    border-radius: 20px;
    background: var(--tg-white-94);
    box-shadow: 0 12px 32px var(--tg-shadow-045);
    color: var(--tg-article-text);
    font-size: 16px;
    line-height: 1.82;
}

body.tg-single-post .tg-article-content > *:first-child {
    margin-top: 0;
}

body.tg-single-post .tg-article-content > *:last-child {
    margin-bottom: 0;
}

body.tg-single-post .tg-article-content h2 {
    margin: 2.15em 0 .75em;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.035em;
}

body.tg-single-post .tg-article-content h3 {
    margin: 1.8em 0 .65em;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.025em;
}

body.tg-single-post .tg-article-content h4 {
    margin: 1.6em 0 .6em;
    font-size: 17px;
    font-weight: 700;
}

body.tg-single-post .tg-article-content p,
body.tg-single-post .tg-article-content ul,
body.tg-single-post .tg-article-content ol,
body.tg-single-post .tg-article-content blockquote,
body.tg-single-post .tg-article-content table,
body.tg-single-post .tg-article-content figure {
    margin-top: 0;
    margin-bottom: 1.35em;
}

body.tg-single-post .tg-article-content a {
    color: var(--tg-green-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

body.tg-single-post .tg-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

body.tg-single-post .tg-article-content blockquote {
    padding: 18px 20px;
    border-left: 4px solid var(--tg-green);
    border-radius: 0 12px 12px 0;
    background: var(--tg-soft-3);
    color: var(--tg-text);
}

body.tg-single-post .tg-article-content pre,
body.tg-single-post .tg-article-content code {
    max-width: 100%;
}

body.tg-single-post .tg-article-content pre {
    overflow-x: auto;
    padding: 18px;
    border-radius: 12px;
    background: var(--tg-code-bg);
    color: var(--tg-code-text);
}

body.tg-single-post .tg-article-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--tg-border);
    border-radius: 12px;
}

body.tg-single-post .tg-article-content th,
body.tg-single-post .tg-article-content td {
    padding: 11px 12px;
    border: 1px solid var(--tg-border);
    text-align: left;
}

body.tg-single-post .tg-article-content th {
    background: var(--tg-soft);
    color: var(--tg-ink);
}

body.tg-single-post .tg-article-sidebar {
    min-width: 0;
}

body.tg-single-post .tg-sidebar-sticky {
    position: sticky;
    top: 92px;
}

body.tg-single-post .tg-sidebar-card {
    padding: 22px;
    border: 1px solid var(--tg-border-green);
    border-radius: 18px;
    background: linear-gradient(145deg, var(--tg-white-95), var(--tg-soft-alpha-78));
    box-shadow: 0 14px 34px var(--tg-shadow-055);
}

body.tg-single-post .tg-sidebar-card h2 {
    margin: 10px 0 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.03em;
}

body.tg-single-post .tg-sidebar-card p {
    margin: 10px 0 0;
    color: var(--tg-muted);
    font-size: 11px;
    line-height: 1.65;
}

body.tg-single-post .tg-sidebar-button {
    width: 100%;
    margin-top: 16px;
}

body.tg-single-post .tg-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
}

body.tg-single-post .tg-article-tags-label {
    color: var(--tg-muted-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

body.tg-single-post .tg-article-tags a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 9px;
    border: 1px solid var(--tg-border);
    border-radius: 999px;
    background: var(--tg-white);
    color: var(--tg-green-deep);
    font-size: 8.5px;
    font-weight: 700;
}

body.tg-single-post .tg-author-box {
    display: grid;
    grid-template-columns: 72px minmax(0,1fr);
    gap: 17px;
    margin-top: 30px;
    padding: 22px;
    border: 1px solid var(--tg-border);
    border-radius: 18px;
    background: var(--tg-white-90);
}

body.tg-single-post .tg-author-box h2 {
    margin: 7px 0 0;
    font-size: 18px;
    font-weight: 800;
}

body.tg-single-post .tg-author-box p {
    margin: 7px 0 0;
    color: var(--tg-muted);
    font-size: 11px;
    line-height: 1.65;
}

body.tg-single-post .tg-related-posts {
    margin-top: 54px;
}

body.tg-single-post .tg-related-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
}

body.tg-single-post .tg-related-grid .tg-blog-card-body {
    padding: 14px;
}

body.tg-single-post .tg-related-grid .tg-blog-card-title {
    font-size: 13px;
}

body.tg-single-post .tg-related-grid .tg-blog-card-excerpt {
    display: none;
}

body.tg-single-post .tg-comments-wrap {
    margin-top: 42px;
    padding: 24px;
    border: 1px solid var(--tg-border);
    border-radius: 18px;
    background: var(--tg-white);
}

body.tg-single-post .tg-comments-wrap #reply-title,
body.tg-single-post .tg-comments-wrap .comments-title {
    font-family: "Sora", sans-serif;
    color: var(--tg-ink);
}

/* Responsive */
@media (max-width: 1050px) {
    body.tg-blog-surface .tg-blog-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.tg-blog-surface .tg-blog-topic-list {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    body.tg-single-post .tg-article-layout {
        grid-template-columns: minmax(0, 820px);
    }

    body.tg-single-post .tg-article-sidebar {
        display: none;
    }
}

@media (max-width: 760px) {
    body.tg-blog-surface .tg-blog {
        background:
            radial-gradient(circle at 50% 0%, var(--tg-green-055), transparent 17rem),
            linear-gradient(180deg, var(--tg-page-bg-mobile) 0%, var(--tg-white) 48%, var(--tg-page-bg) 100%);
    }

    body.tg-blog-surface .tg-blog-grid-bg {
        background-size: 32px 32px;
        background-image:
            linear-gradient(var(--tg-green-05) 1px, transparent 1px),
            linear-gradient(90deg, var(--tg-green-05) 1px, transparent 1px);
    }

    body.tg-blog-surface .tg-blog-container {
        width: min(100% - 28px, 1220px);
    }

    body.tg-blog-surface .tg-blog-hero {
        padding: 60px 0 55px;
    }

    body.tg-blog-surface .tg-blog-hero h1 {
        font-size: clamp(2.25rem, 10.5vw, 3.1rem);
    }

    body.tg-blog-surface .tg-blog-hero p {
        font-size: 13px;
        line-height: 1.7;
    }

    body.tg-blog-surface .tg-blog-hero-actions {
        flex-direction: column;
        width: min(100%, 420px);
        margin-inline: auto;
    }

    body.tg-blog-surface .tg-blog-button {
        width: 100%;
        min-height: 50px;
    }

    body.tg-blog-surface .tg-blog-section,
    body.tg-blog-surface .tg-blog-topics,
    body.tg-blog-surface .tg-blog-archive-section {
        padding-bottom: 66px;
    }

    body.tg-blog-surface .tg-blog-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.tg-blog-surface .tg-blog-card {
        border-radius: 16px;
    }

    body.tg-blog-surface .tg-blog-card-body {
        padding: 16px;
    }

    body.tg-blog-surface .tg-blog-card-title {
        font-size: 15px;
    }

    body.tg-blog-surface .tg-blog-card-excerpt {
        font-size: 11px;
    }

    body.tg-blog-surface .tg-blog-section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 20px;
    }

    body.tg-blog-surface .tg-blog-topic-list {
        grid-template-columns: 1fr;
    }

    body.tg-blog-surface .tg-blog-archive-hero {
        padding: 54px 0 44px;
    }

    body.tg-blog-surface .tg-blog-archive-hero h1 {
        font-size: clamp(2.05rem, 9vw, 2.85rem);
    }

    body.tg-single-post .tg-article-header {
        padding: 50px 0 36px;
    }

    body.tg-single-post .tg-article-header h1 {
        font-size: clamp(2.1rem, 9.5vw, 3rem);
        line-height: 1.06;
    }

    body.tg-single-post .tg-article-deck {
        font-size: 12.5px;
    }

    body.tg-single-post .tg-article-meta {
        gap: 8px 12px;
    }

    body.tg-single-post .tg-article-featured {
        border-radius: 17px;
    }

    body.tg-single-post .tg-article-layout {
        padding-top: 28px;
        padding-bottom: 68px;
    }

    body.tg-single-post .tg-article-content {
        padding: 24px 18px;
        border-radius: 17px;
        font-size: 15px;
        line-height: 1.8;
    }

    body.tg-single-post .tg-article-content h2 {
        font-size: 24px;
    }

    body.tg-single-post .tg-article-content h3 {
        font-size: 19px;
    }

    body.tg-single-post .tg-author-box {
        grid-template-columns: 58px minmax(0,1fr);
        padding: 18px;
    }

    body.tg-single-post .tg-author-box-avatar img {
        width: 58px;
        height: 58px;
    }

    body.tg-single-post .tg-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    body.tg-blog-surface .tg-blog-container {
        width: min(100% - 24px, 1220px);
    }

    body.tg-blog-surface .tg-blog-grid-bg {
        background-size: 29px 29px;
    }

    body.tg-blog-surface .tg-blog-hero {
        padding: 50px 0 48px;
    }

    body.tg-single-post .tg-breadcrumbs {
        font-size: 8px;
    }

    body.tg-single-post .tg-article-meta {
        font-size: 8px;
    }

    body.tg-single-post .tg-article-content {
        padding: 21px 16px;
        font-size: 14.5px;
    }

    body.tg-single-post .tg-author-box {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.tg-blog-surface .tg-blog *,
    body.tg-blog-surface .tg-blog *::before,
    body.tg-blog-surface .tg-blog *::after {
        transition-duration: .01ms !important;
        animation: none !important;
    }
}


/* =========================================================
   BLOG ENHANCEMENTS — TOOLS, BYLINES & AUTHOR PROFILE
========================================================= */
body.tg-blog-surface .tg-blog-card-byline {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
}

body.tg-blog-surface .tg-blog-card-avatar {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border: 2px solid var(--tg-white);
    border-radius: 50%;
    box-shadow: 0 3px 10px var(--tg-shadow-05);
}

body.tg-blog-surface .tg-blog-card-byline > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

body.tg-blog-surface .tg-blog-card-byline strong {
    overflow: hidden;
    color: var(--tg-text);
    font-size: 8.5px;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
}

body.tg-blog-surface .tg-blog-card-byline small {
    margin-top: 2px;
    color: var(--tg-muted-light);
    font-size: 7px;
    line-height: 1.2;
}

body.tg-blog-surface .tg-blog-tools {
    position: relative;
    overflow: hidden;
    margin: 0 0 86px;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--tg-border-green);
    border-radius: 22px;
    background: linear-gradient(145deg, var(--tg-white-95), var(--tg-soft-alpha-78));
    box-shadow: 0 16px 42px var(--tg-shadow-055);
}

body.tg-blog-surface .tg-blog-tools::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--tg-green-075);
    pointer-events: none;
}

body.tg-blog-surface .tg-blog-tools-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 20px;
}

body.tg-blog-surface .tg-blog-tools-head h2 {
    margin: 7px 0 0;
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.035em;
}

body.tg-blog-surface .tg-blog-tools-head p {
    max-width: 580px;
    margin: 7px 0 0;
    color: var(--tg-muted);
    font-size: 10.5px;
    line-height: 1.6;
}

body.tg-blog-surface .tg-blog-tools-all {
    display: inline-flex;
    min-height: 40px;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border: 1px solid var(--tg-border-green);
    border-radius: 10px;
    background: var(--tg-white-82);
    color: var(--tg-green-deep);
    font-size: 9px;
    font-weight: 700;
}

body.tg-blog-surface .tg-blog-tools-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 9px;
}

body.tg-blog-surface .tg-blog-tool-card {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr) 22px;
    min-width: 0;
    min-height: 70px;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid var(--tg-border);
    border-radius: 13px;
    background: var(--tg-white-90);
    color: var(--tg-text);
    transition: transform .22s var(--tg-ease), border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

body.tg-blog-surface .tg-blog-tool-card:hover {
    transform: translateY(-3px);
    border-color: var(--tg-border-green);
    background: var(--tg-white);
    box-shadow: 0 11px 24px var(--tg-shadow-055);
    color: var(--tg-green-deep);
}

body.tg-blog-surface .tg-blog-tool-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--tg-soft), var(--tg-soft-2));
    color: var(--tg-green-deep);
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

body.tg-blog-surface .tg-blog-tool-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

body.tg-blog-surface .tg-blog-tool-copy strong {
    overflow: hidden;
    color: var(--tg-ink);
    font-size: 9.5px;
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
}

body.tg-blog-surface .tg-blog-tool-copy small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 4px;
    color: var(--tg-muted-light);
    font-size: 7.5px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

body.tg-blog-surface .tg-blog-tool-arrow {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 7px;
    background: var(--tg-soft);
    color: var(--tg-green-deep);
    font-size: 10px;
}

body.tg-single-post .tg-article-meta-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-height: 42px;
    justify-content: center;
    padding-left: 15px;
    border-left: 1px solid var(--tg-border);
}

body.tg-single-post .tg-article-meta-detail strong {
    color: var(--tg-muted-light);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

body.tg-single-post .tg-article-meta-detail span,
body.tg-single-post .tg-article-meta-detail time {
    color: var(--tg-text);
    font-size: 8.5px;
    font-weight: 650;
}

body.tg-single-post .tg-author-box {
    grid-template-columns: 88px minmax(0,1fr);
    gap: 20px;
    margin-top: 31px;
    padding: 24px;
    border-color: var(--tg-border-green);
    background: linear-gradient(145deg, var(--tg-white-95), var(--tg-soft-alpha-72));
    box-shadow: 0 14px 34px var(--tg-shadow-055);
}

body.tg-single-post .tg-author-box-avatar {
    position: relative;
}

body.tg-single-post .tg-author-box-avatar::after {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 15px;
    height: 15px;
    border: 3px solid var(--tg-white);
    border-radius: 50%;
    background: var(--tg-green-light);
}

body.tg-single-post .tg-author-box-image {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border: 4px solid var(--tg-white);
    border-radius: 18px;
    box-shadow: 0 9px 22px var(--tg-shadow-08);
}

body.tg-single-post .tg-author-box-content h2 {
    margin: 7px 0 0;
    font-size: 20px;
}

body.tg-single-post .tg-author-box-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 13px;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid var(--tg-border);
    color: var(--tg-muted-light);
    font-size: 8.5px;
    font-weight: 650;
}

body.tg-single-post .tg-author-box-meta a {
    color: var(--tg-green-deep);
    font-weight: 700;
}

@media (max-width: 1050px) {
    body.tg-blog-surface .tg-blog-tools-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 760px) {
    body.tg-blog-surface .tg-blog-tools {
        margin-bottom: 66px;
        padding: 20px;
        border-radius: 18px;
    }

    body.tg-blog-surface .tg-blog-tools-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    body.tg-blog-surface .tg-blog-tools-all {
        width: 100%;
        justify-content: center;
    }

    body.tg-single-post .tg-article-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
        width: min(100%, 470px);
        margin-inline: auto;
        margin-top: 22px;
        padding: 10px;
        border: 1px solid var(--tg-border);
        border-radius: 14px;
        background: var(--tg-white-82);
    }

    body.tg-single-post .tg-article-author {
        grid-column: 1 / -1;
        padding: 4px 5px 10px;
        border-bottom: 1px solid var(--tg-border);
    }

    body.tg-single-post .tg-article-meta-detail {
        min-height: 38px;
        padding: 3px 6px;
        border-left: 0;
    }

    body.tg-single-post .tg-author-box {
        grid-template-columns: 70px minmax(0,1fr);
        gap: 15px;
        padding: 19px;
    }

    body.tg-single-post .tg-author-box-image {
        width: 70px;
        height: 70px;
        border-radius: 15px;
    }
}

@media (max-width: 500px) {
    body.tg-blog-surface .tg-blog-tools-grid {
        grid-template-columns: 1fr;
    }

    body.tg-single-post .tg-author-box {
        grid-template-columns: 1fr;
    }

    body.tg-single-post .tg-author-box-avatar {
        width: max-content;
    }
}

/* =========================================================
   TOOLSGROVE V3 POLISH
   Typography, content headings, sidebar tools and mobile UX.
   All colors continue to use the root variables above.
========================================================= */

body.tg-blog-surface .tg-blog-kicker { font-size: 12px; }
body.tg-blog-surface .tg-blog-hero h1 {
    max-width: 820px;
    font-size: clamp(2.45rem, 4.8vw, 3.65rem);
    line-height: 1.06;
}
body.tg-blog-surface .tg-blog-hero p { font-size: 15.5px; line-height: 1.72; }
body.tg-blog-surface .tg-blog-button { font-size: 12.5px; }
body.tg-blog-surface .tg-blog-eyebrow { font-size: 10px; }
body.tg-blog-surface .tg-blog-section-head h2 { font-size: clamp(1.75rem, 2.65vw, 2.3rem); }
body.tg-blog-surface .tg-blog-card-title { font-size: 18px; line-height: 1.34; }
body.tg-blog-surface .tg-blog-card-excerpt { font-size: 13px; line-height: 1.65; }
body.tg-blog-surface .tg-blog-card-topline { font-size: 10px; }
body.tg-blog-surface .tg-blog-card-category { font-size: 9px; }
body.tg-blog-surface .tg-blog-card-footer,
body.tg-blog-surface .tg-blog-card-read { font-size: 10px; }
body.tg-blog-surface .tg-blog-card-byline strong { font-size: 10.5px; }
body.tg-blog-surface .tg-blog-card-byline small { font-size: 9px; }

body.tg-single-post .tg-article-header { padding: 60px 0 42px; }
body.tg-single-post .tg-breadcrumbs { font-size: 10.5px; }
body.tg-single-post .tg-article-category { font-size: 10px; }
body.tg-single-post .tg-article-header h1 {
    max-width: 880px;
    margin-top: 17px;
    font-size: clamp(2.25rem, 4.5vw, 3.45rem);
    line-height: 1.075;
}
body.tg-single-post .tg-article-deck {
    max-width: 720px;
    font-size: 15px;
    line-height: 1.7;
}

body.tg-single-post .tg-article-meta { gap: 10px 18px; font-size: 10.5px; }
body.tg-single-post .tg-article-author strong { font-size: 11px; }
body.tg-single-post .tg-article-author small { font-size: 8.5px; }
body.tg-single-post .tg-article-meta-detail strong { font-size: 8px; }
body.tg-single-post .tg-article-meta-detail span,
body.tg-single-post .tg-article-meta-detail time { font-size: 10px; }

body.tg-single-post .tg-article-layout {
    grid-template-columns: minmax(0, 790px) minmax(270px, 310px);
    gap: 34px;
}
body.tg-single-post .tg-article-content {
    padding: 36px clamp(26px, 4vw, 48px);
    font-size: 17px;
    line-height: 1.82;
}

/* Styled post headings with a decorative pre-line */
body.tg-single-post .tg-article-content h2,
body.tg-single-post .tg-article-content h3 {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 11px;
}
body.tg-single-post .tg-article-content h2::before,
body.tg-single-post .tg-article-content h3::before {
    content: "";
    display: block;
    width: 28px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tg-green-deep), var(--tg-green-light));
    box-shadow: 0 0 0 5px var(--tg-green-05);
}
body.tg-single-post .tg-article-content h2 {
    margin: 2.05em 0 .72em;
    font-size: 27px;
    line-height: 1.25;
}
body.tg-single-post .tg-article-content h3 {
    margin: 1.75em 0 .62em;
    font-size: 22px;
    line-height: 1.3;
}
body.tg-single-post .tg-article-content h3::before {
    width: 20px;
    height: 3px;
}
body.tg-single-post .tg-article-content h4 { font-size: 18px; line-height: 1.35; }

/* Sidebar */
body.tg-single-post .tg-sidebar-sticky { display: grid; gap: 14px; }
body.tg-single-post .tg-sidebar-site-card { padding: 20px; }
body.tg-single-post .tg-sidebar-card h2 { font-size: 18px; line-height: 1.3; }
body.tg-single-post .tg-sidebar-card p { font-size: 12.5px; line-height: 1.65; }
body.tg-single-post .tg-sidebar-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--tg-green-deep);
    font-size: 11px;
    font-weight: 700;
}

/* Tools in blog sidebar */
body.tg-single-post .tg-sidebar-tools {
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--tg-border-green);
    border-radius: 18px;
    background: linear-gradient(145deg, var(--tg-white-95), var(--tg-soft-alpha-72));
    box-shadow: 0 14px 34px var(--tg-shadow-055);
}
body.tg-single-post .tg-sidebar-tools-head h2 {
    margin: 7px 0 0;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -.025em;
}
body.tg-single-post .tg-sidebar-tools-head p {
    margin: 7px 0 0;
    color: var(--tg-muted);
    font-size: 11.5px;
    line-height: 1.55;
}
body.tg-single-post .tg-sidebar-tools-list {
    display: grid;
    gap: 7px;
    margin-top: 15px;
}
body.tg-single-post .tg-sidebar-tool {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    padding: 8px;
    border: 1px solid var(--tg-border);
    border-radius: 11px;
    background: var(--tg-white-82);
    color: var(--tg-text);
    transition: transform .2s var(--tg-ease), border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
body.tg-single-post .tg-sidebar-tool:hover {
    transform: translateY(-2px);
    border-color: var(--tg-border-green);
    background: var(--tg-white);
    color: var(--tg-green-deep);
    box-shadow: 0 9px 20px var(--tg-shadow-05);
}
body.tg-single-post .tg-sidebar-tool-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--tg-soft), var(--tg-soft-2));
    color: var(--tg-green-deep);
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 800;
}
body.tg-single-post .tg-sidebar-tool-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}
body.tg-single-post .tg-sidebar-tool-copy strong {
    overflow: hidden;
    color: var(--tg-ink);
    font-size: 10.5px;
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
}
body.tg-single-post .tg-sidebar-tool-copy small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 3px;
    color: var(--tg-muted-light);
    font-size: 8.5px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
body.tg-single-post .tg-sidebar-tool-arrow {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 7px;
    background: var(--tg-soft);
    color: var(--tg-green-deep);
    font-size: 10px;
}
body.tg-single-post .tg-sidebar-tools-all {
    display: flex;
    min-height: 39px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 11px;
    border: 1px solid var(--tg-border-green);
    border-radius: 10px;
    background: var(--tg-soft);
    color: var(--tg-green-deep);
    font-size: 10.5px;
    font-weight: 700;
}

/* Author box */
body.tg-single-post .tg-author-box-content h2 { font-size: 19px; }
body.tg-single-post .tg-author-box p { font-size: 12.5px; line-height: 1.65; }
body.tg-single-post .tg-author-box-meta { font-size: 9.5px; }
body.tg-single-post .tg-related-posts .tg-blog-section-head h2 { font-size: 27px; }

/* Comments are intentionally not rendered for standard blog posts. */
body.tg-single-post .comments-area,
body.tg-single-post .tg-comments-wrap { display: none !important; }

@media (max-width: 1050px) {
    body.tg-blog-surface .tg-blog-hero { padding: 72px 0 62px; }
    body.tg-blog-surface .tg-blog-hero h1 { font-size: clamp(2.35rem, 5.8vw, 3.45rem); }
    body.tg-single-post .tg-article-layout {
        grid-template-columns: minmax(0, 760px);
        gap: 28px;
    }
    body.tg-single-post .tg-article-sidebar {
        display: block;
        width: min(100%, 760px);
        margin-inline: auto;
    }
    body.tg-single-post .tg-sidebar-sticky {
        position: static;
        grid-template-columns: minmax(0, 1.45fr) minmax(240px, .75fr);
        align-items: start;
    }
}

@media (max-width: 760px) {
    body.tg-blog-surface .tg-blog {
        background:
            radial-gradient(circle at 50% 0%, var(--tg-green-055), transparent 17rem),
            linear-gradient(180deg, var(--tg-page-bg-mobile) 0%, var(--tg-white) 48%, var(--tg-page-bg) 100%);
    }
    body.tg-blog-surface .tg-blog-grid-bg {
        background-image:
            linear-gradient(var(--tg-green-05) 1px, transparent 1px),
            linear-gradient(90deg, var(--tg-green-05) 1px, transparent 1px);
        background-size: 32px 32px;
    }
    body.tg-blog-surface .tg-blog-container { width: min(100% - 28px, 1220px); }
    body.tg-blog-surface .tg-blog-hero { padding: 56px 0 52px; }
    body.tg-blog-surface .tg-blog-kicker { min-height: 37px; font-size: 10.5px; }
    body.tg-blog-surface .tg-blog-hero h1 {
        max-width: 520px;
        margin-top: 16px;
        font-size: clamp(2.05rem, 9.5vw, 2.75rem);
        line-height: 1.08;
        letter-spacing: -.043em;
    }
    body.tg-blog-surface .tg-blog-hero p {
        max-width: 500px;
        margin-top: 16px;
        font-size: 13.5px;
        line-height: 1.68;
    }
    body.tg-blog-surface .tg-blog-hero-actions {
        width: min(100%, 430px);
        margin: 23px auto 0;
        flex-direction: column;
        gap: 8px;
    }
    body.tg-blog-surface .tg-blog-button { width: 100%; min-height: 49px; font-size: 12px; }
    body.tg-blog-surface .tg-blog-section { padding-bottom: 64px; }
    body.tg-blog-surface .tg-blog-section-head { margin-bottom: 20px; }
    body.tg-blog-surface .tg-blog-section-head h2 { font-size: 26px; }
    body.tg-blog-surface .tg-blog-card-grid { grid-template-columns: 1fr; gap: 12px; }
    body.tg-blog-surface .tg-blog-card {
        display: grid;
        grid-template-columns: minmax(125px, 38%) minmax(0, 1fr);
        align-items: stretch;
        border-radius: 15px;
    }
    body.tg-blog-surface .tg-blog-card-image {
        height: 100%;
        min-height: 190px;
        aspect-ratio: auto;
    }
    body.tg-blog-surface .tg-blog-card-body { padding: 15px; }
    body.tg-blog-surface .tg-blog-card-title { margin-top: 10px; font-size: 16px; }
    body.tg-blog-surface .tg-blog-card-excerpt {
        display: -webkit-box;
        overflow: hidden;
        font-size: 11.5px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
    body.tg-blog-surface .tg-blog-card-footer { align-items: flex-end; margin-top: 12px; padding-top: 10px; }
    body.tg-blog-surface .tg-blog-card-read { display: none; }

    body.tg-single-post .tg-article-header { padding: 48px 0 34px; }
    body.tg-single-post .tg-breadcrumbs {
        justify-content: flex-start;
        margin-bottom: 15px;
        font-size: 9.5px;
    }
    body.tg-single-post .tg-article-header-inner { text-align: left; }
    body.tg-single-post .tg-article-header h1 {
        max-width: none;
        margin-top: 14px;
        font-size: clamp(2rem, 9.7vw, 2.65rem);
        line-height: 1.1;
    }
    body.tg-single-post .tg-article-deck {
        max-width: none;
        margin-top: 15px;
        font-size: 13.5px;
    }
    body.tg-single-post .tg-article-meta {
        grid-template-columns: repeat(2, minmax(0,1fr));
        width: 100%;
        margin-top: 20px;
    }
    body.tg-single-post .tg-article-featured { border-radius: 16px; }
    body.tg-single-post .tg-article-layout {
        width: min(100% - 28px, 1220px);
        padding-top: 28px;
        padding-bottom: 68px;
    }
    body.tg-single-post .tg-article-content {
        padding: 24px 20px;
        border-radius: 17px;
        font-size: 16px;
        line-height: 1.78;
    }
    body.tg-single-post .tg-article-content h2 {
        grid-template-columns: 22px minmax(0,1fr);
        column-gap: 9px;
        font-size: 24px;
    }
    body.tg-single-post .tg-article-content h2::before { width: 22px; height: 3px; }
    body.tg-single-post .tg-article-content h3 {
        grid-template-columns: 17px minmax(0,1fr);
        column-gap: 8px;
        font-size: 20px;
    }
    body.tg-single-post .tg-article-content h3::before { width: 17px; }
    body.tg-single-post .tg-sidebar-sticky { grid-template-columns: 1fr; }
    body.tg-single-post .tg-sidebar-tools,
    body.tg-single-post .tg-sidebar-site-card { border-radius: 16px; }
    body.tg-single-post .tg-author-box {
        grid-template-columns: 70px minmax(0,1fr);
        gap: 14px;
        padding: 18px;
        border-radius: 17px;
    }
    body.tg-single-post .tg-author-box-image { width: 70px; height: 70px; }
    body.tg-single-post .tg-author-box-content h2 { font-size: 18px; }
    body.tg-single-post .tg-related-posts .tg-blog-section-head h2 { font-size: 24px; }
}

@media (max-width: 560px) {
    body.tg-blog-surface .tg-blog-card { grid-template-columns: 1fr; }
    body.tg-blog-surface .tg-blog-card-image { min-height: 0; aspect-ratio: 16 / 9; }
    body.tg-blog-surface .tg-blog-card-excerpt { font-size: 12.5px; }
    body.tg-single-post .tg-article-meta { grid-template-columns: repeat(2, minmax(0,1fr)); }
    body.tg-single-post .tg-article-author { grid-column: 1 / -1; }
    body.tg-single-post .tg-article-content { padding: 21px 17px; }
    body.tg-single-post .tg-sidebar-tools { padding: 16px; }
    body.tg-single-post .tg-author-box { grid-template-columns: 1fr; }
    body.tg-single-post .tg-author-box-avatar { width: max-content; }
}

/* =========================================================
   TOOLSGROVE V4 LAYOUT
   1250px width, balanced px typography, vertical green
   heading lines, sticky sidebar, and full-width post sections.
========================================================= */

/* Main blog width */
body.tg-blog-surface .tg-blog-container {
    width: min(100% - 40px, 1250px);
}

/* =========================================================
   ARCHIVE / BLOG TYPOGRAPHY
========================================================= */

body.tg-blog-surface .tg-blog-hero h1,
body.tg-blog-surface .tg-blog-archive-hero h1 {
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

body.tg-blog-surface .tg-blog-hero p,
body.tg-blog-surface .tg-blog-archive-hero p {
    font-size: 16px;
    line-height: 1.70;
}

body.tg-blog-surface .tg-blog-section-head h2 {
    font-size: 30px;
    line-height: 1.18;
}

body.tg-blog-surface .tg-blog-card-title {
    font-size: 19px;
    line-height: 1.35;
}

body.tg-blog-surface .tg-blog-card-excerpt {
    font-size: 14px;
    line-height: 1.65;
}

/* Larger archive/card metadata */
body.tg-blog-surface .tg-blog-card-topline {
    font-size: 12px;
    line-height: 1.35;
}

body.tg-blog-surface .tg-blog-card-category {
    font-size: 11px;
}

body.tg-blog-surface .tg-blog-card-footer {
    font-size: 11.5px;
}

body.tg-blog-surface .tg-blog-card-byline strong {
    font-size: 12px;
    line-height: 1.25;
}

body.tg-blog-surface .tg-blog-card-byline small {
    font-size: 10.5px;
    line-height: 1.35;
}

body.tg-blog-surface .tg-blog-card-read {
    font-size: 11.5px;
}

/* =========================================================
   SINGLE POST HEADER
========================================================= */

body.tg-single-post .tg-article-header {
    padding: 56px 0 40px;
}

body.tg-single-post .tg-article-header h1 {
    max-width: 920px;
    margin-top: 16px;
    font-size: 44px;
    line-height: 1.10;
    letter-spacing: -0.042em;
}

body.tg-single-post .tg-article-deck {
    max-width: 760px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.70;
}

body.tg-single-post .tg-breadcrumbs {
    font-size: 12px;
}

body.tg-single-post .tg-article-category {
    font-size: 11px;
}

/* Larger metadata */
body.tg-single-post .tg-article-meta {
    gap: 12px 22px;
    margin-top: 24px;
    font-size: 13px;
}

body.tg-single-post .tg-article-author strong {
    font-size: 13px;
    line-height: 1.25;
}

body.tg-single-post .tg-article-author small {
    font-size: 11px;
}

body.tg-single-post .tg-article-meta-detail strong {
    font-size: 10px;
    line-height: 1.2;
}

body.tg-single-post .tg-article-meta-detail span,
body.tg-single-post .tg-article-meta-detail time {
    font-size: 12.5px;
    line-height: 1.35;
}

/* =========================================================
   MAIN ARTICLE + STICKY SIDEBAR
========================================================= */

body.tg-single-post .tg-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 870px) minmax(280px, 330px);
    align-items: start;
    gap: 38px;
    padding-top: 34px;
    padding-bottom: 34px;
}

body.tg-single-post .tg-article-main {
    min-width: 0;
}

body.tg-single-post .tg-article-content {
    padding: 40px 46px;
    font-size: 17px;
    line-height: 1.82;
}

/* Green vertical line for content headings */
body.tg-single-post .tg-article-content h2,
body.tg-single-post .tg-article-content h3,
body.tg-single-post .tg-article-content h4 {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--tg-ink);
}

body.tg-single-post .tg-article-content h2::before,
body.tg-single-post .tg-article-content h3::before,
body.tg-single-post .tg-article-content h4::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 1.15em;
    margin-top: 0.08em;
    background: var(--tg-green);
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: none;
}

body.tg-single-post .tg-article-content h2 {
    margin: 38px 0 16px;
    font-size: 28px;
    line-height: 1.28;
}

body.tg-single-post .tg-article-content h3 {
    margin: 31px 0 14px;
    font-size: 23px;
    line-height: 1.32;
}

body.tg-single-post .tg-article-content h4 {
    margin: 25px 0 12px;
    font-size: 19px;
    line-height: 1.35;
}

/* Sticky sidebar */
body.tg-single-post .tg-article-sidebar {
    min-width: 0;
}

body.tg-single-post .tg-sidebar-sticky {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 14px;
}

body.tg-single-post .tg-sidebar-card {
    padding: 22px;
}

body.tg-single-post .tg-sidebar-card h2 {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.30;
}

body.tg-single-post .tg-sidebar-card p {
    font-size: 13px;
    line-height: 1.65;
}

body.tg-single-post .tg-sidebar-quick-links {
    display: grid;
    gap: 7px;
    margin-top: 17px;
}

body.tg-single-post .tg-sidebar-quick-links a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 11px;
    border: 1px solid var(--tg-border);
    border-radius: 10px;
    background: var(--tg-soft-3);
    color: var(--tg-text);
    font-size: 12px;
    font-weight: 700;
    transition:
        transform .2s var(--tg-ease),
        border-color .2s ease,
        background .2s ease,
        color .2s ease;
}

body.tg-single-post .tg-sidebar-quick-links a:hover {
    transform: translateY(-2px);
    border-color: var(--tg-border-green);
    background: var(--tg-soft);
    color: var(--tg-green-deep);
}

/* =========================================================
   FULL-WIDTH SECTIONS BELOW CONTENT + SIDEBAR
========================================================= */

body.tg-single-post .tg-article-after-content {
    display: grid;
    gap: 24px;
    padding-bottom: 82px;
}

body.tg-single-post .tg-article-after-content > .tg-blog-tools,
body.tg-single-post .tg-article-after-content > .tg-author-box,
body.tg-single-post .tg-article-after-content > .tg-related-posts,
body.tg-single-post .tg-article-after-content > .tg-article-tags {
    width: 100%;
    margin: 0;
}

/* Tools full width */
body.tg-single-post .tg-blog-tools {
    padding: 28px;
    border-radius: 20px;
}

body.tg-single-post .tg-blog-tools-head h2 {
    font-size: 27px;
    line-height: 1.25;
}

body.tg-single-post .tg-blog-tools-head p {
    font-size: 13px;
    line-height: 1.65;
}

body.tg-single-post .tg-blog-tool-copy strong {
    font-size: 12px;
}

body.tg-single-post .tg-blog-tool-copy small {
    font-size: 10px;
    line-height: 1.45;
}

/* Tags full width */
body.tg-single-post .tg-article-tags {
    padding: 15px 18px;
}

/* Author full width */
body.tg-single-post .tg-author-box {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 22px;
    padding: 28px;
    border-radius: 20px;
}

body.tg-single-post .tg-author-box-image {
    width: 104px;
    height: 104px;
}

body.tg-single-post .tg-author-box-content h2 {
    margin-top: 7px;
    font-size: 24px;
    line-height: 1.25;
}

body.tg-single-post .tg-author-box p {
    max-width: 920px;
    font-size: 14px;
    line-height: 1.70;
}

body.tg-single-post .tg-author-box-meta {
    font-size: 11.5px;
}

/* Related posts full width */
body.tg-single-post .tg-related-posts {
    padding-top: 6px;
}

body.tg-single-post .tg-related-posts .tg-blog-section-head {
    margin-bottom: 18px;
}

body.tg-single-post .tg-related-posts .tg-blog-section-head h2 {
    font-size: 29px;
    line-height: 1.22;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    body.tg-blog-surface .tg-blog-container {
        width: min(100% - 32px, 1250px);
    }

    body.tg-blog-surface .tg-blog-hero h1,
    body.tg-blog-surface .tg-blog-archive-hero h1 {
        font-size: 40px;
    }

    body.tg-single-post .tg-article-header h1 {
        font-size: 40px;
    }

    body.tg-single-post .tg-article-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 26px;
    }

    body.tg-single-post .tg-article-content {
        padding: 34px 32px;
    }

    body.tg-single-post .tg-sidebar-sticky {
        top: 82px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {
    body.tg-blog-surface .tg-blog-container,
    body.tg-single-post .tg-article-layout {
        width: min(100% - 28px, 1250px);
    }

    body.tg-blog-surface .tg-blog-hero h1,
    body.tg-blog-surface .tg-blog-archive-hero h1 {
        font-size: 34px;
        line-height: 1.10;
    }

    body.tg-blog-surface .tg-blog-hero p,
    body.tg-blog-surface .tg-blog-archive-hero p {
        font-size: 14px;
    }

    body.tg-blog-surface .tg-blog-card-title {
        font-size: 18px;
    }

    body.tg-blog-surface .tg-blog-card-excerpt {
        font-size: 13px;
    }

    body.tg-blog-surface .tg-blog-card-topline {
        font-size: 11.5px;
    }

    body.tg-blog-surface .tg-blog-card-category {
        font-size: 10.5px;
    }

    body.tg-blog-surface .tg-blog-card-byline strong {
        font-size: 11.5px;
    }

    body.tg-blog-surface .tg-blog-card-byline small {
        font-size: 10px;
    }

    body.tg-single-post .tg-article-header {
        padding: 44px 0 32px;
    }

    body.tg-single-post .tg-article-header h1 {
        font-size: 34px;
        line-height: 1.12;
    }

    body.tg-single-post .tg-article-deck {
        font-size: 14px;
    }

    body.tg-single-post .tg-article-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
    }

    body.tg-single-post .tg-article-author {
        grid-column: 1 / -1;
    }

    body.tg-single-post .tg-article-meta-detail strong {
        font-size: 9.5px;
    }

    body.tg-single-post .tg-article-meta-detail span,
    body.tg-single-post .tg-article-meta-detail time {
        font-size: 12px;
    }

    body.tg-single-post .tg-article-layout {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 26px;
    }

    body.tg-single-post .tg-article-content {
        padding: 25px 20px;
        font-size: 16px;
        line-height: 1.78;
        border-radius: 17px;
    }

    body.tg-single-post .tg-article-content h2 {
        margin-top: 32px;
        font-size: 25px;
    }

    body.tg-single-post .tg-article-content h3 {
        margin-top: 27px;
        font-size: 21px;
    }

    body.tg-single-post .tg-article-content h4 {
        margin-top: 23px;
        font-size: 18px;
    }

    body.tg-single-post .tg-sidebar-sticky {
        position: static;
    }

    body.tg-single-post .tg-sidebar-card {
        padding: 19px;
        border-radius: 16px;
    }

    body.tg-single-post .tg-article-after-content {
        gap: 18px;
        padding-bottom: 66px;
    }

    body.tg-single-post .tg-blog-tools {
        padding: 21px 18px;
        border-radius: 17px;
    }

    body.tg-single-post .tg-blog-tools-head h2 {
        font-size: 23px;
    }

    body.tg-single-post .tg-author-box {
        grid-template-columns: 78px minmax(0,1fr);
        gap: 15px;
        padding: 20px;
        border-radius: 17px;
    }

    body.tg-single-post .tg-author-box-image {
        width: 78px;
        height: 78px;
    }

    body.tg-single-post .tg-author-box-content h2 {
        font-size: 21px;
    }

    body.tg-single-post .tg-author-box p {
        font-size: 13px;
    }

    body.tg-single-post .tg-related-posts .tg-blog-section-head h2 {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    body.tg-blog-surface .tg-blog-container,
    body.tg-single-post .tg-article-layout {
        width: min(100% - 24px, 1250px);
    }

    body.tg-blog-surface .tg-blog-hero h1,
    body.tg-blog-surface .tg-blog-archive-hero h1 {
        font-size: 31px;
    }

    body.tg-single-post .tg-article-header h1 {
        font-size: 31px;
    }

    body.tg-single-post .tg-breadcrumbs {
        font-size: 10.5px;
    }

    body.tg-single-post .tg-article-content {
        padding: 22px 17px;
        font-size: 16px;
    }

    body.tg-single-post .tg-article-content h2 {
        font-size: 23px;
    }

    body.tg-single-post .tg-article-content h3 {
        font-size: 20px;
    }

    body.tg-single-post .tg-article-content h4 {
        font-size: 18px;
    }

    body.tg-single-post .tg-article-content h2,
    body.tg-single-post .tg-article-content h3,
    body.tg-single-post .tg-article-content h4 {
        gap: 9px;
    }

    body.tg-single-post .tg-author-box {
        grid-template-columns: 1fr;
    }

    body.tg-single-post .tg-author-box-avatar {
        width: max-content;
    }
}

/* =========================================================
   FINAL TOOLSGROVE BLOG TYPOGRAPHY + POST HEADING OVERRIDES
   Keep this block at the END of blog.css.
========================================================= */

/* Main blog/archive titles */
body.tg-blog-surface .tg-blog-hero h1 {
    max-width: 820px !important;
    font-size: 36px !important;
    line-height: 1.14 !important;
    letter-spacing: -0.03em !important;
}

body.tg-blog-surface .tg-blog-archive-hero h1 {
    max-width: 780px !important;
    font-size: 34px !important;
    line-height: 1.14 !important;
    letter-spacing: -0.03em !important;
}

/* Archive/blog metadata */
body.tg-blog-surface .tg-blog-card-topline {
    font-size: 12px !important;
    line-height: 1.4 !important;
}

body.tg-blog-surface .tg-blog-card-category {
    font-size: 11px !important;
    line-height: 1.25 !important;
}

body.tg-blog-surface .tg-blog-card-footer {
    font-size: 12px !important;
    line-height: 1.4 !important;
}

body.tg-blog-surface .tg-blog-card-read {
    font-size: 12px !important;
    line-height: 1.35 !important;
}

body.tg-blog-surface .tg-blog-card-byline strong {
    font-size: 12px !important;
    line-height: 1.3 !important;
}

body.tg-blog-surface .tg-blog-card-byline small {
    font-size: 11px !important;
    line-height: 1.35 !important;
}

/* Single post main H1 */
body.tg-single-post .tg-article-header h1 {
    max-width: 900px !important;
    font-size: 36px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
}

/* Single post metadata */
body.tg-single-post .tg-breadcrumbs {
    font-size: 12px !important;
    line-height: 1.4 !important;
}

body.tg-single-post .tg-article-category {
    font-size: 11px !important;
}

body.tg-single-post .tg-article-meta {
    gap: 12px 20px !important;
    font-size: 13px !important;
}

body.tg-single-post .tg-article-author strong {
    font-size: 13px !important;
    line-height: 1.3 !important;
}

body.tg-single-post .tg-article-author small {
    font-size: 11px !important;
    line-height: 1.4 !important;
}

body.tg-single-post .tg-article-meta-detail strong {
    font-size: 10px !important;
    line-height: 1.3 !important;
}

body.tg-single-post .tg-article-meta-detail span,
body.tg-single-post .tg-article-meta-detail time {
    font-size: 12px !important;
    line-height: 1.4 !important;
}

/* =========================================================
   BLOG POST CONTENT HEADINGS
   Same visual style as the ToolsGrove tool-description headings.
========================================================= */

body.tg-single-post .tg-article-content h2,
body.tg-single-post .tg-article-content h3,
body.tg-single-post .tg-article-content h4 {
    position: static !important;
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 !important;
    color: var(--tg-ink) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.015em !important;
}

/* H2 */
body.tg-single-post .tg-article-content h2 {
    margin: 30px 0 16px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

/* H3 */
body.tg-single-post .tg-article-content h3 {
    margin: 24px 0 12px !important;
    font-size: 19px !important;
    font-weight: 600 !important;
}

/* H4 */
body.tg-single-post .tg-article-content h4 {
    margin: 20px 0 10px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
}

/* Green line */
body.tg-single-post .tg-article-content h2::before,
body.tg-single-post .tg-article-content h3::before,
body.tg-single-post .tg-article-content h4::before {
    content: "" !important;
    display: inline-block !important;
    width: 3px !important;
    min-width: 3px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--tg-green) !important;
    border-radius: 3px !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
    transform: none !important;
}

/* Different line heights */
body.tg-single-post .tg-article-content h2::before {
    height: 26px !important;
}

body.tg-single-post .tg-article-content h3::before {
    height: 21px !important;
}

body.tg-single-post .tg-article-content h4::before {
    height: 18px !important;
}

/* Tablet */
@media (max-width: 768px) {
    body.tg-blog-surface .tg-blog-hero h1 {
        font-size: 31px !important;
    }

    body.tg-blog-surface .tg-blog-archive-hero h1 {
        font-size: 30px !important;
    }

    body.tg-single-post .tg-article-header h1 {
        font-size: 31px !important;
        line-height: 1.16 !important;
    }

    body.tg-blog-surface .tg-blog-card-topline {
        font-size: 11.5px !important;
    }

    body.tg-blog-surface .tg-blog-card-category {
        font-size: 10.5px !important;
    }

    body.tg-blog-surface .tg-blog-card-footer,
    body.tg-blog-surface .tg-blog-card-read {
        font-size: 11px !important;
    }

    body.tg-blog-surface .tg-blog-card-byline strong {
        font-size: 11.5px !important;
    }

    body.tg-blog-surface .tg-blog-card-byline small {
        font-size: 10.5px !important;
    }

    body.tg-single-post .tg-article-author strong {
        font-size: 12px !important;
    }

    body.tg-single-post .tg-article-author small {
        font-size: 10.5px !important;
    }

    body.tg-single-post .tg-article-meta-detail strong {
        font-size: 9.5px !important;
    }

    body.tg-single-post .tg-article-meta-detail span,
    body.tg-single-post .tg-article-meta-detail time {
        font-size: 11.5px !important;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    body.tg-blog-surface .tg-blog-hero h1 {
        font-size: 28px !important;
    }

    body.tg-blog-surface .tg-blog-archive-hero h1 {
        font-size: 27px !important;
    }

    body.tg-single-post .tg-article-header h1 {
        font-size: 28px !important;
        line-height: 1.18 !important;
        letter-spacing: -0.025em !important;
    }

    body.tg-single-post .tg-breadcrumbs {
        font-size: 10.5px !important;
    }

    body.tg-single-post .tg-article-meta {
        font-size: 12px !important;
    }

    body.tg-single-post .tg-article-author strong {
        font-size: 12px !important;
    }

    body.tg-single-post .tg-article-author small {
        font-size: 10px !important;
    }

    body.tg-single-post .tg-article-meta-detail strong {
        font-size: 9px !important;
    }

    body.tg-single-post .tg-article-meta-detail span,
    body.tg-single-post .tg-article-meta-detail time {
        font-size: 11px !important;
    }
}