.vm-blog{
    --b: var(--border, #e5e7eb);
    --m: var(--muted, #6b7280);
    --p: var(--primary, #3b82f6);
    --soft: #f3f8ff;
    --card: #ffffff;
    --primary: #c5a059;
    --secondary: #1a2332;
}

/* ====== Section Head ====== */
.vm-blog .vm-sec-head{
    display:flex; align-items:center; justify-content:space-between;
    gap:12px; margin: 8px 0 14px;
}
.vm-blog .vm-sec-title{
    display:flex; align-items:center; gap:10px;
    margin:0; font-weight:950; font-size:18px;
}
.vm-blog .vm-sec-title .vm-badge{
    width:34px; height:34px; border-radius:12px;
    display:grid; place-items:center;
    background: rgba(59,130,246,.12);
    border:1px solid rgba(59,130,246,.25);
    color: var(--p);
}
.vm-blog .vm-sec-more{
    text-decoration:none;
    color: var(--p);
    font-weight:800;
    font-size:13px;
    display:flex; align-items:center; gap:8px;
}

/* ====== HERO (اسکرین‌شات اول) ====== */
.vm-blog .hero-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    margin: 10px 0 18px;
}
.vm-blog .hero-card{
    position:relative;
    overflow:hidden;
    border-radius:26px;
    border:1px solid var(--b);
    background:#0b1220;
    color:#fff;
    text-decoration:none;
    min-height: 220px;
    display:flex;
    align-items:flex-end;
    padding:16px;
}
.vm-blog .hero-card__img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    filter: brightness(.85);
    transform: scale(1.02);
    transition: transform .35s ease;
}
.vm-blog .hero-card:hover .hero-card__img{ transform: scale(1.07); }
.vm-blog .hero-card::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.80));
}
.vm-blog .hero-card__content{ position:relative; z-index:1; width:100%; }
.vm-blog .hero-card__meta{
    display:flex; align-items:center; justify-content:space-between;
    gap:10px; font-size:12px; opacity:.95; margin-bottom:10px;
}
.vm-blog .hero-tag{
    display:inline-flex; align-items:center; gap:8px;
    padding:6px 10px;
    border-radius:999px;
    background: rgba(59,130,246,.18);
    border:1px solid rgba(59,130,246,.30);
    color:#fff;
    white-space:nowrap;
}
.vm-blog .hero-date{
    display:inline-flex; align-items:center; gap:6px;
    opacity:.95;
}
.vm-blog .hero-title{
    margin:0;
    font-weight:950;
    font-size:16px;
    line-height:1.7;
}

/* دسکتاپ: 6 کارت مثل اسکرین‌شات اول */
@media (min-width: 992px){
    .vm-blog .hero-grid{
        grid-template-columns: 1.35fr .85fr .85fr 1.05fr;
        grid-auto-rows: 190px;
    }
    .vm-blog .hero-card{ min-height: 190px; }
    .vm-blog .hero-card--1{ grid-column:1; grid-row:1 / span 2; }
    .vm-blog .hero-card--2{ grid-column:2; grid-row:1; }
    .vm-blog .hero-card--3{ grid-column:3; grid-row:1; }
    .vm-blog .hero-card--4{ grid-column:2; grid-row:2; }
    .vm-blog .hero-card--5{ grid-column:3; grid-row:2; }
    .vm-blog .hero-card--6{ grid-column:4; grid-row:1 / span 2; }
}

