body.news-page {
    background-color: #f7f7f7;
    color: #333;
    font-family: 'Open Sans', sans-serif;
}

body.news-page .container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #cc0000;
}

.news-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-card img {
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
}

.news-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
}

.news-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.news-card .text-muted {
    color: #777 !important;
    font-size: 0.85rem;
}

.news-card a.btn {
    margin-top: 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid #999;
    color: #333;
    background-color: transparent;
}

.news-card a.btn:hover {
    background-color: #f0f0f0;
    color: #000;
}
.news-description {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
}

.news-snippet {
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 1280px) {
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    body.news-page .container {
        padding: 1rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    .news-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.25rem;
    }
    .news-card h5 {
        font-size: 1rem;
    }
    .news-card p {
        font-size: 0.85rem;
    }
}