/* Archive & Category Pages */
.page-header {
    padding: 40px 0;
    background: var(--light-gray);
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-description {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 40px 0;
}

/* Article Page Styles */
.article-tags {
    margin: 30px 0;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.article-tags strong {
    display: block;
    margin-bottom: 10px;
}

.article-tags a {
    display: inline-block;
    background: #fff;
    padding: 5px 15px;
    margin: 5px 5px 5px 0;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.article-share {
    margin: 30px 0;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.article-share strong {
    display: block;
    margin-bottom: 15px;
}

.social-share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.share-btn img {
    width: 22px;
    height: 22px;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 10px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-info p {
    color: #666;
    line-height: 1.6;
}

/* Comments Section */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

/* Widget Styles */
.widget-categories-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.widget-categories-list li:last-child {
    border-bottom: none;
}

.widget-categories-list a {
    flex: 1;
}

.widget-categories-list .count {
    color: #999;
    font-size: 14px;
}

.widget-tags a {
    display: inline-block;
    background: #fff;
    padding: 5px 12px;
    margin: 5px 5px 5px 0;
    border-radius: 3px;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.widget-tags a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Footer Styles */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive for Content Wrapper */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        margin-top: 40px;
    }
}
