.figuree-journal{
    --figuree-blog-width:1800px;
    width:100%;
    max-width:none;
    margin:0;
    padding:0 0 96px;
    color:#fff;
    background:#050506;
    overflow:hidden;
}

body.blog,
body.category,
body.tag,
body.date,
body.author,
body.search{
    background:#050506;
    overflow-x:hidden;
}

.figuree-journal-hero{
    width:100%;
    max-width:none;
    position:relative;
    margin:0 0 72px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 72px 72px,
        radial-gradient(circle at 82% 22%, rgba(255,255,255,.075), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.035), transparent 70%),
        #050506;
    overflow:hidden;
}

.figuree-journal-hero-inner{
    box-sizing:border-box;
    width:min(calc(100vw - 96px), 1800px)!important;
    max-width:1800px!important;
    margin:0 auto!important;
    padding:
        var(--figuree-header-clearance, clamp(120px, 13vh, 160px))
        0
        clamp(100px, 11vh, 140px)!important;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:48px;
}

.figuree-journal-kicker,
.figuree-journal-card-category,
.figuree-journal-date-badge,
.figuree-journal-read,
.figuree-journal-cats a,
.figuree-journal-pagination a,
.figuree-journal-pagination span{
    font-family:var(--figuree-ui-font,var(--figuree-body-font,Inter,sans-serif));
    text-transform:uppercase;
    letter-spacing:.1em;
}

.figuree-journal-kicker{
    display:block;
    margin-bottom:18px;
    color:var(--figuree-primary,#ff3b8a);
    font-size:12px;
    font-weight:900;
}

.figuree-journal-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    background:
        radial-gradient(circle at 18% 82%, rgba(255,255,255,.055), transparent 26%),
        repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 1px, transparent 1px 8px);
    opacity:.78;
    pointer-events:none;
}

.figuree-journal-hero-copy,
.figuree-journal-hero-accent{
    position:relative;
    z-index:1;
}

.figuree-journal-hero-copy{
    max-width:900px;
}

.figuree-journal-hero h1{
    max-width:900px;
    margin:0;
    color:#fff;
    font-size:clamp(48px, 4.4vw, 78px);
    font-weight:500;
    line-height:.98;
    letter-spacing:-.04em;
}

.figuree-journal-hero-copy p{
    max-width:680px;
    margin:24px 0 0;
    color:rgba(255,255,255,.66);
    font-size:clamp(16px, 1.18vw, 20px);
    line-height:1.55;
}

.figuree-journal-hero-accent{
    max-width:340px;
    margin:12px 0 0;
    color:rgba(255,255,255,.62);
    font-family:var(--figuree-ui-font,var(--figuree-body-font,Inter,sans-serif));
    font-size:12px;
    font-weight:800;
    line-height:1.45;
    letter-spacing:.13em;
    text-align:right;
    text-transform:uppercase;
}

.figuree-journal-card{
    min-width:0;
    display:flex;
    flex-direction:column;
    border:1px solid rgba(255,255,255,.085);
    border-radius:8px;
    background:rgba(255,255,255,.032);
    overflow:hidden;
    transition:transform .22s ease, border-color .22s ease, background .22s ease;
}

.figuree-journal-card:hover{
    transform:translateY(-3px);
    border-color:color-mix(in srgb,var(--figuree-primary,#ff3b8a) 36%,rgba(255,255,255,.1));
    background:rgba(255,255,255,.048);
}

.figuree-journal-card-media{
    aspect-ratio:16 / 10;
    display:block;
    overflow:hidden;
    background:rgba(255,255,255,.04);
}

.figuree-journal-card-media img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    filter:grayscale(1);
    transform:scale(1.01);
    transition:filter .3s ease, transform .3s ease;
}

.figuree-journal-card:hover .figuree-journal-card-media img{
    filter:grayscale(0);
    transform:scale(1.045);
}

.figuree-journal-card-media span{
    min-height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgba(255,255,255,.22);
    font-size:clamp(72px, 8vw, 150px);
    font-weight:800;
}

.figuree-journal-card-body{
    display:flex;
    flex:1;
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
}

.figuree-journal-date-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:28px;
    margin-bottom:16px;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    color:rgba(255,255,255,.52);
    font-size:10px;
    font-weight:800;
    line-height:1;
}

.figuree-journal-date-badge::before{
    content:"";
    width:13px;
    height:13px;
    flex:0 0 13px;
    border:1px solid rgba(255,255,255,.38);
    border-radius:3px;
    background:
        linear-gradient(rgba(255,255,255,.38),rgba(255,255,255,.38)) 2px 3px / 9px 1px no-repeat,
        linear-gradient(rgba(255,255,255,.34),rgba(255,255,255,.34)) 3px 0 / 1px 4px no-repeat,
        linear-gradient(rgba(255,255,255,.34),rgba(255,255,255,.34)) 9px 0 / 1px 4px no-repeat;
    opacity:.82;
}

.figuree-journal-card-footer{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-top:auto;
    padding-top:24px;
}

.figuree-journal-card-category{
    min-width:0;
    color:rgba(255,255,255,.5);
    font-size:10px;
    font-weight:900;
    line-height:1.1;
}

.figuree-journal-card h2{
    margin:0;
    color:#fff;
    font-size:clamp(16px, .95vw, 20px);
    font-weight:400;
    line-height:1.12;
    letter-spacing:-0.04em;
}

.figuree-journal-card h2 a{
    display:-webkit-box !important;
    overflow:hidden;
    color:inherit;
    text-decoration:none;
    transition:color .18s ease;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}

