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

.rss-article {
    text-align: center;
    background: #242d4725;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(75px);
    border-radius: 20px;
    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-content {
    flex: 1;
    padding: 4vh 4vw;
}

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

.article-title a {
    color: #232b50;
    font-weight: 500;
    text-decoration: none;
}

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

.article-meta {
    color: var(--text-tertiary);
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 8vh;
}

.article-description {
    color: var(--text-primary);
    line-height: 1.5;
    margin-top: 6vh;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-weight: 400;
    font-size: 1.25rem;
}

.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;
    }
}
