/* ViralClue Ultimate Theme v10 */

body {
    background: #050810;
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vc-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

/* Header */

.vc-header {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: #050810;
    position: sticky;
    top: 0;
    z-index: 20;
}

.vc-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.vc-logo img {
    height: 32px;
}

.vc-logo-text {
    font-weight: 800;
    font-size: 1.3rem;
}

.vc-nav {
    display: flex;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.vc-nav a {
    color: #d0d7ff;
    text-decoration: none;
}
.vc-nav a:hover {
    color: #ffffff;
}

.vc-header-actions .vc-btn-outline {
    border: 1px solid #22e1ff;
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    font-size: 0.9rem;
    color: #22e1ff;
    text-decoration: none;
}

.vc-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
}

/* Grid */

.vc-section {
    margin-bottom: 3rem;
}

.vc-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.vc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.5rem;
}

.vc-card {
    background: #0b0f1a;
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.vc-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.vc-card-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.vc-card-body {
    padding: 0.9rem 1rem 1.1rem;
}

.vc-card-tag {
    font-size: 0.75rem;
    color: #9ca3ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vc-card h3 {
    margin: 0.4rem 0 0.4rem;
    font-size: 1.05rem;
}

.vc-card p {
    font-size: 0.9rem;
    color: #cbd5f5;
    margin-bottom: 0.5rem;
}

.vc-card-meta {
    font-size: 0.78rem;
    color: #8f9bbf;
}

/* Post */

.vc-post-wrapper {
    max-width: 900px;
}

.vc-post-header {
    margin-bottom: 1.5rem;
}

.vc-breadcrumbs {
    font-size: 0.85rem;
    color: #8f9bbf;
    margin-bottom: 0.4rem;
}

.vc-breadcrumbs a {
    color: #9ca3ff;
    text-decoration: none;
}

.vc-post-title {
    font-size: 2rem;
    margin: 0.3rem 0 0.6rem;
}

.vc-post-meta {
    font-size: 0.9rem;
    color: #9aa3c5;
}

.vc-post-image img {
    width: 100%;
    border-radius: 0.8rem;
    margin-top: 1.3rem;
}

.vc-post-content {
    margin-top: 1.6rem;
    line-height: 1.6;
    font-size: 1rem;
}

/* Share */

.vc-share {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.vc-share a,
.vc-share .vc-copy-link {
    background: #111827;
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    border: 1px solid #1f2937;
    color: #e5e7ff;
    text-decoration: none;
    cursor: pointer;
}

/* Related */

.vc-related {
    margin-top: 3rem;
}

.vc-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1.1rem;
    margin-top: 1rem;
}

.vc-related-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 0.6rem;
    margin-bottom: 0.4rem;
}

.vc-related-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.vc-related-meta {
    font-size: 0.8rem;
    color: #9aa3c5;
}

/* Footer */

.vc-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #030712;
    padding: 2rem 1.5rem 1.5rem;
    margin-top: 3rem;
}

.vc-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 2rem;
}

.vc-footer-col h4 {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.vc-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vc-footer-col li {
    margin-bottom: 0.3rem;
}

.vc-footer-col a {
    color: #cbd5ff;
    text-decoration: none;
    font-size: 0.9rem;
}

.vc-footer-bottom {
    max-width: 1180px;
    margin: 1.5rem auto 0;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Tag page */
.vc-tag-header {
    margin-bottom: 1.5rem;
}

/* Responsive */

@media (max-width: 900px) {
    .vc-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .vc-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .vc-header-inner {
        padding-inline: 1rem;
    }

    .vc-nav {
        position: fixed;
        inset: 56px 0 auto 0;
        background: #050810;
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.7rem;
        transform: translateY(-120%);
        transition: transform .2s ease;
    }

    body.vc-nav-open .vc-nav {
        transform: translateY(0);
    }

    .vc-nav-toggle {
        display: block;
    }

    .vc-grid {
        grid-template-columns: 1fr;
    }

    .vc-footer-inner {
        grid-template-columns: 1fr;
    }

    .vc-post-wrapper {
        padding-inline: 1.2rem;
    }
}


/* Ghost required image width helpers */
.kg-width-wide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.kg-width-full {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
