/* ============================================================
   category-single.css — VoyageCore v1.1
   Travel Magazine aesthetic — rich, editorial, premium
   ============================================================ */

:root {
    --vc-primary:    #c0703a;
    --vc-primary-dk: #9a5728;
    --vc-primary-lt: #f5ede6;
    --vc-ink:        #1a1209;
    --vc-ink-2:      #3d3025;
    --vc-muted:      #7a6a5a;
    --vc-muted-lt:   #b5a898;
    --vc-line:       #e8ddd4;
    --vc-bg:         #faf8f6;
    --vc-card-bg:    #ffffff;
    --vc-radius:     14px;
    --vc-shadow-sm:  0 2px 14px rgba(60,30,10,.07);
    --vc-shadow-md:  0 8px 36px rgba(60,30,10,.12);
    --vc-shadow-lg:  0 20px 60px rgba(60,30,10,.16);
    --vc-trans:      .22s cubic-bezier(.4,0,.2,1);
}

/* ══════════════════════════════════════════════════════════
   CATEGORY PAGE
   ══════════════════════════════════════════════════════════ */

.vc-category-page {
    background: var(--vc-bg);
    min-height: 70vh;
}

/* ── SEO Hero Block ── */
.vc-category-seo-block {
    background: linear-gradient(135deg, #2b1a0e 0%, #5c3318 60%, #7a4520 100%);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}

.vc-category-seo-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(192,112,58,.22) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.vc-category-seo-block .vc-container {
    position: relative;
    z-index: 1;
}

.vc-category-seo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--vc-primary);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(192,112,58,.4);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.vc-category-seo-title {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.18;
    letter-spacing: -.01em;
    max-width: 740px;
}

.vc-category-seo-content {
    font-size: 15.5px;
    line-height: 1.78;
    color: rgba(255,255,255,.78);
    max-width: 680px;
}

.vc-category-seo-content p { margin: 0 0 10px; }
.vc-category-seo-content p:last-child { margin: 0; }

/* ── Breadcrumb bar ── */
.vc-category-breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid var(--vc-line);
    padding: 10px 0;
}

.vc-category-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--vc-muted);
    flex-wrap: wrap;
}

.vc-category-breadcrumb a {
    color: var(--vc-muted);
    text-decoration: none;
    transition: color var(--vc-trans);
}

.vc-category-breadcrumb a:hover { color: var(--vc-primary); }
.vc-category-breadcrumb .sep { opacity: .45; font-size: 10px; }
.vc-category-breadcrumb .current { color: var(--vc-ink-2); font-weight: 600; }

/* ── Main Layout ── */
.vc-category-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 0 64px;
    align-items: start;
}

.vc-category-main { min-width: 0; }

/* ── Section Header ── */
.vc-category-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--vc-line);
}

.vc-category-section-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--vc-ink);
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.vc-category-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--vc-primary);
    border-radius: 3px;
    display: block;
}

.vc-category-count {
    font-size: 12px;
    color: var(--vc-muted);
    background: var(--vc-primary-lt);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* ── Posts Grid 2 cột ── */
.vc-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* ── Post Card ── */
.vc-post-card {
    background: var(--vc-card-bg);
    border-radius: var(--vc-radius);
    overflow: hidden;
    box-shadow: var(--vc-shadow-sm);
    transition: transform var(--vc-trans), box-shadow var(--vc-trans);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--vc-line);
}

.vc-post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vc-shadow-md);
    border-color: transparent;
}

.vc-post-card__thumb-link { display: block; }

.vc-post-card__thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #ede3db;
}

.vc-post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.vc-post-card:hover .vc-post-card__thumb img {
    transform: scale(1.07);
}

.vc-post-card__thumb--placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b09a;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #f0e8df 0%, #e5d8cc 100%);
}

.vc-post-card__cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--vc-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
}

.vc-post-card__thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,10,5,.45) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--vc-trans);
}

.vc-post-card:hover .vc-post-card__thumb-overlay { opacity: 1; }

.vc-post-card__body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vc-post-card__meta {
    display: flex;
    gap: 14px;
    font-size: 11.5px;
    color: var(--vc-muted);
    align-items: center;
}

.vc-post-card__meta i { margin-right: 4px; color: var(--vc-primary); }

.vc-post-card__title {
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.38;
    margin: 0;
    letter-spacing: -.01em;
}

