/* blog-styles.css */
.article-content h1, .article-content h2, .article-content h3 {
    font-family: 'Helvetica Neue', sans-serif;
    color: #000;
    font-weight: 500;
}
.article-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.article-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.article-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 1.5rem;
}
.featured-image {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border: 1px solid #000;
}
.article-meta {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.author-vignette {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
}
.author-bio {
    background: #f8f8f8;
    padding: 1.5rem;
    border-left: 4px solid #000;
}
.author-bio img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
}
.author-bio p {
    margin: 0;
    font-size: 1rem;
}
.related-articles ul {
    list-style-type: none;
    padding: 0;
}
.related-articles li {
    margin-bottom: 10px;
}
.related-articles a {
    color: #000;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
}
.related-articles a:hover {
    text-decoration: underline;
}
.social-sharing a {
    font-family: 'Work Sans', sans-serif;
    transition: background-color 0.3s, color 0.3s;
}
.social-sharing a:hover {
    background-color: #000;
    color: #fff;
}
.article-tags .badge {
    font-size: 0.85rem;
    padding: 0.5em 1em;
    transition: background-color 0.3s;
}
.article-tags .badge:hover {
    background-color: #000;
    color: #fff;
}
.sidebar-content h3 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1rem;
}
.sidebar-content ul {
    padding: 0;
}
.sidebar-content li {
    margin-bottom: 0.5rem;
}
.sidebar-content a {
    color: #000;
    text-decoration: none;
}
.sidebar-content a:hover {
    text-decoration: underline;
}
.sidebar-content .badge {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
}
@media (max-width: 767.98px) {
    .sidebar-content {
        margin-top: 2rem;
    }
}