
/* Article Hero Section */
.article-hero {
    padding: 60px 0;
    text-align: center;
}

.article-category-badge {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-decoration: none;
}

.article-meta {
    font-size: 0.9rem;
    color: #888;
}

.article-meta span:not(:last-child)::after {
    content: '•';
    margin: 0 0.5rem;
}

/* Article Content */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.article-content h2,
.article-content h3 {
    color: var(--color-heading);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    line-height: 1.8;
}

.article-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    font-style: italic;
    color: #6c757d;
    margin: 2rem 0;
}

.article-content a,
.article-content a span {
    color: var(--color-primary);
}

.article-content a:hover,
.article-content a span:hover {
    color: var(--color-primary-dark);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.8rem;
    width: 100%;
}

.article-content table p {
    text-align: left;
    margin-bottom: 0.4rem;
}

.article-content th,
.article-content td {
    border: 1px solid #ccc;
    padding: 8px;
}

.article-content th {
    background-color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-share a {
    color: var(--color-body);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-share a:hover {
    color: var(--color-primary);
}

/* Sidebar */
.sidebar-widget {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--color-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.category-list a,
.recent-post-link {
    color: var(--color-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover,
.recent-post-link {
    text-decoration: none;
}

.recent-post-title {
    font-weight: 700;
    color: var(--color-heading);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 0.25rem;

}

.recent-post-link:hover .recent-post-title {
    color: var(--color-primary);
}

.recent-post-date {
    font-size: 0.8rem;
    color: #aaa;
}

.recent-post-thumb {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
}