.vc-post-card__title a {
    color: var(--vc-ink);
    text-decoration: none;
    transition: color var(--vc-trans);
}

.vc-post-card__title a:hover { color: var(--vc-primary); }

.vc-post-card__excerpt {
    font-size: 13.5px;
    color: var(--vc-muted);
    line-height: 1.68;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vc-post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--vc-line);
    margin-top: 4px;
}

.vc-post-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--vc-primary);
    text-decoration: none;
    letter-spacing: .02em;
    transition: gap var(--vc-trans);
}

.vc-post-card__readmore:hover { gap: 12px; }

.vc-post-card__readmore i { font-size: 11px; }

/* ── Pagination ── */
.vc-pagination { margin-top: 44px; }

.vc-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vc-ink-2);
    background: #fff;
    border: 1.5px solid var(--vc-line);
    text-decoration: none;
    transition: all var(--vc-trans);
}

.vc-pagination .page-numbers:hover,
.vc-pagination .page-numbers.current {
    background: var(--vc-primary);
    color: #fff;
    border-color: var(--vc-primary);
    box-shadow: 0 4px 16px rgba(192,112,58,.35);
}

/* ── No Posts ── */
.vc-no-posts {
    text-align: center;
    padding: 80px 20px;
    color: var(--vc-muted);
}

.vc-no-posts i {
    font-size: 3.5rem;
    margin-bottom: 18px;
    display: block;
    opacity: .4;
}

/* ── SEO Bottom ── */
.vc-category-seo-bottom {
    background: #fff;
    border-top: 1px solid var(--vc-line);
    padding: 48px 0;
}

.vc-category-seo-content--bottom {
    font-size: 15px;
    color: var(--vc-muted);
    line-height: 1.78;
    max-width: 860px;
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════════════════════ */

.vc-category-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.vc-sidebar-widget {
    background: var(--vc-card-bg);
    border-radius: var(--vc-radius);
    padding: 24px 22px;
    box-shadow: var(--vc-shadow-sm);
    border: 1px solid var(--vc-line);
}

.vc-sidebar-widget__title {
    font-size: 14px;
    font-weight: 800;
    color: var(--vc-ink);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--vc-primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Recent Posts */
.vc-sidebar-recent-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vc-sidebar-recent-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--vc-line);
}

.vc-sidebar-recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.vc-sidebar-recent-item:first-child { padding-top: 0; }

.vc-sidebar-recent-item__img {
    flex-shrink: 0;
    width: 76px;
    height: 58px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.vc-sidebar-recent-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}

.vc-sidebar-recent-item:hover .vc-sidebar-recent-item__img img {
    transform: scale(1.07);
}

.vc-sidebar-recent-item__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.vc-sidebar-recent-item__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--vc-ink);
    text-decoration: none;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--vc-trans);
}

.vc-sidebar-recent-item__title:hover { color: var(--vc-primary); }

.vc-sidebar-recent-item__date {
    font-size: 11px;
    color: var(--vc-muted-lt);
    font-weight: 500;
}

/* Category list */
.vc-sidebar-cats {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vc-sidebar-cats li { border-bottom: 1px solid var(--vc-line); }
.vc-sidebar-cats li:last-child { border-bottom: none; }

.vc-sidebar-cats a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 13.5px;
    color: var(--vc-ink-2);
    text-decoration: none;
    transition: color var(--vc-trans);
    font-weight: 500;
}

.vc-sidebar-cats a:hover { color: var(--vc-primary); }

.vc-sidebar-cats a:hover::after {
    content: '';
}

.vc-sidebar-cats .children {
    padding-left: 14px;
    list-style: none;
    margin: 0;
}

/* Search widget */
.vc-sidebar-widget--search .search-form {
    display: flex;
    gap: 0;
}

.vc-sidebar-widget--search .search-field {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--vc-line);
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 13.5px;
    outline: none;
    background: var(--vc-bg);
    color: var(--vc-ink);
    transition: border-color var(--vc-trans);
}

.vc-sidebar-widget--search .search-field:focus {
    border-color: var(--vc-primary);
    background: #fff;
}

.vc-sidebar-widget--search .search-submit {
    padding: 10px 16px;
    background: var(--vc-primary);
    color: #fff;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background var(--vc-trans);
}

.vc-sidebar-widget--search .search-submit:hover {
    background: var(--vc-primary-dk);
}

