/* ===== SINGLE BLOG SIDEBAR - ARCHIVE DESIGN ===== */

/* Main Sidebar Container */
.single-blog-sidebar {
    padding: 20px 0;
}

/* Widget Base Styling */
.single-blog-sidebar .widget {
    background: #000;
    border: 1px solid #d4af37;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.single-blog-sidebar .widget:last-child {
    margin-bottom: 0;
}

.single-blog-sidebar .widget-title {
    background: #000;
    color: #d4af37;
    padding: 15px 20px;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.single-blog-sidebar .widget-title i {
    color: #d4af37;
    font-size: 1rem;
}

.single-blog-sidebar .widget-content {
    padding: 20px;
    color: #d4af37;
}

/* ===== AUTHOR WIDGET ===== */
.single-blog-sidebar .widget-author .author-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.single-blog-sidebar .widget-author .author-avatar {
    flex-shrink: 0;
    position: relative;
}

.single-blog-sidebar .widget-author .author-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.single-blog-sidebar .widget-author .author-avatar::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(45deg, #d4af37, #b8860b) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-blog-sidebar .widget-author:hover .author-avatar::after {
    opacity: 1;
}

.single-blog-sidebar .widget-author .author-details {
    flex: 1;
}

.single-blog-sidebar .widget-author .author-name {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.single-blog-sidebar .widget-author .author-bio {
    color: #f5f5dc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 12px 0;
    opacity: 0.9;
}

.single-blog-sidebar .widget-author .author-stats {
    display: flex;
    gap: 15px;
}

.single-blog-sidebar .widget-author .post-count {
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.single-blog-sidebar .widget-author .post-count i {
    color: #d4af37;
}

/* ===== CATEGORIES WIDGET ===== */
.single-blog-sidebar .widget-categories .category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-blog-sidebar .widget-categories .category-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
    position: relative;
}

.single-blog-sidebar .widget-categories .category-list li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    transition: width 0.4s ease;
}

.single-blog-sidebar .widget-categories .category-list li:hover::before {
    width: 100%;
}

.single-blog-sidebar .widget-categories .category-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.single-blog-sidebar .widget-categories .category-list a {
    color: #f5f5dc;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.single-blog-sidebar .widget-categories .category-list a:hover {
    color: #000;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.single-blog-sidebar .widget-categories .category-list .count {
    background: #d4af37;
    color: #000;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.single-blog-sidebar .widget-categories .category-list a:hover .count {
    background: #000;
    color: #d4af37;
}

/* ===== RECENT POSTS WIDGET ===== */
.single-blog-sidebar .widget-recent-posts .recent-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-blog-sidebar .widget-recent-posts .recent-post-item {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.single-blog-sidebar .widget-recent-posts .recent-post-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    transition: width 0.4s ease;
}

.single-blog-sidebar .widget-recent-posts .recent-post-item:hover::after {
    width: 60%;
}

.single-blog-sidebar .widget-recent-posts .recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.single-blog-sidebar .widget-recent-posts .recent-post-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #f5f5dc;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
}

.single-blog-sidebar .widget-recent-posts .recent-post-link:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.single-blog-sidebar .widget-recent-posts .recent-post-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #d4af37;
    position: relative;
}

.single-blog-sidebar .widget-recent-posts .recent-post-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.single-blog-sidebar .widget-recent-posts .recent-post-link:hover .recent-post-thumbnail::after {
    transform: translateX(100%);
}

.single-blog-sidebar .widget-recent-posts .recent-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-blog-sidebar .widget-recent-posts .recent-post-link:hover .recent-post-thumbnail img {
    transform: scale(1.1);
}

.single-blog-sidebar .widget-recent-posts .no-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
}

.single-blog-sidebar .widget-recent-posts .recent-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-blog-sidebar .widget-recent-posts .recent-post-title {
    color: #f5f5dc;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.single-blog-sidebar .widget-recent-posts .recent-post-link:hover .recent-post-title {
    color: #d4af37;
}

.single-blog-sidebar .widget-recent-posts .recent-post-meta {
    display: flex;
    gap: 10px;
}

.single-blog-sidebar .widget-recent-posts .post-date {
    color: #d4af37;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.8;
}

.single-blog-sidebar .widget-recent-posts .post-date i {
    color: #d4af37;
    font-size: 0.75rem;
}

/* ===== TAGS WIDGET ===== */
.single-blog-sidebar .widget-tags .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.single-blog-sidebar .widget-tags .tag-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.single-blog-sidebar .widget-tags .tag-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.single-blog-sidebar .widget-tags .tag-link:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.single-blog-sidebar .widget-tags .tag-link:hover::before {
    left: 0;
}

.single-blog-sidebar .widget-tags .tag-count {
    background: #d4af37;
    color: #000;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 16px;
    text-align: center;
}