/* ====== CATEGORIES (قشنگ‌تر از اسکرین‌شات دوم) ====== */
.vm-blog .cats-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:12px;
    margin: 10px 0 22px;
}
.vm-blog .cat-tile{
    position:relative;
    display:flex; align-items:center; justify-content:space-between;
    gap:12px;
    padding:16px;
    border-radius:22px;
    border:1px solid var(--b);
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    text-decoration:none;
    color:inherit;
    box-shadow: 0 10px 30px rgba(2, 8, 23, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}
.vm-blog .cat-tile:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(2, 8, 23, .07);
}
.vm-blog .cat-count{
    width:40px; height:40px;
    border-radius:999px;
    display:grid; place-items:center;
    background: rgba(59,130,246,.14);
    border:1px solid rgba(59,130,246,.25);
    color: var(--p);
    font-weight:950;
    flex: 0 0 auto;
}
.vm-blog .cat-name{
    font-weight:900;
    font-size:14px;
    margin:0;
}
.vm-blog .cat-hint{
    margin:6px 0 0;
    font-size:12px;
    color: var(--m);
}
.vm-blog .cat-arrow{
    width:36px; height:36px;
    border-radius:14px;
    display:grid; place-items:center;
    background:#fff;
    border:1px solid var(--b);
    color: var(--p);
    flex: 0 0 auto;
}
@media (min-width: 768px){
    .vm-blog .cats-grid{ grid-template-columns: repeat(5, 1fr); }
}

/* ====== پایین صفحه (اسکرین‌شات سوم) ====== */
.vm-blog .blog-wrap{
    background: var(--soft);
    border:1px solid rgba(59,130,246,.10);
    border-radius:30px;
    padding:16px;
}
.vm-blog .blog-layout{
    display:grid;
    grid-template-columns: 1fr;
    gap:16px;
}
@media (min-width: 992px){
    .vm-blog .blog-layout{ grid-template-columns: 330px 1fr; }
}

.vm-blog .panel{
    background: var(--card);
    border:1px solid var(--b);
    border-radius:24px;
    padding:14px;
}
.vm-blog .panel-head{
    display:flex; align-items:center; justify-content:space-between;
    gap:12px; margin-bottom:12px;
}
.vm-blog .panel-title{
    margin:0; font-size:16px; font-weight:950;
    display:flex; align-items:center; gap:10px;
}
.vm-blog .panel-title .vm-badge{ width:30px; height:30px; border-radius:12px; }

.vm-blog .side-list{ display:flex; flex-direction:column; gap:10px; }
.vm-blog .side-item{
    display:grid; grid-template-columns: 56px 1fr;
    gap:10px;
    padding:10px;
    border-radius:18px;
    border:1px solid rgba(2, 8, 23, .06);
    background:#fff;
    text-decoration:none; color:inherit;
    transition: transform .15s ease;
}
.vm-blog .side-item:hover{ transform: translateY(-1px); }
.vm-blog .side-img{
    width:56px; height:56px; border-radius:16px;
    object-fit:cover; background:#eef6ff; border:1px solid var(--b);
}
.vm-blog .side-title{ margin:0; font-weight:900; font-size:13px; line-height:1.7; }
.vm-blog .side-meta{ margin-top:6px; color:var(--m); font-size:12px; display:flex; gap:10px; align-items:center; }

