.gx-blog-hero-card {
    border-radius: var(--gx-radius-lg);
    overflow: hidden;
    background: var(--gx-surface);
    border: 1px solid var(--gx-border);
    transition: var(--gx-transition);
    height: 100%;
}

.gx-blog-hero-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gx-shadow);
    border-color: rgba(0, 102, 255, 0.25);
}

.gx-blog-hero-card .gx-blog-image {
    height: 240px;
    background: var(--gx-gradient-soft);
    position: relative;
}

.gx-blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--gx-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.gx-blog-body {
    padding: 24px;
}

.gx-blog-meta {
    font-size: 0.8rem;
    color: var(--gx-muted);
    margin-bottom: 12px;
}

.gx-blog-body p {
    font-size: 0.9rem;
    color: var(--gx-muted);
    margin-bottom: 16px;
}

.gx-blog-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gx-accent);
}

.gx-blog-link:hover {
    color: var(--gx-primary-lt);
}

.gx-blog-hero-card h3 a {
    color: var(--gx-heading);
}

.gx-blog-hero-card:hover h3 a {
    color: var(--gx-accent);
}

.gx-blog-detail-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gx-text);
    margin-bottom: 24px;
}

.gx-blog-detail-content h3 {
    font-size: 1.35rem;
    margin: 40px 0 16px;
    color: var(--gx-heading);
}

.gx-blog-sidebar-post {
    border-bottom: 1px solid var(--gx-border);
}

.gx-blog-tag {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gx-accent);
    border: 1px solid var(--gx-border);
}

.gx-blog-tag:hover {
    background: rgba(0, 200, 150, 0.08);
    color: var(--gx-accent-lt);
    border-color: rgba(0, 200, 150, 0.35);
    box-shadow: 0 0 16px rgba(0, 200, 150, 0.15);
}

.gx-blog-sidebar-post {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gx-border);
}

.gx-blog-sidebar-post:last-child {
    border-bottom: none;
}

.gx-blog-sidebar-post h6 {
    font-size: 0.875rem;
    margin-bottom: 4px;
    line-height: 1.4;
    color: var(--gx-heading);
}

.gx-blog-sidebar-thumb {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: var(--gx-radius-sm);
    background: var(--gx-gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gx-accent);
}

@media (max-width: 991.98px) {
    .gx-blog-sidebar {
        position: static;
        margin-top: 48px;
    }
}
