#blog-content img{
    max-width: 100% !important;
    height: auto !important;
}

#blog-content
.image-box img{
    height: 100% !important;
}

/* Knowledge Hub Chips Styling */
.knowledge-hub-chip {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-chip {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.category-chip:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.sub-category-chip {
    background-color: #e3f2fd;
    color: #1976d2;
}

.sub-category-chip:hover {
    background-color: #1976d2;
    color: white;
    transform: translateY(-2px);
}

.industry-chip {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.industry-chip:hover {
    background-color: #7b1fa2;
    color: white;
    transform: translateY(-2px);
}

/* Related Articles Styling */
.related-knowledge-hub {
    background-color: #f8f9fa;
    border-radius: 15px;
    position: sticky;
    top: 20px;
}

.related-knowledge-hub h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.related-article-item {
    margin-bottom: 15px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.related-article-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.related-article-item a {
    text-decoration: none;
    color: inherit;
}

.related-article-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
    padding: 15px;
}

.related-article-item:hover h3 {
    color: var(--primary-color);
}

.related-article-meta {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-article-meta i {
    font-size: 0.7rem;
}

/* Category Section Labels */
.category-section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-section-label i {
    font-size: 1rem;
    color: var(--primary-color);
}

.category-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.category-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

@media screen and (max-width: 768px) {
    .content-container{
        padding: 0 !important;
    }

    .blog-card-date,
    .blog-tags{
        font-size: 12px !important;
    }

    .policy-content,
    #heading-list {
        padding: 0 !important;
    }

    .knowledge-hub-chip {
        font-size: 10px;
        padding: 4px 10px;
    }

    .related-knowledge-hub {
        position: relative;
        top: 0;
        margin-top: 20px;
    }
}
