.blog-article {
    padding: 30px;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.blog-post-content h2 {
    margin-top: 35px;
    font-size: 1.7rem;
}

.blog-post-content h3 {
    margin-top: 25px;
    font-size: 1.3rem;
}

#toc li {
    margin-bottom: 6px;
}

#toc a {
    color: var(--qh-primary);
    font-size: 14px;
}
/* BLOG ARTICLE (from old page) */
.blog-article {
    background: var(--qh-surface);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--qh-shadow);
    border: 1px solid var(--qh-border);
}
.blog-post-content h2 {
    font-size: 1.6rem;
    margin-top: 30px;
}

.blog-post-content p {
    margin-bottom: 18px;
}

.blog-post-content ul {
    padding-left: 20px;
}

.blog-article h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 0.9rem;
    color:  var(--qh-muted);
    margin-bottom: 25px;
}
 

.blog-featured-img {
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-post-content {
    line-height: 1.9;
    font-size: 1.05rem;
}

 
.blog-image-full {
    margin: 0 -40px 30px -40px; /* cancel article padding */
}

.blog-image-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* edge-to-edge look */
}
 .qh-content-blog {
    flex: 1;
    min-width: 0;
    background: var(--qh-bg);
    padding: 20px;
}
.blog-container {
    max-width: 1000px;
    margin: auto;
}
/* BLOG CARD GRID */
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* IMAGE */
.blog-card-img {
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* BODY */
.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}

/* TITLE */
.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* META */
.blog-card-meta {
    font-size: 0.85rem;
    color: var(--qh-muted);
}

/* TEXT */
.blog-card-text {
    font-size: 0.9rem;
    color: var(--qh-muted);
}

/* MINI CARDS */
.blog-mini-card {
    position: relative;
    padding: 10px;
}

.blog-mini-card img {
    height: 120px;
    object-fit: cover;
    width: 100%;
}
