.saved-posts-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banner-icon {
    font-size: 2rem;
}

.banner-text h4 {
    margin: 0 0 0.3rem 0;
    color: #00ff88;
    font-size: 1.1rem;
}

.banner-text p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .saved-posts-banner {
        flex-direction: column;
        gap: 1rem;
    }
}