.single-blog-sidebar .widget-tags .tag-link:hover .tag-count {
    background: #000;
    color: #d4af37;
}

/* ===== RELATED POSTS WIDGET ===== */
.single-blog-sidebar .widget-related-posts .related-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-blog-sidebar .widget-related-posts .related-post-item {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.single-blog-sidebar .widget-related-posts .related-post-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    transition: width 0.4s ease;
}

.single-blog-sidebar .widget-related-posts .related-post-item:hover::after {
    width: 60%;
}

.single-blog-sidebar .widget-related-posts .related-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.single-blog-sidebar .widget-related-posts .related-post-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #f5f5dc;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
}

.single-blog-sidebar .widget-related-posts .related-post-link:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.single-blog-sidebar .widget-related-posts .related-post-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #d4af37;
    position: relative;
}

.single-blog-sidebar .widget-related-posts .related-post-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.single-blog-sidebar .widget-related-posts .related-post-link:hover .related-post-thumbnail::after {
    transform: translateX(100%);
}

.single-blog-sidebar .widget-related-posts .related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-blog-sidebar .widget-related-posts .related-post-link:hover .related-post-thumbnail img {
    transform: scale(1.1);
}

.single-blog-sidebar .widget-related-posts .no-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
}

.single-blog-sidebar .widget-related-posts .related-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-blog-sidebar .widget-related-posts .related-post-title {
    color: #f5f5dc;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.single-blog-sidebar .widget-related-posts .related-post-link:hover .related-post-title {
    color: #d4af37;
}

.single-blog-sidebar .widget-related-posts .related-post-meta {
    display: flex;
    gap: 10px;
}

.single-blog-sidebar .widget-related-posts .post-date {
    color: #d4af37;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.8;
}

.single-blog-sidebar .widget-related-posts .post-date i {
    color: #d4af37;
    font-size: 0.75rem;
}

.single-blog-sidebar .widget-related-posts .no-related-posts {
    text-align: center;
    color: #d4af37;
    font-style: italic;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 6px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
}

/* ===== NEWSLETTER WIDGET ===== */
.single-blog-sidebar .widget-newsletter .newsletter-description {
    color: #f5f5dc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: center;
    opacity: 0.9;
}

.single-blog-sidebar .widget-newsletter .newsletter-form {
    margin: 0;
}

.single-blog-sidebar .widget-newsletter .form-group {
    display: flex;
    gap: 0;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.single-blog-sidebar .widget-newsletter .newsletter-email {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #d4af37;
    border-right: none;
    background: #1a1a1a;
    color: #f5f5dc;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.single-blog-sidebar .widget-newsletter .newsletter-email::placeholder {
    color: rgba(245, 245, 220, 0.6);
}

.single-blog-sidebar .widget-newsletter .newsletter-email:focus {
    border-color: #b8860b;
    background: #0d0d0d;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.single-blog-sidebar .widget-newsletter .newsletter-submit {
    padding: 12px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000;
    border: 1px solid #d4af37;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.single-blog-sidebar .widget-newsletter .newsletter-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.single-blog-sidebar .widget-newsletter .newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.single-blog-sidebar .widget-newsletter .newsletter-submit:hover::before {
    left: 0;
}

.single-blog-sidebar .widget-newsletter .newsletter-submit i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.single-blog-sidebar .widget-newsletter .newsletter-submit:hover i {
    transform: translateX(3px);
}

/* ===== SOCIAL FOLLOW WIDGET ===== */
.single-blog-sidebar .widget-social-follow .social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.single-blog-sidebar .widget-social-follow .social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #f5f5dc;
    border: 1px solid #d4af37;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.single-blog-sidebar .widget-social-follow .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.single-blog-sidebar .widget-social-follow .social-link:hover {
    color: #000;
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.single-blog-sidebar .widget-social-follow .social-link:hover::before {
    left: 0;
}

.single-blog-sidebar .widget-social-follow .social-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.single-blog-sidebar .widget-social-follow .social-link:hover i {
    transform: scale(1.2);
}

/* Social Platform Specific Colors */
.single-blog-sidebar .widget-social-follow .social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.single-blog-sidebar .widget-social-follow .social-link.facebook:hover::before {
    background: #1877f2;
}

.single-blog-sidebar .widget-social-follow .social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.single-blog-sidebar .widget-social-follow .social-link.youtube:hover::before {
    background: #ff0000;
}

.single-blog-sidebar .widget-social-follow .social-link.zalo:hover {
    background: #0068ff;
    border-color: #0068ff;
    color: white;
}

.single-blog-sidebar .widget-social-follow .social-link.zalo:hover::before {
    background: #0068ff;
}

.single-blog-sidebar .widget-social-follow .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: white;
}

