/* Minimal Author Carousel Enhancements - Preserving Original Aesthetic */

/* Keep original post styling but add subtle enhancements */
.single-following-post {
    transition: transform 0.2s ease;
}

.single-following-post:hover {
    transform: translateY(-2px);
}

/* Minimal author profile enhancements */
.following-author-area .author-image img {
    transition: transform 0.2s ease;
}

.following-author-area .author-image img:hover {
    transform: scale(1.02);
}

/* Bucket List Icon Styling */
.bucket-list-post {
    display: inline-block;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.bucket-list-post:hover {
    opacity: 1;
    transform: scale(1.1);
}

.bucket-list-post.active {
    opacity: 1;
}

.bucket-list-post.active img {
    filter: sepia(1) saturate(2) hue-rotate(35deg);
}

/* Bucket List Notification Messages */
.bucket-list-message {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-left: 4px solid rgba(255,255,255,0.3);
}

/* Only keep essential responsive improvements */
@media (max-width: 768px) {
    .following-author-area {
        padding: 20px 15px;
    }
    
    .single-following-post {
        margin-bottom: 15px;
    }
    
    .bucket-list-message {
        left: 10px;
        right: 10px;
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Remove all the heavy styling from before */
