.recent-posts {
    background: url('/img/background_2.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.recent-post-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.recent-post-item:hover {
    transform: translateY(-5px);
}

/* Search styling */
.search-dialog {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}

.search-nav {
    background: linear-gradient(45deg, #B8860B, #FFD700);
}

/* Social icons hover effect */
#aside-content .card-info .social-icons a:hover {
    background: linear-gradient(45deg, #B8860B, #FFD700);
    color: #000 !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* About me card styling */
#aside-content .card-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #ddd;
}

#aside-content .card-info .author-info__description {
    color: #DAA520;
    font-weight: 500;
}

/* Darkmode override for card-info */
[data-theme="dark"] #aside-content .card-info {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}