/* ── Sidebar live-search suggest dropdown ── */
.vc-sidebar-suggest {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    z-index: 9999;
    margin-top: 4px;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,.13);
    background: #fff;
    border: 1px solid var(--vc-line);
    max-height: 320px;
    overflow-y: auto;
}
.vc-sidebar-suggest .vc-suggest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 1px solid var(--vc-line);
    text-decoration: none;
    color: var(--vc-ink);
    transition: background .15s;
    font-size: 13px;
}
.vc-sidebar-suggest .vc-suggest-item:last-child { border-bottom: none; }
.vc-sidebar-suggest .vc-suggest-item:hover {
    background: color-mix(in srgb, var(--vc-primary) 7%, transparent);
}
.vc-sidebar-suggest .vc-suggest-thumb {
    width: 44px; height: 36px;
    border-radius: 6px; overflow: hidden; flex-shrink: 0;
}
.vc-sidebar-suggest .vc-suggest-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.vc-sidebar-suggest .vc-suggest-thumb--icon {
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--vc-primary) 10%, transparent);
    color: var(--vc-primary); font-size: 13px;
    width: 44px; height: 36px; border-radius: 6px; flex-shrink: 0;
}
.vc-sidebar-suggest .vc-suggest-cat {
    font-size: 10px; color: var(--vc-primary);
    font-weight: 600; margin-bottom: 2px;
    text-transform: uppercase; letter-spacing: .4px;
}
.vc-sidebar-suggest .vc-suggest-title {
    font-size: 12.5px; font-weight: 600;
    color: var(--vc-ink);
    display: -webkit-box; -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; overflow: hidden;
}
.vc-sidebar-suggest .vc-suggest-item--cat .vc-suggest-title {
    color: var(--vc-primary);
}

/* ══════════════════════════════════════════════════════════
   SINGLE PAGE
   ══════════════════════════════════════════════════════════ */

.vc-single-page {
    background: var(--vc-bg);
    min-height: 70vh;
    padding-bottom: 80px;
}

.vc-single-container {
    max-width: 820px;
}

.vc-single-article {
    padding-top: 40px;
}

/* ── Breadcrumb ── */
.vc-single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: var(--vc-muted);
    margin-bottom: 26px;
}

.vc-single-breadcrumb a {
    color: var(--vc-muted);
    text-decoration: none;
    transition: color var(--vc-trans);
}

.vc-single-breadcrumb a:hover { color: var(--vc-primary); }
.vc-breadcrumb-sep { opacity: .4; font-size: 9px; }

.vc-breadcrumb-current {
    color: var(--vc-ink-2);
    font-weight: 500;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Category Badges ── */
.vc-single-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.vc-single-cat-badge {
    display: inline-block;
    background: var(--vc-primary);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all var(--vc-trans);
    box-shadow: 0 3px 12px rgba(192,112,58,.3);
}

.vc-single-cat-badge:hover {
    background: var(--vc-primary-dk);
    transform: translateY(-1px);
}

/* ── Title ── */
.vc-single-title {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 900;
    line-height: 1.17;
    color: var(--vc-ink);
    margin: 0 0 28px;
    letter-spacing: -.02em;
}

/* ── Meta bar ── */
.vc-single-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--vc-line);
    flex-wrap: wrap;
    box-shadow: var(--vc-shadow-sm);
}

.vc-single-meta__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vc-single-meta__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--vc-primary-lt);
}

.vc-single-meta__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vc-single-meta__author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--vc-ink);
    text-decoration: none;
    transition: color var(--vc-trans);
}

.vc-single-meta__author-name:hover { color: var(--vc-primary); }

.vc-single-meta__date {
    font-size: 12px;
    color: var(--vc-muted);
}

.vc-single-meta__modified { color: var(--vc-muted-lt); }

.vc-single-meta__right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.vc-single-meta__read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--vc-muted);
    font-weight: 500;
}

.vc-single-meta__read-time i { color: var(--vc-primary); }

.vc-single-share-btn {
    background: none;
    border: 1.5px solid var(--vc-line);
    border-radius: 9px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--vc-muted);
    font-size: 14px;
    transition: all var(--vc-trans);
}

.vc-single-share-btn:hover {
    border-color: var(--vc-primary);
    color: var(--vc-primary);
    background: var(--vc-primary-lt);
}

/* ── Featured Image ── */
.vc-single-featured-img {
    margin-bottom: 44px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--vc-shadow-lg);
    position: relative;
}

