.blog-archive-hero {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.archive-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.category-filter .btn {
    margin: 0 4px;
    transition: all 0.3s ease;
}

.category-filter .btn:hover,
.category-filter .btn.active {
    background: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
    transform: translateY(-2px);
}

.featured-post-card {
    transition: transform 0.3s ease;
}

.featured-thumbnail {
    position: relative;
}

.featured-thumbnail img {
    transition: transform 0.5s ease;
}

.featured-post-card:hover .featured-thumbnail img {
    transform: scale(1.05);
}

.featured-title {
    font-size: 2rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: var(--bs-primary) !important;
}

.blog-card {
    background: var(--bs-body-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card-image img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-title a {
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--bs-primary) !important;
}

.read-more-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-link:hover {
    transform: translateX(5px);
}

.blog-pagination .pagination {
    gap: 8px;
}

.blog-pagination .page-numbers {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
}

.newsletter-cta {
    border-radius: 16px;
    margin: 0 15px;
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 1.5rem;
    }
    
    .featured-thumbnail img {
        height: 300px !important;
    }
}

.article-hero {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-2px);
}

.article-title {
    line-height: 1.2;
}

.article-meta {
    padding: 20px;
    background: rgba(0,0,0,0.02);
    border-radius: 12px;
}

.featured-image-wrapper {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.article-content.prose {
    font-size: 1.125rem;
    line-height: 1.8;
}

.article-content.prose h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.article-content.prose h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-content.prose p {
    margin-bottom: 1.5rem;
}

.article-content.prose img {
    border-radius: 12px;
    margin: 2rem 0;
}

.article-content.prose a {
    color: var(--bs-primary);
    text-decoration: underline;
}

.article-content.prose blockquote {
    border-left: 4px solid var(--bs-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--bs-secondary);
}

.article-content.prose code {
    background: rgba(0,0,0,0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.article-content.prose pre {
    background: rgba(0,0,0,0.05);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
}

.social-share-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(0,0,0,0.1);
    background: white;
    color: var(--bs-body-color);
    text-decoration: none;
}

.share-btn:hover {
    transform: scale(1.1);
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.share-facebook:hover { border-color: #1877f2; color: #1877f2; }
.share-twitter:hover { border-color: #1da1f2; color: #1da1f2; }
.share-linkedin:hover { border-color: #0077b5; color: #0077b5; }

.tag-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-2px);
}

.author-bio-card {
    padding: 2rem;
    background: rgba(0,0,0,0.02);
    border-radius: 16px;
    border-left: 4px solid var(--bs-primary);
}

.nav-post-card {
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--bs-primary);
}

.nav-post-card h5 {
    color: var(--bs-body-color);
    transition: color 0.3s ease;
}

.nav-post-card:hover h5 {
    color: var(--bs-primary);
}

.related-post-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.related-post-image img {
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content h5 a {
    transition: color 0.3s ease;
}

.related-post-content h5 a:hover {
    color: var(--bs-primary) !important;
}

.article-sidebar-sticky {
    position: sticky;
    top: 100px;
}

@media (max-width: 992px) {
    .article-title {
        font-size: 2rem;
    }
    
    .featured-image-wrapper {
        margin-top: 0;
    }
    
    .article-content.prose {
        font-size: 1rem;
    }
}