.vm-blog .follow-box{ display:flex; flex-direction:column; gap:10px; }
.vm-blog .follow-btn{
    display:flex; align-items:center; justify-content:space-between;
    gap:10px;
    padding:12px 14px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    text-decoration:none;
    font-weight:900;
}
.vm-blog .follow-btn small{ font-weight:700; opacity:.9; }
.vm-blog .follow-ig{ background: linear-gradient(90deg, #e1306c, #833ab4); }
.vm-blog .follow-tg{ background: linear-gradient(90deg, #229ED9, #2AABEE); }
.vm-blog .follow-wa{ background: linear-gradient(90deg, #25D366, #1DAA5A); }

/* کارت‌های لیست اصلی */
.vm-blog .posts-grid{
    display:grid;
    grid-template-columns: 1fr;
    gap:14px;
}
@media (min-width: 768px){
    .vm-blog .posts-grid{ grid-template-columns: repeat(3, 1fr); }
}
.vm-blog .post-card{
    background:#fff;
    border:1px solid var(--b);
    border-radius:24px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    box-shadow: 0 10px 30px rgba(2, 8, 23, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}
.vm-blog .post-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(2, 8, 23, .07);
}
.vm-blog .post-img{
    width:100%; height:180px;
    object-fit:cover;
    background:#eef6ff;
    display:block;
}
.vm-blog .post-body{ padding:12px 14px 14px; }
.vm-blog .post-title{
    margin:0;
    font-weight:950;
    font-size:14px;
    line-height:1.8;
}
.vm-blog .post-excerpt{
    margin:10px 0 0;
    color:var(--m);
    font-size:12px;
    line-height:1.9;
}
.vm-blog .post-meta{
    margin-top:12px;
    color:var(--m);
    font-size:12px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
}

/* ====== Pagination ====== */
.vm-blog .vm-pagination{
    margin-top: 14px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}
.vm-blog .vm-page{
    width:40px; height:40px;
    border-radius:14px;
    display:grid; place-items:center;
    border:1px solid var(--b);
    background:#fff;
    color:#111827;
    text-decoration:none;
    font-weight:900;
    transition: transform .15s ease, background .15s ease;
}
.vm-blog .vm-page:hover{ transform: translateY(-1px); }
.vm-blog .vm-page.is-active{
    background: var(--p);
    border-color: var(--p);
    color:#fff;
}
.vm-blog .vm-page.is-disabled{
    opacity:.45;
    pointer-events:none;
}
.vm-blog .vm-ellipsis{
    width:40px; height:40px;
    border-radius:14px;
    display:grid; place-items:center;
    color:var(--m);
}
/* ====== Breadcrumb ====== */
.vm-blog .vm-breadcrumb{
    margin: 10px 0 16px;
    background: rgba(2, 8, 23, .03);
    border: 1px solid rgba(2, 8, 23, .06);
    border-radius: 22px;
    padding: 14px 16px;
}

.vm-blog .vm-breadcrumb__inner{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:13px;
    color: var(--m);
    font-weight:800;
}

.vm-blog .vm-breadcrumb a{
    color: var(--p);
    text-decoration:none;
    font-weight:950;
}

.vm-blog .vm-breadcrumb a:hover{
    text-decoration:underline;
}

.vm-blog .vm-breadcrumb .sep{
    opacity:.55;
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.vm-blog .vm-breadcrumb .sep i{
    font-size:12px;
}
/* ====== Category Page (Blog Category) ====== */
.vm-blog .cat-hero{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    border:1px solid var(--b);
    background: linear-gradient(180deg, #ffffff, #f5faff);
    padding:16px;
    margin: 10px 0 18px;
    box-shadow: 0 10px 30px rgba(2, 8, 23, .04);
}
.vm-blog .cat-hero__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    flex-wrap:wrap;
}
.vm-blog .cat-hero__left{
    display:flex;
    align-items:center;
    gap:12px;
}
.vm-blog .cat-hero__ic{
    width:46px; height:46px;
    border-radius:18px;
    display:grid; place-items:center;
    background: rgba(59,130,246,.12);
    border:1px solid rgba(59,130,246,.25);
    color: var(--p);
    flex: 0 0 auto;
}
.vm-blog .cat-hero__title{
    margin:0;
    font-weight:950;
    font-size:18px;
    line-height:1.7;
}
.vm-blog .cat-hero__desc{
    margin:6px 0 0;
    color: var(--m);
    font-size:12px;
    line-height:1.9;
}
.vm-blog .cat-hero__right{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}
.vm-blog .cat-stat{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:18px;
    border:1px solid rgba(2, 8, 23, .06);
    background:#fff;
    color:#111827;
    font-weight:900;
    font-size:13px;
}
.vm-blog .cat-stat i{ color: var(--p); }
.vm-blog .cat-back{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 12px;
    border-radius:18px;
    border:1px solid rgba(59,130,246,.22);
    background: rgba(59,130,246,.08);
    color: var(--p);
    text-decoration:none;
    font-weight:950;
    font-size:13px;
}
.vm-blog .cat-back:hover{ text-decoration:underline; }

/* active category tile */
.vm-blog .cat-tile.is-active{
    border-color: rgba(59,130,246,.35);
    box-shadow: 0 14px 36px rgba(59,130,246,.10);
}
.vm-blog .cat-tile.is-active .cat-count{
    background: var(--p);
    border-color: var(--p);
    color:#fff;
}
.vm-blog .cat-tile.is-active .cat-arrow{
    border-color: rgba(59,130,246,.35);
}
/* ====== Single Post ====== */
.vm-blog.vm-blog-single .single-layout{
    display:grid;
    grid-template-columns: 1fr;
    gap:16px;
}
@media (min-width: 992px){
    .vm-blog.vm-blog-single .single-layout{
        grid-template-columns: 1fr 330px;
        align-items:start;
    }
}

.vm-blog.vm-blog-single .single-hero{
    border:1px solid var(--b);
    border-radius:30px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    padding:16px;
    box-shadow: 0 10px 30px rgba(2, 8, 23, .04);
    position:relative;
    overflow:hidden;
}
.vm-blog.vm-blog-single .single-hero::after{
    content:"";
    position:absolute; inset:-40px -60px auto auto;
    width:220px; height:220px;
    background: radial-gradient(circle, rgba(59,130,246,.18), rgba(59,130,246,0));
    filter: blur(2px);
}
.vm-blog.vm-blog-single .single-hero__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
    position:relative;
    z-index:1;
}

.vm-blog.vm-blog-single .single-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background: rgba(59,130,246,.10);
    border:1px solid rgba(59,130,246,.22);
    color: var(--p);
    text-decoration:none;
    font-weight:950;
    font-size:12px;
}
.vm-blog.vm-blog-single .single-meta{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    color: var(--m);
    font-size:12px;
    font-weight:800;
}
.vm-blog.vm-blog-single .single-meta i{ color: rgba(59,130,246,.9); }

.vm-blog.vm-blog-single .single-title{
    margin: 12px 0 0;
    font-weight:950;
    font-size:22px;
    line-height:1.75;
    position:relative;
    z-index:1;
}
@media (min-width: 768px){
    .vm-blog.vm-blog-single .single-title{ font-size:26px; }
}

.vm-blog.vm-blog-single .single-actions{
    display:flex;
    align-items:center;
    gap:8px;
    position:relative;
    z-index:1;
}
.vm-blog.vm-blog-single .icon-btn{
    width:40px; height:40px;
    border-radius:14px;
    display:grid; place-items:center;
    border:1px solid var(--b);
    background:#fff;
    color:#111827;
    text-decoration:none;
    cursor:pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
.vm-blog.vm-blog-single .icon-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(2, 8, 23, .06);
}
.vm-blog.vm-blog-single .icon-btn.is-primary{
    border-color: rgba(59,130,246,.25);
    background: rgba(59,130,246,.08);
    color: var(--p);
}

.vm-blog.vm-blog-single .single-cover{
    margin: 14px 0 0;
    border-radius:30px;
    overflow:hidden;
    border:1px solid var(--b);
    background:#eef6ff;
    box-shadow: 0 10px 30px rgba(2, 8, 23, .04);
}
.vm-blog.vm-blog-single .single-cover img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}
.vm-blog.vm-blog-single .single-cover figcaption{
    padding:10px 14px;
    font-size:12px;
    color: var(--m);
    background:#fff;
    border-top:1px solid rgba(2, 8, 23, .06);
}

.vm-blog.vm-blog-single .single-article{
    margin-top:14px;
    background:#fff;
    border:1px solid var(--b);
    border-radius:30px;
    padding:16px;
    box-shadow: 0 10px 30px rgba(2, 8, 23, .04);
}

.vm-blog.vm-blog-single .single-footer{
    margin-top:14px;
    padding-top:14px;
    border-top:1px dashed rgba(2, 8, 23, .12);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
}
.vm-blog.vm-blog-single .tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(2,8,23,.08);
    background: rgba(2,8,23,.02);
    color:#111827;
    text-decoration:none;
    font-weight:900;
    font-size:12px;
}
.vm-blog.vm-blog-single .tag i{ color: var(--p); }

/* Sidebar */
.vm-blog.vm-blog-single .single-sticky{
    position: sticky;
    top: 18px;
}
.vm-blog.vm-blog-single .cta-card{
    border-radius:24px;
    padding:14px;
    border:1px solid rgba(59,130,246,.18);
    background: linear-gradient(180deg, rgba(59,130,246,.08), rgba(59,130,246,.02));
}
.vm-blog.vm-blog-single .cta-title{
    margin:0;
    font-weight:950;
    font-size:15px;
}
.vm-blog.vm-blog-single .cta-text{
    margin:8px 0 0;
    color: var(--m);
    font-size:12px;
    line-height:1.9;
}
.vm-blog.vm-blog-single .cta-actions{
    margin-top:12px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.vm-blog.vm-blog-single .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 12px;
    border-radius:18px;
    font-weight:950;
    font-size:13px;
    text-decoration:none;
    border:1px solid var(--b);
    background:#fff;
    color:#111827;
}
.vm-blog.vm-blog-single .btn-primary{
    border-color: rgba(59,130,246,.28);
    background: rgba(59,130,246,.10);
    color: var(--p);
}

/* CKEditor-friendly content */
.vm-blog.vm-blog-single .single-content.ck-content {
    line-height: 2;
    color: #334155;
    font-size: 16px;
    word-wrap: break-word;
}

/* هدینگ‌ها: سلسله مراتب دقیق */
.vm-blog.vm-blog-single .single-content.ck-content h1,
.vm-blog.vm-blog-single .single-content.ck-content h2,
.vm-blog.vm-blog-single .single-content.ck-content h3,
.vm-blog.vm-blog-single .single-content.ck-content h4 {
    color: var(--secondary);
    font-weight: 800;
    margin: 40px 0 20px;
    line-height: 1.4;
}

.vm-blog.vm-blog-single .single-content.ck-content h2 {
    font-size: 24px;
    border-right: 4px solid var(--primary);
    padding-right: 15px;
}

.vm-blog.vm-blog-single .single-content.ck-content h3 {
    font-size: 20px;
    padding-right: 10px;
}

/* پاراگراف‌ها */
.vm-blog.vm-blog-single .single-content.ck-content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* استایل لیست‌ها (فهرست‌ها) */
.vm-blog.vm-blog-single .single-content.ck-content ul,
.vm-blog.vm-blog-single .single-content.ck-content ol {
    margin-bottom: 20px;
    padding-right: 30px;
}

.vm-blog.vm-blog-single .single-content.ck-content ul li {
    list-style-type: none;
    position: relative;
    margin-bottom: 10px;
}

.vm-blog.vm-blog-single .single-content.ck-content ul li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: -1em;
}

/* جداول (برای متون حقوقی حیاتی است) */
.vm-blog.vm-blog-single .single-content.ck-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.vm-blog.vm-blog-single .single-content.ck-content th,
.vm-blog.vm-blog-single .single-content.ck-content td {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    text-align: right;
}

.vm-blog.vm-blog-single .single-content.ck-content th {
    background: #f8fafc;
    font-weight: 700;
    color: var(--secondary);
}

/* فرم‌ها داخل محتوا */
.vm-blog.vm-blog-single .single-content.ck-content form {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.vm-blog.vm-blog-single .single-content.ck-content label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

/* عناصر تاکید */
.vm-blog.vm-blog-single .single-content.ck-content strong {
    color: var(--secondary);
    font-weight: 700;
}

.vm-blog.vm-blog-single .single-content.ck-content a {
    color: var(--primary);
    text-decoration: underline;
}

.vm-blog.vm-blog-single .single-content.ck-content a:hover {
    text-decoration: none;
}

/* تصاویر داخل محتوا */
.vm-blog.vm-blog-single .single-content.ck-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* ====== Copy Toast ====== */
.vm-blog .vm-toast{
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    z-index: 9999;

    display:flex;
    align-items:center;
    gap:10px;

    padding: 12px 16px;
    border-radius: 18px;

    background: #d2ffe2;            /* سبز */
    color: #290000;                 /* قرمز */
    border: 1px solid rgba(0,0,0,.08);

    font-weight: 950;
    font-size: 13px;

    box-shadow: 0 14px 36px rgba(2, 8, 23, .16);

    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.vm-blog .vm-toast i{
    color: #dc2626;                 /* آیکن هم قرمز */
}

.vm-blog .vm-toast.is-show{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.vm-blog .vm-toast i{
    color: var(--p);
}
.vm-blog .vm-toast.is-show{
    opacity: 1;
    transform: translateY(0);
}
/* =========================
   Blog Comments Section
========================= */
.blog-comments-section {
    margin-top: 2rem;
}

.blog-comments-section .comments-panel {
    background: #ffffff;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.blog-comments-section .comments-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a96e 0%, #e7d3ac 50%, #c9a96e 100%);
}

/* =========================
   Form Wrapper
========================= */
.comment-form-wrapper {
    background: linear-gradient(180deg, #fcfbf8 0%, #ffffff 100%);
    border: 1px solid rgba(201, 169, 110, 0.14);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
}

.comment-form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 20px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a2332;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}

.comment-form-title span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.comment-form-title span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c9a96e;
    box-shadow: 0 0 0 6px rgba(201, 169, 110, 0.12);
}

/* =========================
   Cancel Reply Button
========================= */
.cancel-reply-btn {
    border: none;
    background: rgba(190, 24, 93, 0.08);
    color: #be185d;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    white-space: nowrap;
}

.cancel-reply-btn:hover {
    background: rgba(190, 24, 93, 0.14);
    color: #9d174d;
}

/* =========================
   Form Layout
========================= */
.comment-form {
    display: block;
}

.comment-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.comment-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.comment-form-field label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #243041;
}

.comment-form-field label span {
    color: #b91c1c;
    font-weight: 800;
}

.comment-form-field input,
.comment-form-field textarea {
    width: 100%;
    border: 1px solid #d9dee7;
    background: #fff;
    color: #1f2937;
    border-radius: 14px;
    padding: 13px 15px;
    font-size: 0.95rem;
    line-height: 1.8;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    outline: none;
}

.comment-form-field input::placeholder,
.comment-form-field textarea::placeholder {
    color: #94a3b8;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    border-color: #c9a96e;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.15);
    background: #fffdf9;
}

.comment-form-field textarea {
    resize: vertical;
    min-height: 150px;
}

/* =========================
   Submit Button
========================= */
.comment-form-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 6px;
}

.comment-form-submit {
    border: none;
    background: linear-gradient(135deg, #1a2332 0%, #24364d 100%);
    color: #fff;
    padding: 13px 24px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 12px 24px rgba(26, 35, 50, 0.16);
}

.comment-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(26, 35, 50, 0.22);
}

.comment-form-submit:active {
    transform: translateY(0);
}

/* =========================
   Panel Head
========================= */
.blog-comments-section .panel-head {
    margin-bottom: 18px;
}

.blog-comments-section .panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #1a2332;
    font-size: 1.1rem;
    font-weight: 800;
}

.blog-comments-section .vm-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.14), rgba(201, 169, 110, 0.24));
    color: #b68a3c;
    flex-shrink: 0;
}