.vc-single-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 520px;
    object-fit: cover;
}

.vc-single-featured-caption {
    text-align: center;
    font-size: 13px;
    color: var(--vc-muted);
    font-style: italic;
    padding: 12px 16px;
    background: #f5f0eb;
    border-top: 1px solid var(--vc-line);
}

/* ── Content Typography ── */
.vc-single-content {
    font-size: 17.5px;
    line-height: 1.88;
    color: var(--vc-ink-2);
    word-break: break-word;
}

.vc-single-content h2,
.vc-single-content h3,
.vc-single-content h4 {
    font-weight: 800;
    color: var(--vc-ink);
    margin: 2em 0 .65em;
    line-height: 1.28;
    letter-spacing: -.015em;
}

.vc-single-content h2 {
    font-size: 1.65em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--vc-line);
}

.vc-single-content h3 { font-size: 1.32em; }
.vc-single-content h4 { font-size: 1.12em; }

.vc-single-content p { margin: 0 0 1.3em; }

.vc-single-content a {
    color: var(--vc-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    transition: color var(--vc-trans);
}

.vc-single-content a:hover { color: var(--vc-primary-dk); }

.vc-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 10px 0;
    box-shadow: var(--vc-shadow-sm);
}

.vc-single-content ul,
.vc-single-content ol {
    margin: 0 0 1.3em 1.5em;
    padding: 0;
}

.vc-single-content li { margin-bottom: .5em; }

.vc-single-content blockquote {
    border-left: 4px solid var(--vc-primary);
    padding: 16px 24px;
    margin: 2em 0;
    background: var(--vc-primary-lt);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--vc-ink-2);
    font-size: 1.05em;
    position: relative;
}

.vc-single-content blockquote::before {
    content: '\201C';
    font-size: 4em;
    color: var(--vc-primary);
    opacity: .2;
    position: absolute;
    top: -10px;
    left: 12px;
    line-height: 1;
    font-family: Georgia, serif;
}

.vc-single-content pre,
.vc-single-content code {
    background: #f4ede5;
    border-radius: 7px;
    font-size: .87em;
    font-family: 'Fira Code', 'Courier New', monospace;
    color: #7a3020;
}

.vc-single-content pre {
    padding: 16px 20px;
    overflow-x: auto;
    margin: 1.4em 0;
}

.vc-single-content code { padding: 2px 7px; }

.vc-single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: .94em;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--vc-shadow-sm);
}

.vc-single-content th,
.vc-single-content td {
    border: 1px solid var(--vc-line);
    padding: 12px 16px;
    text-align: left;
}

.vc-single-content th {
    background: var(--vc-primary-lt);
    font-weight: 700;
    color: var(--vc-primary-dk);
}

.vc-single-content tr:hover td { background: #fdf8f4; }

/* ── Tags ── */
.vc-single-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 44px 0;
    padding: 24px 0;
    border-top: 1.5px solid var(--vc-line);
    border-bottom: 1.5px solid var(--vc-line);
}

.vc-single-tags__label {
    color: var(--vc-primary);
    font-size: 15px;
}

.vc-single-tag {
    display: inline-block;
    background: var(--vc-bg);
    color: var(--vc-ink-2);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    border: 1.5px solid var(--vc-line);
    transition: all var(--vc-trans);
}

.vc-single-tag:hover {
    background: var(--vc-primary);
    color: #fff;
    border-color: var(--vc-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(192,112,58,.28);
}

/* ── Author Bio ── */
.vc-single-author-bio {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff 0%, var(--vc-primary-lt) 100%);
    border: 1.5px solid var(--vc-line);
    border-left: 4px solid var(--vc-primary);
    border-radius: 16px;
    padding: 28px;
    margin: 44px 0;
}

.vc-single-author-bio__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(192,112,58,.2);
}

.vc-single-author-bio__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vc-single-author-bio__label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--vc-primary);
    font-weight: 800;
}

.vc-single-author-bio__name {
    font-size: 17px;
    font-weight: 800;
    color: var(--vc-ink);
    text-decoration: none;
    transition: color var(--vc-trans);
}

.vc-single-author-bio__name:hover { color: var(--vc-primary); }

.vc-single-author-bio__desc {
    font-size: 14px;
    color: var(--vc-muted);
    line-height: 1.68;
    margin: 4px 0 0;
}

