.feed-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.news-feed-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    margin-bottom: 2rem;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.news-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.news-title a {
    color: #333;
    text-decoration: none;
}

.news-title a:hover {
    color: #1b5e20 !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.news-content {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.news-meta {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #888;
}

.footer {
    background: #343a40;
    color: #fff;
    bottom: 0;
    width: 100%;
}

.min-height-container {
    min-height: calc(100vh - 100px);
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #e0f7fa;
}

.social-links i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .feed-title {
        font-size: 1.5rem;
    }
    .news-title {
        font-size: 1.5rem;
    }
    .news-content {
        font-size: 0.9rem;
    }
}