/* =========================
   Alert
========================= */
.comment-alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.94rem;
    font-weight: 700;
}

.comment-alert--success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* =========================
   Comments List
========================= */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comment-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 20px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.comment-item:hover {
    border-color: rgba(201, 169, 110, 0.28);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.comment-header,
.reply-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.comment-author,
.reply-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a2332;
    font-weight: 800;
    font-size: 0.97rem;
}

.comment-author i,
.reply-author i {
    color: #c9a96e;
}

.comment-date,
.reply-date {
    font-size: 0.84rem;
    color: #6b7280;
    white-space: nowrap;
}

.comment-body,
.reply-body {
    color: #334155;
    font-size: 0.96rem;
    line-height: 2;
    word-break: break-word;
}

.comment-body p:last-child,
.reply-body p:last-child {
    margin-bottom: 0;
}

/* =========================
   Reply Button
========================= */
.reply-btn {
    margin-top: 16px;
    border: 1px solid rgba(201, 169, 110, 0.28);
    background: rgba(201, 169, 110, 0.08);
    color: #8b6b2f;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
}

.reply-btn:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.42);
    color: #6f531f;
}

/* =========================
   Replies
========================= */
.comment-replies {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed rgba(201, 169, 110, 0.32);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reply-item {
    position: relative;
    margin-right: 22px;
    padding: 18px 18px 18px 18px;
    background: linear-gradient(180deg, #fffdf8 0%, #fffaf0 100%);
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 16px;
}

.reply-item::before {
    content: "";
    position: absolute;
    top: 22px;
    right: -14px;
    width: 14px;
    height: 2px;
    background: #d6b57a;
}

.reply-badge {
    display: inline-block;
    margin-right: 6px;
    color: #8b6b2f;
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(201, 169, 110, 0.14);
    padding: 4px 8px;
    border-radius: 999px;
    vertical-align: middle;
}

/* =========================
   Empty State
========================= */
.comments-empty {
    margin: 0;
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #475569;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.9;
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
    .blog-comments-section .comments-panel {
        padding: 22px;
        border-radius: 18px;
    }

    .comment-form-wrapper {
        padding: 20px;
    }

    .reply-item {
        margin-right: 14px;
    }
}

@media (max-width: 768px) {
    .comment-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comment-form-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-header,
    .reply-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-date,
    .reply-date {
        white-space: normal;
    }

    .reply-item {
        margin-right: 0;
    }

    .reply-item::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .blog-comments-section .comments-panel {
        padding: 16px;
    }

    .comment-form-wrapper {
        padding: 16px;
        border-radius: 16px;
    }

    .comment-item,
    .reply-item {
        padding: 16px;
        border-radius: 14px;
    }

    .comment-form-field input,
    .comment-form-field textarea {
        padding: 12px 13px;
        font-size: 0.92rem;
    }

    .comment-form-submit,
    .reply-btn,
    .cancel-reply-btn {
        width: 100%;
        justify-content: center;
    }

    .comment-form-actions {
        display: block;
    }
}
/* ==================================================
   Consultation Request Widget (Luxury Style)
   ================================================== */
.formRequest {
    margin-top: 2rem;
}

.lp-widget {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.15); /* حاشیه طلایی بسیار ملایم */
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.05); /* سایه بسیار سبک */
    position: relative;
    overflow: hidden;
}

/* خط تزئینی بالای کارت */
.lp-widget::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c5a059 0%, #1a2332 100%);
}

.lp-news__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 0.8rem;
    text-align: center;
}

.lp-news__text {
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* فرم و ورودی‌ها */
.lawyerCard {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.lp-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1a2332;
    transition: all 0.3s ease;
    outline: none;
    background: #f8fafc;
}

.lp-input:focus {
    border-color: #c5a059;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.lp-input--textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* دکمه ارسال */
.lp-btn {
    background: #1a2332; /* سرمه‌ای عمیق */
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(26, 35, 50, 0.2);
}

.lp-btn:hover {
    background: #2d3a4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 35, 50, 0.3);
}

.lp-btn:active {
    transform: translateY(0);
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .lp-widget {
        padding: 20px;
    }
}