/* ── Post Nav ── */
.vc-single-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 44px 0;
}

.vc-single-post-nav__prev,
.vc-single-post-nav__next {
    background: #fff;
    border: 1.5px solid var(--vc-line);
    border-radius: 14px;
    transition: all var(--vc-trans);
}

.vc-single-post-nav__prev:hover,
.vc-single-post-nav__next:hover {
    border-color: var(--vc-primary);
    box-shadow: 0 6px 24px rgba(192,112,58,.15);
}

.vc-single-post-nav__next { text-align: right; }

.vc-single-post-nav a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 20px;
    text-decoration: none;
}

.vc-nav-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--vc-primary);
    text-transform: uppercase;
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vc-single-post-nav__next .vc-nav-label { justify-content: flex-end; }

.vc-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--vc-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.42;
}

/* ── Related Posts ── */
.vc-single-related { margin: 56px 0 0; }

.vc-single-related__title {
    font-size: 20px;
    font-weight: 900;
    color: var(--vc-ink);
    margin: 0 0 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--vc-line);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vc-single-related__title::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--vc-primary);
    border-radius: 3px;
    display: block;
}

.vc-single-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vc-related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--vc-line);
    box-shadow: var(--vc-shadow-sm);
    transition: transform var(--vc-trans), box-shadow var(--vc-trans);
}

.vc-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vc-shadow-md);
    border-color: transparent;
}

.vc-related-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #ede3db;
}

.vc-related-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.vc-related-card:hover .vc-related-card__img img { transform: scale(1.06); }

.vc-related-card__img--placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b09a;
    font-size: 1.8rem;
}

.vc-related-card__body { padding: 14px 16px 18px; }

.vc-related-card__date {
    font-size: 11px;
    color: var(--vc-muted-lt);
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.vc-related-card__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.vc-related-card__title a {
    color: var(--vc-ink);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--vc-trans);
}

.vc-related-card__title a:hover { color: var(--vc-primary); }

/* ══════════════════════════════════════════════════════════
   COMMENT FORM — STYLED
   ══════════════════════════════════════════════════════════ */

.vc-single-comments { margin-top: 60px; }

/* Comment list */
.vc-single-comments .comments-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--vc-ink);
    margin: 0 0 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--vc-line);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vc-single-comments .comments-title::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--vc-primary);
    border-radius: 3px;
    display: block;
}

.vc-single-comments .comment-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vc-single-comments .comment-body {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    border: 1px solid var(--vc-line);
    box-shadow: var(--vc-shadow-sm);
}

.vc-single-comments .comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.vc-single-comments .comment-author .avatar {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 2px solid var(--vc-primary-lt);
}

.vc-single-comments .comment-author .fn {
    font-size: 14px;
    font-weight: 700;
    color: var(--vc-ink);
    text-decoration: none;
}

.vc-single-comments .comment-metadata {
    font-size: 12px;
    color: var(--vc-muted-lt);
    margin-left: auto;
}

.vc-single-comments .comment-metadata a {
    color: var(--vc-muted-lt);
    text-decoration: none;
}

.vc-single-comments .comment-content p {
    font-size: 15px;
    line-height: 1.72;
    color: var(--vc-ink-2);
    margin: 0;
}

.vc-single-comments .reply a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--vc-primary);
    text-decoration: none;
    margin-top: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    background: var(--vc-primary-lt);
    transition: all var(--vc-trans);
}

.vc-single-comments .reply a:hover {
    background: var(--vc-primary);
    color: #fff;
}

.vc-single-comments .children {
    list-style: none;
    padding-left: 32px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Comment Form */
.vc-single-comments #respond {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    border: 1.5px solid var(--vc-line);
    box-shadow: var(--vc-shadow-sm);
    margin-top: 8px;
}

.vc-single-comments #reply-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--vc-ink);
    margin: 0 0 24px;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vc-single-comments #reply-title::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--vc-primary);
    border-radius: 3px;
    display: block;
    flex-shrink: 0;
}

.vc-single-comments .comment-notes {
    font-size: 13.5px;
    color: var(--vc-muted);
    margin-bottom: 22px;
    line-height: 1.6;
}