.single-blog-sidebar .widget-social-follow .social-link.instagram:hover::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .single-blog-sidebar {
        padding: 20px 0;
    }
    
    .single-blog-sidebar .widget {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .single-blog-sidebar {
        padding: 15px 0;
    }
    
    .single-blog-sidebar .widget {
        margin-bottom: 18px;
        border-radius: 6px;
    }
    
    .single-blog-sidebar .widget-title {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .single-blog-sidebar .widget-content {
        padding: 15px;
    }
    
    .single-blog-sidebar .widget-author .author-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .single-blog-sidebar .widget-author .author-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .single-blog-sidebar .widget-newsletter .form-group {
        flex-direction: column;
        gap: 0;
    }
    
    .single-blog-sidebar .widget-newsletter .newsletter-email {
        border-right: 1px solid #d4af37;
        border-bottom: none;
    }
    
    .single-blog-sidebar .widget-social-follow .social-links {
        gap: 10px;
    }
    
    .single-blog-sidebar .widget-social-follow .social-link {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .single-blog-sidebar {
        padding: 10px 0;
    }
    
    .single-blog-sidebar .widget {
        margin-bottom: 15px;
        border-radius: 4px;
    }
    
    .single-blog-sidebar .widget-title {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .single-blog-sidebar .widget-content {
        padding: 12px;
    }
    
    .single-blog-sidebar .widget-tags .tag-cloud {
        gap: 6px;
    }
    
    .single-blog-sidebar .widget-tags .tag-link {
        padding: 4px 8px;
        font-size: 0.75rem;
        border-radius: 15px;
    }
    
    .single-blog-sidebar .widget-recent-posts .recent-post-thumbnail,
    .single-blog-sidebar .widget-related-posts .related-post-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .single-blog-sidebar .widget-author .author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .single-blog-sidebar .widget-social-follow .social-link {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .single-blog-sidebar .widget-social-follow .social-link i {
        font-size: 1.1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
.single-blog-sidebar .widget-title:focus,
.single-blog-sidebar .category-list a:focus,
.single-blog-sidebar .recent-post-link:focus,
.single-blog-sidebar .related-post-link:focus,
.single-blog-sidebar .tag-link:focus,
.single-blog-sidebar .social-link:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

.single-blog-sidebar .newsletter-email:focus,
.single-blog-sidebar .newsletter-submit:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.single-blog-sidebar .widget {
    animation: fadeInUp 0.6s ease-out;
}

.single-blog-sidebar .widget:nth-child(1) { animation-delay: 0.1s; }
.single-blog-sidebar .widget:nth-child(2) { animation-delay: 0.2s; }
.single-blog-sidebar .widget:nth-child(3) { animation-delay: 0.3s; }
.single-blog-sidebar .widget:nth-child(4) { animation-delay: 0.4s; }
.single-blog-sidebar .widget:nth-child(5) { animation-delay: 0.5s; }
.single-blog-sidebar .widget:nth-child(6) { animation-delay: 0.6s; }

.single-blog-sidebar .widget-author .author-avatar img:hover {
    animation: pulse 1s infinite;
}

.single-blog-sidebar .tag-link:hover {
    animation: pulse 0.3s ease;
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    .single-blog-sidebar .widget {
        background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    }
    
    .single-blog-sidebar .widget-content {
        background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .single-blog-sidebar {
        display: none;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .single-blog-sidebar .widget {
        border-width: 3px;
    }
    
    .single-blog-sidebar .widget-title {
        font-weight: 900;
    }
    
    .single-blog-sidebar .category-list a,
    .single-blog-sidebar .recent-post-link,
    .single-blog-sidebar .related-post-link,
    .single-blog-sidebar .tag-link,
    .single-blog-sidebar .social-link {
        border-width: 2px;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .single-blog-sidebar .widget,
    .single-blog-sidebar .widget::before,
    .single-blog-sidebar .widget-title::after,
    .single-blog-sidebar .category-list li::before,
    .single-blog-sidebar .recent-post-item::after,
    .single-blog-sidebar .related-post-item::after,
    .single-blog-sidebar .recent-post-thumbnail::after,
    .single-blog-sidebar .related-post-thumbnail::after,
    .single-blog-sidebar .tag-link::before,
    .single-blog-sidebar .newsletter-submit::before,
    .single-blog-sidebar .social-link::before {
        transition: none;
        animation: none;
    }
    
    .single-blog-sidebar .widget:hover,
    .single-blog-sidebar .category-list a:hover,
    .single-blog-sidebar .recent-post-link:hover,
    .single-blog-sidebar .related-post-link:hover,
    .single-blog-sidebar .tag-link:hover,
    .single-blog-sidebar .newsletter-submit:hover,
    .single-blog-sidebar .social-link:hover {
        transform: none;
    }
}