/*
    =====================================================
    |   'Post' Page Specific CSS                        |
    =====================================================
*/

/* Overriding common TOC h2 for this page */
.toc-container h2 {
    font-size: 1.5rem !important; /* Making it larger for this page */
    font-weight: bold !important;
    margin-bottom: 1rem !important;
}

.toc-container .h3 {
    margin-left: 1.5rem;
}

.article-content h2, .article-content h3 {
    scroll-margin-top: 80px; /* Offset for sticky header */
}

.article-content img {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.sidebar-post {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}
.sidebar-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-post-image {
    width: 150px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.375rem;
    flex-shrink: 0;
}

.sidebar-post-content h3 a {
    font-weight: bold;
    color: #4f46e5;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
}

.sidebar-post-content h3 a:hover {
    text-decoration: underline;
}

.sidebar-post-content p {
    display: none;
}