.vc-single-comments .comment-form-comment {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.vc-single-comments .comment-form label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--vc-ink-2);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vc-single-comments .comment-form textarea,
.vc-single-comments .comment-form input[type="text"],
.vc-single-comments .comment-form input[type="email"],
.vc-single-comments .comment-form input[type="url"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--vc-line);
    border-radius: 10px;
    font-size: 14.5px;
    color: var(--vc-ink);
    background: var(--vc-bg);
    outline: none;
    transition: border-color var(--vc-trans), box-shadow var(--vc-trans);
    box-sizing: border-box;
    font-family: inherit;
    resize: vertical;
}

.vc-single-comments .comment-form textarea:focus,
.vc-single-comments .comment-form input[type="text"]:focus,
.vc-single-comments .comment-form input[type="email"]:focus,
.vc-single-comments .comment-form input[type="url"]:focus {
    border-color: var(--vc-primary);
    box-shadow: 0 0 0 3px rgba(192,112,58,.12);
    background: #fff;
}

.vc-single-comments .comment-form textarea {
    min-height: 130px;
}

.vc-single-comments .comment-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.vc-single-comments .comment-form-url {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vc-single-comments .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
}

.vc-single-comments .comment-form-cookies-consent input[type="checkbox"] {
    accent-color: var(--vc-primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vc-single-comments .comment-form-cookies-consent label {
    font-size: 13px;
    color: var(--vc-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.vc-single-comments .form-submit {
    margin: 0;
}

.vc-single-comments .submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--vc-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--vc-trans);
    box-shadow: 0 4px 18px rgba(192,112,58,.35);
    letter-spacing: .02em;
    font-family: inherit;
}

.vc-single-comments .submit:hover {
    background: var(--vc-primary-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(192,112,58,.4);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .vc-category-layout { grid-template-columns: 1fr 280px; gap: 28px; }
}

@media (max-width: 820px) {
    .vc-category-layout {
        grid-template-columns: 1fr;
        padding: 28px 0 40px;
    }

    .vc-category-sidebar { position: static; }
    .vc-posts-grid { grid-template-columns: 1fr; gap: 20px; }

    .vc-single-related__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .vc-single-post-nav { grid-template-columns: 1fr; }
    .vc-single-title { font-size: clamp(24px, 7vw, 36px); }
    .vc-single-content { font-size: 16.5px; }

    .vc-single-comments .comment-form-fields { grid-template-columns: 1fr; }
    .vc-single-comments .comment-form-url { grid-column: span 1; }
    .vc-single-comments #respond { padding: 22px 18px; }
}

@media (max-width: 560px) {
    .vc-posts-grid { grid-template-columns: 1fr; }
    .vc-single-related__grid { grid-template-columns: 1fr; }
    .vc-single-author-bio { flex-direction: column; align-items: center; text-align: center; }
    .vc-single-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
    .vc-category-seo-block { padding: 36px 0 28px; }
    .vc-single-comments .children { padding-left: 16px; }
}

/* ── Comment form field wrappers (custom fields from single.php filter) ── */
.vc-single-comments .comment-form-author,
.vc-single-comments .comment-form-email {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vc-single-comments .comment-form-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Make WP wrap author+email side by side */
.vc-single-comments #respond .comment-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vc-single-comments .comment-form-comment {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.vc-single-comments .comment-form-author,
.vc-single-comments .comment-form-email {
    margin-bottom: 0;
}

.vc-single-comments .comment-form-url {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

/* Grid row for author + email */
.vc-single-comments .comment-form-author + .comment-form-email {
    /* handled by grid below */
}

/* Wrap author & email together */
.vc-single-comments .comment-form > .comment-form-author,
.vc-single-comments .comment-form > .comment-form-email {
    display: grid;
}

/* Use CSS grid auto-placement for side-by-side author+email */
.vc-single-comments #respond .comment-form > .comment-form-author {
    grid-column: 1;
}

.vc-single-comments #respond .comment-form > .comment-form-email {
    grid-column: 2;
}

/* Override — simplest approach: just make them inline-block */
.vc-single-comments .comment-form > .comment-form-author,
.vc-single-comments .comment-form > .comment-form-email {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    width: calc(50% - 8px);
    margin-bottom: 16px;
}

.vc-single-comments .comment-form > .comment-form-author {
    margin-right: 16px;
}

@media (max-width: 560px) {
    .vc-single-comments .comment-form > .comment-form-author,
    .vc-single-comments .comment-form > .comment-form-email {
        width: 100%;
        display: flex;
        margin-right: 0;
    }
}
