.rss-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.rss-article {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: transform 0.2s ease;
}

.rss-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.article-image {
    flex: 0 0 200px;
    background: #f5f5f5;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    flex: 1;
    padding: 20px;
}

.article-title {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    line-height: 1.3;
}

.article-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.article-title a:hover {
    color: var(--text-tertiary);
}

.article-meta {
    color: var(--text-tertiary);
    font-size: 0.9em;
    margin-bottom: 10px;
}

.article-description {
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-tertiary);
    font-size: 1.2em;
}

.error {
    text-align: center;
    padding: 40px;
    color: #dc3545;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .rss-article {
        flex-direction: column;
    }
    
    .article-image {
        flex: 0 0 200px;
        width: 100%;
    }
    
    .article-content {
        padding: 15px;
    }
    
    .article-title {
        font-size: 1.2em;
    }
}
