                      h2{
                          font-weight: normal;
                          font-size: 25px;
                      }

h2 strong{
    font-weight: 700;
    font-size: 25px;
}
/* Page hero */
.post-hero{
    margin: 0 0 24px;
    border-radius: 24px;
    overflow:hidden;
    border: 1px solid rgba(229,231,235,.9);
    background:
            radial-gradient(700px 380px at 10% 10%, rgba(52,211,153,.18), transparent 55%),
            radial-gradient(700px 380px at 90% 20%, rgba(96,165,250,.14), transparent 55%),
            linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.post-hero-inner{
    padding: 26px 26px 22px;
}

.post-kicker{
    display:inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(229,231,235,.9);
    font-size: 12px;
    font-weight: 800;
    color:#111827;
}

.post-title{
    margin: 12px 0 10px;
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 900;
    color:#0b1220;
}

.post-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap: 8px;
    color:black;
    font-size: 13px;
    font-weight: 600;
}

.post-meta .dot{
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand, #34d399);
    box-shadow: 0 0 0 4px rgba(52,211,153,.18);
}
.post-meta .sep{ opacity:.7; }

.post-actions{
    display:flex;
    gap: 10px;
    margin-top: 14px;
}

.share-btn{
    border: 2px solid #e5e7eb;
    background: #fff;
    color:#111827;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    text-decoration:none;
}
.share-btn:hover{
    transform: translateY(-2px);
    border-color: var(--brand, #34d399);
    box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
.share-btn.ghost{
    background: rgba(255,255,255,.65);
}

/* Content card */
.post-card{
    border-radius: 24px;
    border: 1px solid rgba(229,231,235,.9);
    background:#fff;
    box-shadow: 0 14px 40px rgba(0,0,0,.06);
    overflow:hidden;
}

.post-content{
    padding: 26px;
    color:#111827;
    font-size: 16.5px;
    line-height: 1.75;
}

/* Typography inside Html.Raw */
.post-content p{ margin: 0 0 14px; color:#111827; }
.post-content h2{
    margin: 26px 0 12px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.01em;
}
.post-content h3{
    margin: 18px 0 10px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
}
.post-content a{
    color:#111827;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(52,211,153,.6);
}
.post-content a:hover{ text-decoration-color: rgba(52,211,153,.9); }

.post-content ul, .post-content ol{
    padding-left: 20px;
    margin: 0 0 14px;
}
.post-content li{ margin: 6px 0; }

.post-content blockquote{
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid var(--brand, #34d399);
    background: #f8fafc;
    border-radius: 14px;
    color:#374151;
}

.post-content pre{
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 16px;
    background:#0b1220;
    color:#e5e7eb;
    overflow:auto;
}
.post-content code{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
}

/* Sidebar cards + sticky */
.themeht-sidebar{
    position: sticky;
    top: 90px;
}

.widget-card{
    border-radius: 20px;
    border: 1px solid rgba(229,231,235,.9);
    background:#fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: 16px;
    margin-bottom: 16px;
}

.widget-title{
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .02em;
    color:#111827;
    margin: 0 0 12px;
}

/* Recent posts list */
.recent-post a{
    display:block;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(229,231,235,.8);
    background: #fff;
    color:#111827;
    text-decoration:none;
    font-weight: 800;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.recent-post a:hover{
    transform: translateY(-2px);
    border-color: var(--brand, #34d399);
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

/* Tags */
.widget-tags a{
    display:inline-flex;
    margin: 6px 6px 0 0;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(229,231,235,.9);
    background: rgba(255,255,255,.8);
    color:#111827;
    font-size: 12px;
    font-weight: 800;
    text-decoration:none;
    transition: border-color .18s ease, transform .18s ease;
}
.widget-tags a:hover{
    transform: translateY(-1px);
    border-color: var(--brand, #34d399);
}

/* Mobile */
@@media (max-width: 992px){
    .themeht-sidebar{ position: static; top:auto; }
    .post-title{ font-size: 28px; }
    .post-content{ padding: 18px; }
}
