.rss-item {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-left: 5px solid #0077c8;
    display: flex;
    gap: 15px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rss-item-image {
    width: 120px;
    height: auto;
    border-radius: 6px;
}

.rss-item-title {
    margin: 0 0 8px;
    font-size: 1.2em;
    color: #0077c8;
    font-weight: bold;
}

.rss-item-title a {
    text-decoration: none;
    color: inherit;
}

.rss-item-excerpt {
    color: #444;
    font-size: 0.95em;
}

.rss-source {
    margin-top: 25px;
    text-align: left;
    font-size: 0.85em;
    color: #777;
}

.rss-pagination {
    text-align: center;
    margin-top: 20px;
}

.rss-page {
    margin: 0 8px;
    text-decoration: none;
    font-weight: bold;
    color: #0077c8;
}

.rss-page.active {
    text-decoration: underline;
}

.rss-page-arrow {
    font-weight: bold;
    color: #0077c8;
    margin: 0 10px;
}