.figuree-journal-card h2 a:hover{
    color:var(--figuree-primary,#ff3b8a);
}

.figuree-journal-card p{
    display:-webkit-box;
    margin:16px 0 0;
    overflow:hidden;
    color:rgba(255,255,255,.62);
    font-size:14px;
    line-height:1.58;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
}

.figuree-journal-read{
    display:inline-flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
    color:var(--figuree-primary,#ff3b8a);
    font-size:11px;
    font-weight:900;
    line-height:1;
    text-decoration:none;
}

.figuree-journal-toolbar{
    width:calc(100% - 96px);
    max-width:var(--figuree-blog-width);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    margin:0 auto 56px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.figuree-journal-cats{
    min-width:0;
    display:flex;
    align-items:center;
    gap:34px;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
}

.figuree-journal-cats::-webkit-scrollbar{
    display:none;
}

.figuree-journal-cats a{
    flex:0 0 auto;
    padding-bottom:10px;
    border-bottom:1px solid transparent;
    color:rgba(255,255,255,.48);
    font-size:14px;
    font-weight:800;
    line-height:1;
    text-decoration:none;
    white-space:nowrap;
}

.figuree-journal-cats a:hover,
.figuree-journal-cats a.is-active{
    color:var(--figuree-primary,#ff3b8a);
    border-bottom-color:var(--figuree-primary,#ff3b8a);
}

.figuree-journal-search{
    flex:0 0 min(360px, 32vw);
}

.figuree-journal-search input{
    width:100%;
    height:46px;
    padding:0 18px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:8px;
    background:rgba(255,255,255,.045);
    color:#fff;
    font-size:14px;
    outline:0;
}

.figuree-journal-search input::placeholder{
    color:rgba(255,255,255,.42);
}

.figuree-journal-list{
    width:calc(100% - 96px);
    max-width:var(--figuree-blog-width);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    column-gap:40px;
    row-gap:64px;
}

.figuree-journal-empty{
    grid-column:1 / -1;
    padding:52px 0;
    color:rgba(255,255,255,.66);
}

.figuree-journal-empty h2{
    color:#fff;
    font-size:42px;
}

.figuree-journal-pagination{
    width:calc(100% - 96px);
    max-width:var(--figuree-blog-width);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin:52px auto 0;
}

.figuree-journal-pagination a,
.figuree-journal-pagination span{
    width:42px;
    height:42px;
    min-width:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    background:rgba(255,255,255,.06);
    color:rgba(255,255,255,.78);
    font-size:14px;
    font-weight:750;
    line-height:1;
    text-decoration:none;
}

.figuree-journal-pagination a:hover,
.figuree-journal-pagination span.current{
    color:var(--figuree-primary,#ff3b8a);
    border-color:var(--figuree-primary,#ff3b8a);
    background:color-mix(in srgb,var(--figuree-primary,#ff3b8a) 10%,transparent);
}

@media(max-width:1320px){
    .figuree-journal-list{
        grid-template-columns:repeat(3,minmax(0,1fr));
        column-gap:36px;
        row-gap:56px;
    }

}

@media(max-width:960px){
    .figuree-journal{
        padding:0 0 82px;
    }

    .figuree-journal-hero{
        margin-bottom:60px;
    }

    .figuree-journal-hero-inner{
        padding:var(--figuree-header-clearance, 92px) 28px 86px;
        display:block;
    }

    .figuree-journal-toolbar,
    .figuree-journal-list,
    .figuree-journal-pagination{
        width:calc(100% - 56px);
    }

    .figuree-journal-list{
        grid-template-columns:repeat(2,minmax(0,1fr));
        column-gap:28px;
        row-gap:48px;
    }

    .figuree-journal-hero-accent{
        max-width:320px;
        margin-top:42px;
        text-align:left;
    }

    .figuree-journal-toolbar{
        display:grid;
        gap:18px;
        margin-bottom:48px;
    }

    .figuree-journal-search{
        flex:unset;
        width:100%;
    }
}

@media(max-width:640px){
    .figuree-journal{
        padding:0 0 72px;
    }

    .figuree-journal-hero{
        margin-bottom:48px;
    }

    .figuree-journal-hero-inner{
        padding:var(--figuree-header-clearance, 72px) 20px 72px;
    }

    .figuree-journal-toolbar,
    .figuree-journal-list,
    .figuree-journal-pagination{
        width:calc(100% - 36px);
    }

    .figuree-journal-hero h1{
        font-size:clamp(40px, 11vw, 58px);
    }

    .figuree-journal-list{
        grid-template-columns:1fr;
        gap:40px;
    }

    .figuree-journal-cats{
        gap:24px;
    }

    .figuree-journal-card-body{
        padding:20px;
    }
}

/* Single post: light editorial reading layout */
body.single-post{
    background:#fcfcfb!important;
    color:#171717;
}

body.single-post::before,
body.single-post::after{
    content:none!important;
    display:none!important;
}

body.single-post .figuree-single-post{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    padding:var(--figuree-header-clearance, clamp(92px, 8vw, 132px)) 0 108px;
    background:linear-gradient(180deg, #fcfcfb 0%, #fff 36%, #faf9f7 100%);
    color:#171717;
}

body.single-post .figuree-single-post::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    pointer-events:none;
    opacity:.22;
    background-image:
        linear-gradient(rgba(22,22,22,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,22,22,.035) 1px, transparent 1px);
    background-size:72px 72px;
    mask-image:linear-gradient(180deg, #000 0%, transparent 46%);
}

body.single-post .figuree-single-post-wrap{
    width:calc(100% - 80px);
    max-width:1800px;
    margin:0 auto;
}

body.single-post .figuree-single-post-layout{
    display:grid;
    grid-template-columns:minmax(0, 1180px) minmax(340px, 380px);
    justify-content:center;
    gap:72px;
    align-items:start;
}

body.single-post .figuree-single-post-layout.is-sidebar-empty{
    grid-template-columns:minmax(0, 1180px);
}

body.single-post .figuree-single-post-main{
    min-width:0;
    padding:56px 64px 0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    box-sizing:border-box;
}

body.single-post .figuree-single-post-header{
    margin:0 0 32px;
    padding:0 !important;
    background:transparent !important;
}

body.single-post .figuree-single-post-meta{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:9px;
    margin-bottom:14px;
    color:#8f8580;
    font-size:11px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:.09em;
    text-transform:uppercase;
}

body.single-post .figuree-single-post-meta a{
    color:var(--figuree-primary,#ff3b8a);
    text-decoration:none;
}

body.single-post .figuree-single-post-header h1{
    max-width:900px;
    margin:0;
    color:#111 !important;
    font-size:clamp(38px, 2.5vw, 42px) !important;
    font-weight:700 !important;
    line-height:1.11 !important;
    letter-spacing:-.026em !important;
    text-transform:none !important;
}

body.single-post .figuree-single-post-dek{
    max-width:840px;
    margin:18px 0 0;
    color:#5b5652;
    font-size:18px;
    line-height:1.72;
}

body.single-post .figuree-single-inline-toc{
    margin:34px 0 38px;
    border:1px solid rgba(24,20,17,.12);
    border-radius:10px;
    background:#fbfaf8;
}

body.single-post .figuree-single-inline-toc summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    min-height:48px;
    padding:0 18px;
    color:#171717;
    cursor:pointer;
    font-size:12px;
    font-weight:850;
    letter-spacing:.08em;
    line-height:1;
    list-style:none;
    text-transform:uppercase;
}

body.single-post .figuree-single-inline-toc summary::-webkit-details-marker{
    display:none;
}

body.single-post .figuree-single-inline-toc summary span:last-child::before{
    content:">";
    color:var(--figuree-primary,#ff3b8a);
    font-size:15px;
    line-height:1;
}

body.single-post .figuree-single-inline-toc[open] summary{
    border-bottom:1px solid rgba(24,20,17,.08);
}

body.single-post .figuree-single-inline-toc[open] summary span:last-child::before{
    content:"v";
}

body.single-post .figuree-single-inline-toc ol{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px 22px;
    margin:0;
    padding:18px;
    list-style:none;
}

body.single-post .figuree-single-inline-toc li{
    margin:0;
    padding:0;
}

body.single-post .figuree-single-inline-toc li.is-level-3{
    padding-left:12px;
}

body.single-post .figuree-single-inline-toc a{
    display:block;
    color:#4f4843;
    font-size:13px;
    font-weight:720;
    line-height:1.35;
    text-decoration:none;
}

body.single-post .figuree-single-inline-toc a:hover{
    color:var(--figuree-primary,#ff3b8a);
}

body.single-post .figuree-single-post-featured{
    margin:0 0 34px;
}

body.single-post .figuree-single-post-featured-image{
    display:block;
    width:100%;
    aspect-ratio:16 / 10;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 18px 44px rgba(22,18,16,.14);
}

body.single-post .figuree-single-post-content{
    color:#25201d;
    font-size:18px;
    line-height:1.82;
}

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

body.single-post .figuree-single-post-content p{
    margin:0 0 1.35em;
}

body.single-post .figuree-single-post-content h2,
body.single-post .figuree-single-post-content h3,
body.single-post .figuree-single-post-content h4{
    color:#111 !important;
    font-weight:760 !important;
    letter-spacing:-.02em !important;
    text-transform:none !important;
}

body.single-post .figuree-single-post-content h2{
    margin:2.05em 0 .7em;
    font-size:30px !important;
    line-height:1.2 !important;
    scroll-margin-top:120px;
}

body.single-post .figuree-single-post-content h3{
    margin:1.75em 0 .65em;
    font-size:23px !important;
    line-height:1.24 !important;
    scroll-margin-top:120px;
}

body.single-post .figuree-single-post-content h4{
    margin:1.65em 0 .62em;
    font-size:19px !important;
    line-height:1.3 !important;
}

body.single-post .figuree-single-post-content a{
    color:var(--figuree-primary,#ff3b8a);
    text-decoration-color:color-mix(in srgb, var(--figuree-primary,#ff3b8a) 45%, transparent);
    text-underline-offset:.18em;
}

body.single-post .figuree-single-post-content ul,
body.single-post .figuree-single-post-content ol{
    margin:0 0 1.45em 1.25em;
    padding:0;
}

body.single-post .figuree-single-post-content li{
    margin:.42em 0;
    padding-left:.2em;
}

body.single-post .figuree-single-post-content blockquote{
    margin:2em 0;
    padding:24px 28px;
    border-left:3px solid var(--figuree-primary,#ff3b8a);
    border-radius:0 10px 10px 0;
    background:#faf7f6;
    color:#2b2421;
    font-size:20px;
    line-height:1.65;
}

body.single-post .figuree-single-post-content img,
body.single-post .figuree-single-post-content .wp-block-image img{
    max-width:100%;
    height:auto;
    border-radius:12px;
}

body.single-post .figuree-single-post-content figure{
    margin:38px auto;
}

body.single-post .figuree-single-post-content figcaption{
    margin-top:10px;
    color:#766e68;
    font-size:13px;
    line-height:1.5;
    text-align:center;
}

body.single-post .figuree-single-tags{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-top:42px;
    padding-top:26px;
    border-top:1px solid rgba(24,20,17,.1);
}

body.single-post .figuree-single-tags > span,
body.single-post .figuree-single-share > span,
body.single-post .figuree-single-author > div > span{
    flex:0 0 auto;
    color:var(--figuree-primary,#ff3b8a);
    font-size:11px;
    font-weight:850;
    letter-spacing:.09em;
    line-height:1;
    text-transform:uppercase;
}

body.single-post .figuree-single-tags div{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

body.single-post .figuree-single-tags a{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 11px;
    border:1px solid rgba(24,20,17,.1);
    border-radius:999px;
    color:#4f4843;
    font-size:12px;
    font-weight:760;
    text-decoration:none;
}

body.single-post .figuree-single-tags a:hover{
    border-color:var(--figuree-primary,#ff3b8a);
    color:var(--figuree-primary,#ff3b8a);
}

body.single-post .figuree-single-share{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:28px;
    padding:20px;
    border:1px solid rgba(24,20,17,.1);
    border-radius:12px;
    background:#fbfaf8;
}

body.single-post .figuree-single-share div{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

body.single-post .figuree-single-share a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:36px;
    padding:0 13px;
    border:1px solid rgba(24,20,17,.13);
    border-radius:7px;
    background:#fff;
    color:#2a2522;
    font-size:12px;
    font-weight:820;
    letter-spacing:.02em;
    text-decoration:none;
}

body.single-post .figuree-single-share a:hover{
    border-color:var(--figuree-primary,#ff3b8a);
    color:var(--figuree-primary,#ff3b8a);
}

body.single-post .figuree-single-author{
    display:grid;
    grid-template-columns:72px minmax(0,1fr);
    gap:20px;
    align-items:start;
    margin-top:26px;
    padding:26px;
    border:1px solid rgba(24,20,17,.1);
    border-radius:14px;
    background:linear-gradient(135deg, #fff 0%, #faf7f6 100%);
}

body.single-post .figuree-single-author-avatar,
body.single-post .figuree-single-author-avatar img{
    width:72px;
    height:72px;
    border-radius:50%;
}

body.single-post .figuree-single-author-avatar{
    overflow:hidden;
    background:#eee8e1;
}

body.single-post .figuree-single-author h2{
    margin:8px 0 4px;
    color:#111 !important;
    font-size:22px !important;
    font-weight:780 !important;
    line-height:1.1 !important;
    letter-spacing:-.02em !important;
    text-transform:none !important;
}

body.single-post .figuree-single-author p{
    margin:0;
    color:#4f4843;
    font-size:14px;
    line-height:1.62;
}

body.single-post .figuree-single-author .figuree-single-author-role{
    display:inline-block;
    margin-bottom:12px;
    padding-bottom:5px;
    border-bottom:1px solid color-mix(in srgb,var(--figuree-primary,#ff3b8a) 45%,transparent);
    color:#8a817a;
    font-size:11px;
    font-weight:850;
    letter-spacing:.08em;
    line-height:1;
    text-transform:uppercase;
}

body.single-post .figuree-single-author a{
    display:inline-flex;
    margin-top:14px;
    color:var(--figuree-primary,#ff3b8a);
    font-size:12px;
    font-weight:850;
    letter-spacing:.04em;
    text-decoration:none;
    text-transform:uppercase;
}

body.single-post .figuree-single-post-content .wp-block-button__link,
body.single-post .figuree-single-post-content .button,
body.single-post .figuree-single-post-content button,
body.single-post .figuree-single-post-content input[type="submit"]{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:var(--figuree-button-height,48px);
    padding:0 20px;
    border:1px solid var(--figuree-button-primary-bg,var(--figuree-primary,#ff3b8a));
    border-radius:var(--figuree-button-radius,999px);
    background:var(--figuree-button-primary-bg,var(--figuree-primary,#ff3b8a));
    color:var(--figuree-button-primary-text,#fff) !important;
    font-size:12px;
    font-weight:850;
    letter-spacing:.04em;
    text-decoration:none;
    text-transform:uppercase;
    transition:background-color .22s ease,border-color .22s ease,color .22s ease,filter .22s ease;
}

body.single-post .figuree-single-post-content .wp-block-button__link:hover,
body.single-post .figuree-single-post-content .button:hover,
body.single-post .figuree-single-post-content button:hover,
body.single-post .figuree-single-post-content input[type="submit"]:hover{
    filter:brightness(1.06);
}

body.single-post .figuree-single-post-content table{
    width:100%;
    border-collapse:collapse;
    margin:28px 0;
    font-size:15px;
}

body.single-post .figuree-single-post-content th,
body.single-post .figuree-single-post-content td{
    padding:12px 14px;
    border:1px solid #e4ddd4;
    text-align:left;
}

body.single-post .figuree-single-post-pages{
    display:flex;
    gap:8px;
    margin-top:34px;
}

body.single-post .figuree-single-sidebar{
    position:relative;
    top:auto;
    align-self:start;
}

body.single-post .figuree-single-sidebar-inner{
    position:sticky;
    top:120px;
    display:grid;
    gap:18px;
}

body.single-post .figuree-single-sidebar-card{
    overflow:hidden;
    padding:20px;
    border:1px solid rgba(20,18,16,.1);
    border-radius:12px;
    background:#fff;
    box-shadow:0 14px 40px rgba(16,13,11,.055);
}

body.single-post .figuree-blog-sidebar-widgets{
    display:grid;
    gap:18px;
}

body.single-post .figuree-blog-sidebar-widget{
    overflow:hidden;
    padding:20px;
    border:1px solid rgba(20,18,16,.1);
    border-radius:12px;
    background:#fff;
    color:#231f1c;
    box-shadow:0 14px 40px rgba(16,13,11,.055);
}

body.single-post .figuree-blog-sidebar-widget > *:first-child{
    margin-top:0;
}

body.single-post .figuree-blog-sidebar-widget > *:last-child{
    margin-bottom:0;
}

body.single-post .figuree-blog-sidebar-widget-title,
body.single-post .figuree-blog-sidebar-widget .wp-block-heading{
    margin:0 0 14px;
    color:#171717 !important;
    font-size:16px !important;
    font-weight:850 !important;
    line-height:1.15 !important;
    letter-spacing:-.015em !important;
    text-transform:none !important;
}

body.single-post .figuree-blog-sidebar-widget p{
    margin:0 0 14px;
    color:#5f5750;
    font-size:14px;
    line-height:1.65;
}

body.single-post .figuree-blog-sidebar-widget ul,
body.single-post .figuree-blog-sidebar-widget ol,
body.single-post .figuree-blog-sidebar-widget .wp-block-latest-posts,
body.single-post .figuree-blog-sidebar-widget .wp-block-categories-list{
    display:grid;
    gap:10px;
    margin:0;
    padding:0;
    list-style:none;
}

body.single-post .figuree-blog-sidebar-widget li{
    margin:0;
    padding:0;
    color:#5f5750;
    font-size:14px;
    line-height:1.45;
}

body.single-post .figuree-blog-sidebar-widget li ul,
body.single-post .figuree-blog-sidebar-widget li ol{
    margin-top:10px;
    padding-left:14px;
}

body.single-post .figuree-blog-sidebar-widget a{
    color:#241f1b;
    font-weight:720;
    text-decoration:none;
    transition:color .18s ease;
}

body.single-post .figuree-blog-sidebar-widget a:hover,
body.single-post .figuree-blog-sidebar-widget a:focus{
    color:var(--figuree-primary,#ff3b8a);
    outline:0;
}

body.single-post .figuree-blog-sidebar-widget .wp-block-latest-posts__post-date{
    display:block;
    margin-top:4px;
    color:#8a817a;
    font-size:11px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
}

body.single-post .figuree-blog-sidebar-widget .wp-block-search{
    margin:0;
}

body.single-post .figuree-blog-sidebar-widget .wp-block-search__label{
    display:block;
    margin:0 0 12px;
    color:#171717;
    font-size:13px;
    font-weight:850;
    line-height:1.2;
}

body.single-post .figuree-blog-sidebar-widget .wp-block-search__inside-wrapper{
    display:flex;
    gap:8px;
    padding:0;
    border:0;
}

body.single-post .figuree-blog-sidebar-widget input[type="search"],
body.single-post .figuree-blog-sidebar-widget .wp-block-search__input{
    min-width:0;
    width:100%;
    min-height:42px;
    padding:0 12px;
    border:1px solid rgba(20,18,16,.12);
    border-radius:10px;
    background:#faf8f5;
    color:#171717;
    font:inherit;
    font-size:13px;
}

body.single-post .figuree-blog-sidebar-widget input[type="search"]:focus,
body.single-post .figuree-blog-sidebar-widget .wp-block-search__input:focus{
    border-color:rgba(255,59,138,.55);
    outline:0;
    box-shadow:0 0 0 3px rgba(255,59,138,.1);
}

body.single-post .figuree-blog-sidebar-widget button,
body.single-post .figuree-blog-sidebar-widget .wp-block-search__button{
    min-height:42px;
    padding:0 14px;
    border:0;
    border-radius:10px;
    background:var(--figuree-primary,#ff3b8a);
    color:#fff;
    font-size:12px;
    font-weight:850;
    letter-spacing:.04em;
    text-transform:uppercase;
    cursor:pointer;
}

body.single-post .figuree-blog-sidebar-widget button:hover,
body.single-post .figuree-blog-sidebar-widget .wp-block-search__button:hover{
    background:#ff579b;
}

body.single-post .figuree-blog-sidebar-fallback{
    border-style:dashed;
    background:#fffdf9;
}

/* Widget-managed single post sidebar polish */
body.single-post .figuree-single-sidebar-inner,
body.single-post .figuree-blog-sidebar-widgets,
body.single-post .figuree-blog-sidebar-widget:has(.figuree-sidebar-card){
    gap:30px;
}

body.single-post .figuree-blog-sidebar-widget{
    padding:30px;
    border-color:rgba(20,18,16,.09);
    border-radius:14px;
    box-shadow:0 18px 54px rgba(16,13,11,.06);
}

body.single-post .figuree-blog-sidebar-widget:has(.figuree-sidebar-card){
    display:grid;
    overflow:visible;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
}

body.single-post .figuree-blog-sidebar-widget .figuree-sidebar-card{
    overflow:hidden;
    padding:30px;
    border:1px solid rgba(20,18,16,.09);
    border-radius:14px;
    background:#fff;
    color:#231f1c;
    box-shadow:0 18px 54px rgba(16,13,11,.06);
}

body.single-post .figuree-sidebar-kicker{
    display:block;
    margin:0 0 14px;
    color:var(--figuree-primary,#ff3b8a);
    font-size:11px;
    font-weight:850;
    letter-spacing:.12em;
    line-height:1;
    text-transform:uppercase;
}

body.single-post .figuree-blog-sidebar-widget h3,
body.single-post .figuree-blog-sidebar-widget-title,
body.single-post .figuree-blog-sidebar-widget .wp-block-heading{
    margin:0 0 14px;
    color:#171717 !important;
    font-size:clamp(18px,1.35vw,22px) !important;
    font-weight:760 !important;
    line-height:1.12 !important;
    letter-spacing:-.025em !important;
    text-transform:none !important;
}

body.single-post .figuree-sidebar-cta h3,
body.single-post .figuree-sidebar-freebies h3,
body.single-post .figuree-sidebar-guest-post h3,
body.single-post .figuree-sidebar-promo h3{
    max-width:15ch;
    font-size:clamp(20px,1.55vw,24px) !important;
}

body.single-post .figuree-sidebar-cta p,
body.single-post .figuree-sidebar-freebies p,
body.single-post .figuree-sidebar-guest-post p,
body.single-post .figuree-sidebar-promo p{
    margin:0 0 20px;
    color:#625951;
    font-size:14.5px;
    line-height:1.65;
}

body.single-post .figuree-sidebar-featured-fonts{
    display:grid;
}

body.single-post .figuree-sidebar-font-item{
    display:grid;
    grid-template-columns:minmax(0,1fr) 62px;
    gap:16px;
    align-items:center;
    padding:17px 0;
    border-bottom:1px solid rgba(20,18,16,.08);
    color:#201b18;
    text-decoration:none;
}

body.single-post .figuree-sidebar-font-item:first-of-type{
    padding-top:2px;
}

body.single-post .figuree-sidebar-font-item:last-child{
    padding-bottom:0;
    border-bottom:0;
}

body.single-post .figuree-sidebar-font-item span{
    display:grid;
    min-width:0;
    gap:4px;
}

body.single-post .figuree-sidebar-font-item strong{
    display:block;
    color:#171717;
    font-size:14.5px;
    font-weight:780;
    line-height:1.22;
    letter-spacing:-.01em;
}

body.single-post .figuree-sidebar-font-item small{
    display:block;
    color:#8a817a;
    font-size:10.5px;
    font-weight:800;
    letter-spacing:.07em;
    line-height:1.2;
    text-transform:uppercase;
}

body.single-post .figuree-sidebar-font-item em{
    display:block;
    color:var(--figuree-primary,#ff3b8a);
    font-size:13px;
    font-style:normal;
    font-weight:850;
    line-height:1.2;
}

body.single-post .figuree-sidebar-font-item img{
    width:62px;
    height:62px;
    border-radius:10px;
    background:#eee7df;
    color:transparent;
    font-size:0;
    object-fit:cover;
}

body.single-post .figuree-sidebar-latest-posts{
    display:grid;
}

body.single-post .figuree-sidebar-post-link{
    display:block;
    padding:15px 0;
    border-bottom:1px solid rgba(20,18,16,.08);
    color:#231f1c;
    font-size:14.5px;
    font-weight:730;
    line-height:1.42;
    letter-spacing:-.008em;
    text-decoration:none;
}

body.single-post .figuree-sidebar-post-link:first-of-type{
    padding-top:2px;
}

body.single-post .figuree-sidebar-post-link:last-child{
    padding-bottom:0;
    border-bottom:0;
}

body.single-post .figuree-sidebar-post-link:hover,
body.single-post .figuree-sidebar-post-link:focus{
    color:var(--figuree-primary,#ff3b8a);
    outline:0;
}

body.single-post .figuree-sidebar-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    margin-top:2px;
    padding:0 16px;
    border:1px solid rgba(255,59,138,.34);
    border-radius:999px;
    background:rgba(255,59,138,.07);
    color:var(--figuree-primary,#ff3b8a) !important;
    font-size:12px;
    font-weight:850;
    letter-spacing:.05em;
    line-height:1;
    text-decoration:none;
    text-transform:uppercase;
    transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease;
}

body.single-post .figuree-sidebar-button:hover,
body.single-post .figuree-sidebar-button:focus{
    border-color:rgba(255,59,138,.62);
    background:rgba(255,59,138,.12);
    color:#d91467 !important;
    transform:translateY(-1px);
    outline:0;
}

body.single-post .figuree-sidebar-promo{
    padding:0 !important;
}

body.single-post .figuree-sidebar-promo > img{
    width:100%;
    aspect-ratio:16 / 9;
    background:#eee7df;
    color:transparent;
    font-size:0;
    object-fit:cover;
}

body.single-post .figuree-sidebar-promo-body{
    padding:28px 30px 30px;
}

body.single-post .figuree-sidebar-cta,
body.single-post .figuree-sidebar-freebies,
body.single-post .figuree-sidebar-guest-post{
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,253,.98)),
        #fff;
}

@media(max-width:720px){
    body.single-post .figuree-single-sidebar-inner,
    body.single-post .figuree-blog-sidebar-widgets,
    body.single-post .figuree-blog-sidebar-widget:has(.figuree-sidebar-card){
        gap:24px;
    }

    body.single-post .figuree-blog-sidebar-widget,
    body.single-post .figuree-blog-sidebar-widget .figuree-sidebar-card{
        padding:24px;
        border-radius:12px;
    }

    body.single-post .figuree-sidebar-promo-body{
        padding:24px;
    }

    body.single-post .figuree-sidebar-font-item{
        grid-template-columns:minmax(0,1fr) 56px;
        gap:14px;
    }

    body.single-post .figuree-sidebar-font-item img{
        width:56px;
        height:56px;
    }
}

body.single-post .figuree-single-sidebar-promo{
    background:
        radial-gradient(circle at 100% 0%, rgba(255,59,138,.18), transparent 46%),
        linear-gradient(145deg, #211f22, #111);
    color:#fff;
}

body.single-post .figuree-single-sidebar-promo span,
body.single-post .figuree-single-sidebar-head span,
body.single-post .figuree-single-sidebar-note span,
body.single-post .figuree-single-section-head span{
    display:block;
    margin-bottom:10px;
    color:var(--figuree-primary,#ff3b8a);
    font-size:11px;
    font-weight:850;
    letter-spacing:.09em;
    line-height:1;
    text-transform:uppercase;
}

body.single-post .figuree-single-sidebar-promo h2{
    margin:0 0 12px;
    color:#fff !important;
    font-size:25px !important;
    font-weight:780 !important;
    line-height:1.05 !important;
    letter-spacing:-.025em !important;
    text-transform:none !important;
}

body.single-post .figuree-single-sidebar-promo p,
body.single-post .figuree-single-sidebar-note p{
    margin:0 0 18px;
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.65;
}

body.single-post .figuree-single-sidebar-promo a,
body.single-post .figuree-single-sidebar-note a{
    color:var(--figuree-primary,#ff3b8a);
    font-size:12px;
    font-weight:850;
    letter-spacing:.03em;
    text-decoration:none;
    text-transform:uppercase;
}

body.single-post .figuree-single-sidebar-note{
    background:#1d1b1d;
    color:#fff;
}

body.single-post .figuree-single-product-list,
body.single-post .figuree-single-sidebar-posts{
    display:grid;
    gap:14px;
}

body.single-post .figuree-single-product-list a{
    display:grid;
    grid-template-columns:58px minmax(0,1fr);
    gap:12px;
    align-items:center;
    color:#171717;
    text-decoration:none;
}

body.single-post .figuree-single-product-thumb{
    overflow:hidden;
    width:58px;
    height:58px;
    border-radius:8px;
    background:#eee7df;
}

body.single-post .figuree-single-product-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

body.single-post .figuree-single-product-list strong,
body.single-post .figuree-single-sidebar-posts strong{
    display:block;
    color:#181818;
    font-size:13px;
    font-weight:800;
    line-height:1.25;
}

body.single-post .figuree-single-product-list small{
    display:block;
    margin-top:3px;
    color:#8a817a;
    font-size:10px;
    font-weight:850;
    letter-spacing:.08em;
    line-height:1.1;
    text-transform:uppercase;
}

body.single-post .figuree-single-product-list em{
    display:block;
    margin-top:4px;
    color:var(--figuree-primary,#ff3b8a);
    font-size:12px;
    font-style:normal;
    font-weight:800;
}

body.single-post .figuree-single-sidebar-posts a{
    display:block;
    padding-top:14px;
    border-top:1px solid rgba(20,18,16,.08);
    text-decoration:none;
}

body.single-post .figuree-single-sidebar-posts a:first-child{
    padding-top:0;
    border-top:0;
}

body.single-post .figuree-single-sidebar-posts time{
    display:block;
    margin-bottom:6px;
    color:#8a817a;
    font-size:11px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
}

body.single-post .figuree-single-toc ol{
    display:grid;
    gap:10px;
    margin:0;
    padding:0;
    list-style:none;
}

body.single-post .figuree-single-toc li{
    margin:0;
}

body.single-post .figuree-single-toc li.is-level-3{
    padding-left:14px;
}

body.single-post .figuree-single-toc a{
    display:block;
    color:#4f4843;
    font-size:13px;
    font-weight:720;
    line-height:1.35;
    text-decoration:none;
}

body.single-post .figuree-single-toc a:hover{
    color:var(--figuree-primary,#ff3b8a);
}

body.single-post .figuree-single-related,
body.single-post .figuree-single-comments{
    margin-top:72px;
    padding-top:42px;
    border-top:1px solid rgba(24,20,17,.1);
}

body.single-post .figuree-single-section-head h2{
    margin:0 0 22px;
    color:#111 !important;
    font-size:30px !important;
    font-weight:760 !important;
    line-height:1.1 !important;
    letter-spacing:-.025em !important;
    text-transform:none !important;
}

body.single-post .figuree-single-related-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
}

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

body.single-post .figuree-single-related.has-2-cards .figuree-single-related-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

body.single-post .figuree-single-related.has-1-cards .figuree-single-related-grid{
    grid-template-columns:minmax(0, 420px);
}

body.single-post .figuree-single-related .figuree-journal-card{
    border-color:rgba(24,20,17,.09);
    background:#fff;
    box-shadow:0 14px 36px rgba(16,13,11,.06);
}

body.single-post .figuree-single-related .figuree-journal-card:hover{
    border-color:color-mix(in srgb,var(--figuree-primary,#ff3b8a) 34%,rgba(24,20,17,.12));
    background:#fff;
}

body.single-post .figuree-single-related .figuree-journal-card-media{
    background:#f0ece7;
}

body.single-post .figuree-single-related .figuree-journal-card-media span{
    color:rgba(20,18,16,.22);
}

body.single-post .figuree-single-related .figuree-journal-card-body{
    padding:18px;
}

body.single-post .figuree-single-related .figuree-journal-date-badge{
    color:#8a817a;
}

body.single-post .figuree-single-related .figuree-journal-date-badge::before{
    border-color:rgba(20,18,16,.38);
    background:
        linear-gradient(rgba(20,18,16,.42),rgba(20,18,16,.42)) 2px 3px / 9px 1px no-repeat,
        linear-gradient(rgba(20,18,16,.38),rgba(20,18,16,.38)) 3px 0 / 1px 4px no-repeat,
        linear-gradient(rgba(20,18,16,.38),rgba(20,18,16,.38)) 9px 0 / 1px 4px no-repeat;
}

body.single-post .figuree-single-related .figuree-journal-card h2{
    color:#171717 !important;
    font-size:18px !important;
    font-weight:760 !important;
    line-height:1.16 !important;
}

body.single-post .figuree-single-related .figuree-journal-card p{
    color:#625b55;
    font-size:13px;
    line-height:1.55;
    -webkit-line-clamp:2;
}

body.single-post .figuree-single-related .figuree-journal-card-category{
    color:#7d746d;
}

body.single-post .figuree-single-bottom-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    margin-top:56px;
    padding:28px;
    border:1px solid rgba(24,20,17,.1);
    border-radius:14px;
    background:linear-gradient(135deg, #fff 0%, #faf7f6 100%);
}

body.single-post .figuree-single-bottom-cta span{
    display:block;
    margin-bottom:10px;
    color:var(--figuree-primary,#ff3b8a);
    font-size:11px;
    font-weight:850;
    letter-spacing:.09em;
    line-height:1;
    text-transform:uppercase;
}

body.single-post .figuree-single-bottom-cta h2{
    margin:0;
    color:#111 !important;
    font-size:28px !important;
    font-weight:760 !important;
    line-height:1.12 !important;
    letter-spacing:-.025em !important;
    text-transform:none !important;
}

body.single-post .figuree-single-bottom-cta-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

body.single-post .figuree-single-bottom-cta-actions a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 18px;
    border:1px solid var(--figuree-primary,#ff3b8a);
    border-radius:6px;
    color:var(--figuree-primary,#ff3b8a);
    font-size:12px;
    font-weight:850;
    letter-spacing:.05em;
    text-decoration:none;
    text-transform:uppercase;
}

body.single-post .figuree-single-bottom-cta-actions a:first-child{
    background:var(--figuree-primary,#ff3b8a);
    color:#fff;
}

body.single-post .figuree-single-related-card{
    display:grid;
    gap:11px;
    padding:12px;
    border:1px solid rgba(24,20,17,.09);
    border-radius:10px;
    background:#fff;
    color:#171717;
    text-decoration:none;
}

body.single-post .figuree-single-related-card img,
body.single-post .figuree-single-related-fallback{
    width:100%;
    aspect-ratio:16 / 10;
    border-radius:8px;
    object-fit:cover;
    filter:grayscale(1);
    transition:filter .28s ease;
}

body.single-post .figuree-single-related-card:hover img{
    filter:grayscale(0);
}

body.single-post .figuree-single-related-fallback{
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, #191719, #3a2a31);
    color:rgba(255,255,255,.62);
    font-size:11px;
    font-weight:900;
    letter-spacing:.14em;
}

body.single-post .figuree-single-related-card span{
    color:#8a817a;
    font-size:11px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
}

body.single-post .figuree-single-related-card strong{
    color:#171717;
    font-size:16px;
    font-weight:800;
    line-height:1.28;
}

body.single-post .figuree-single-comment-list{
    margin:0 0 34px;
    padding:0;
    list-style:none;
}

body.single-post .figuree-single-comments{
    max-width:none;
    width:100%;
    margin-right:auto;
    margin-left:auto;
}

body.single-post .figuree-single-comments .comment-respond,
body.single-post .figuree-single-comments .comment-list,
body.single-post .figuree-single-comments .figuree-single-comment-list,
body.single-post .figuree-single-comments .navigation{
    max-width:1040px;
    margin-right:auto;
    margin-left:auto;
}

body.single-post .figuree-single-comments .comment-reply-title{
    margin:0 0 14px;
    color:#111 !important;
    font-size:30px !important;
    font-weight:760 !important;
    line-height:1.1 !important;
    letter-spacing:-.025em !important;
    text-transform:none !important;
}

body.single-post .figuree-single-comments .comment-notes,
body.single-post .figuree-single-comments .logged-in-as,
body.single-post .figuree-single-comments .must-log-in{
    margin:0 0 18px;
    padding:18px 20px;
    border:1px solid rgba(24,20,17,.1);
    border-radius:10px;
    background:#fbfaf8;
    color:#68615b;
    font-size:14px;
    line-height:1.6;
}

body.single-post .figuree-single-comments .logged-in-as a,
body.single-post .figuree-single-comments .comment-notes a,
body.single-post .figuree-single-comments .must-log-in a{
    color:var(--figuree-primary,#ff3b8a);
}

body.single-post .figuree-single-comments .comment-form p{
    margin:0;
}

body.single-post .figuree-single-comments label{
    display:block;
    margin-bottom:8px;
    color:#4f4843;
    font-size:11px;
    font-weight:850;
    letter-spacing:.08em;
    line-height:1;
    text-transform:uppercase;
}

body.single-post .figuree-single-comments .form-submit input[type="submit"]{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 22px;
    border:1px solid var(--figuree-primary,#ff3b8a);
    border-radius:7px;
    background:var(--figuree-primary,#ff3b8a);
    color:#fff;
    cursor:pointer;
    font-size:12px;
    font-weight:850;
    letter-spacing:.05em;
    text-transform:uppercase;
}

body.single-post .figuree-single-comment-list .comment{
    margin:0 0 16px;
    padding:18px;
    border:1px solid rgba(24,20,17,.09);
    border-radius:10px;
    background:#fff;
}

body.single-post .figuree-single-comments .comment-form{
    display:grid;
    gap:14px;
}

body.single-post .figuree-single-comments input:not([type="submit"]),
body.single-post .figuree-single-comments textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd5cc;
    border-radius:8px;
    background:#fff;
    color:#171717;
    font:inherit;
}

@media(max-width:1320px){
    body.single-post .figuree-single-post-wrap{
        width:calc(100% - 56px);
    }

    body.single-post .figuree-single-post-layout{
        gap:56px;
    }

    body.single-post .figuree-single-post-main{
        padding:48px 48px 0;
    }
}

@media(max-width:1180px){
    body.single-post .figuree-single-post{
        padding:var(--figuree-header-clearance, 56px) 0 86px;
    }

    body.single-post .figuree-single-post-layout{
        grid-template-columns:1fr;
        gap:30px;
    }

    body.single-post .figuree-single-sidebar-inner{
        position:static;
        grid-template-columns:1fr;
        gap:18px;
    }

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

@media(max-width:720px){
    body.single-post .figuree-single-post{
        padding:var(--figuree-header-clearance, 34px) 0 72px;
    }

    body.single-post .figuree-single-post-wrap{
        width:calc(100% - 32px);
    }

    body.single-post .figuree-single-post-main{
        padding:28px 22px 0;
        border-radius:10px;
    }

    body.single-post .figuree-single-post-header h1{
        font-size:clamp(31px, 9vw, 38px) !important;
        line-height:1.12 !important;
    }

    body.single-post .figuree-single-post-dek,
    body.single-post .figuree-single-post-content{
        font-size:16.5px;
        line-height:1.78;
    }

    body.single-post .figuree-single-post-content h2{
        font-size:25px !important;
    }

    body.single-post .figuree-single-sidebar-inner,
    body.single-post .figuree-single-related-grid{
        grid-template-columns:1fr;
    }

    body.single-post .figuree-single-inline-toc ol{
        grid-template-columns:1fr;
        padding:16px;
    }

    body.single-post .figuree-single-tags,
    body.single-post .figuree-single-share{
        display:grid;
        gap:12px;
    }

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

    body.single-post .figuree-single-bottom-cta{
        display:grid;
        padding:22px;
    }

    body.single-post .figuree-single-bottom-cta-actions a{
        width:100%;
    }
}

/* ==========================================
JOURNAL HERO EDITORIAL ACCENT
========================================== */

.figuree-journal-hero h1 .figuree-heading-accent{
    font-family:"Instrument Serif", "Instrument Serif", Georgia, "Times New Roman", serif;
    font-style:italic;
    font-weight:400;
    letter-spacing:-.035em;
    text-transform:none;
    white-space:nowrap;
}

/* ==========================================
   BLOG ARCHIVE — FOLLOW GLOBAL BACKGROUND + STICKY HEADER FIX
   Applies to blog archive, category, tag, date, author, and search pages
========================================== */

body.blog,
body.archive,
body.category,
body.tag,
body.date,
body.author,
body.search{
    background:var(--figuree-bg,var(--fs-bg,#050505))!important;
    overflow-x:clip!important;
}

body.blog .site-main,
body.archive .site-main,
body.category .site-main,
body.tag .site-main,
body.date .site-main,
body.author .site-main,
body.search .site-main,
body.blog .wp-site-blocks,
body.archive .wp-site-blocks,
body.category .wp-site-blocks,
body.tag .wp-site-blocks,
body.date .wp-site-blocks,
body.author .wp-site-blocks,
body.search .wp-site-blocks{
    background:transparent!important;
}

/* Journal wrapper follows global site background */
body.blog .figuree-journal,
body.archive .figuree-journal,
body.category .figuree-journal,
body.tag .figuree-journal,
body.date .figuree-journal,
body.author .figuree-journal,
body.search .figuree-journal,
body.blog .figuree-journal-page,
body.archive .figuree-journal-page,
body.category .figuree-journal-page,
body.tag .figuree-journal-page,
body.date .figuree-journal-page,
body.author .figuree-journal-page,
body.search .figuree-journal-page{
    background:transparent!important;
}

/* Journal hero follows global site background */
body.blog .figuree-journal-hero,
body.archive .figuree-journal-hero,
body.category .figuree-journal-hero,
body.tag .figuree-journal-hero,
body.date .figuree-journal-hero,
body.author .figuree-journal-hero,
body.search .figuree-journal-hero,
body.blog .journal-hero,
body.archive .journal-hero,
body.category .journal-hero,
body.tag .journal-hero,
body.date .journal-hero,
body.author .journal-hero,
body.search .journal-hero{
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    backdrop-filter:none!important;
    -webkit-backdrop-filter:none!important;
}

/* Remove decorative hero background layers */
body.blog .figuree-journal-hero::before,
body.blog .figuree-journal-hero::after,
body.archive .figuree-journal-hero::before,
body.archive .figuree-journal-hero::after,
body.category .figuree-journal-hero::before,
body.category .figuree-journal-hero::after,
body.tag .figuree-journal-hero::before,
body.tag .figuree-journal-hero::after,
body.date .figuree-journal-hero::before,
body.date .figuree-journal-hero::after,
body.author .figuree-journal-hero::before,
body.author .figuree-journal-hero::after,
body.search .figuree-journal-hero::before,
body.search .figuree-journal-hero::after,
body.blog .journal-hero::before,
body.blog .journal-hero::after,
body.archive .journal-hero::before,
body.archive .journal-hero::after,
body.category .journal-hero::before,
body.category .journal-hero::after,
body.tag .journal-hero::before,
body.tag .journal-hero::after,
body.date .journal-hero::before,
body.date .journal-hero::after,
body.author .journal-hero::before,
body.author .journal-hero::after,
body.search .journal-hero::before,
body.search .journal-hero::after{
    display:none!important;
    content:none!important;
}

/* Keep header sticky on blog archive templates */
body.blog .site-header,
body.archive .site-header,
body.category .site-header,
body.tag .site-header,
body.date .site-header,
body.author .site-header,
body.search .site-header,
body.blog #masthead,
body.archive #masthead,
body.category #masthead,
body.tag #masthead,
body.date #masthead,
body.author #masthead,
body.search #masthead,
body.blog .figuree-header,
body.archive .figuree-header,
body.category .figuree-header,
body.tag .figuree-header,
body.date .figuree-header,
body.author .figuree-header,
body.search .figuree-header,
body.blog .fs-header,
body.archive .fs-header,
body.category .fs-header,
body.tag .fs-header,
body.date .fs-header,
body.author .fs-header,
body.search .fs-header,
body.blog .wp-site-blocks > header,
body.archive .wp-site-blocks > header,
body.category .wp-site-blocks > header,
body.tag .wp-site-blocks > header,
body.date .wp-site-blocks > header,
body.author .wp-site-blocks > header,
body.search .wp-site-blocks > header{
    position:sticky!important;
    top:var(--figuree-header-top-spacing,20px)!important;
    z-index:9999!important;
}

@media(max-width:900px){
    body.blog .figuree-header,
    body.archive .figuree-header,
    body.category .figuree-header,
    body.tag .figuree-header,
    body.date .figuree-header,
    body.author .figuree-header,
    body.search .figuree-header{
        top:var(--figuree-header-mobile-top-spacing,var(--figuree-header-top-spacing,20px))!important;
    }
}
