.category-container .category {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.category-container .category > h2 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.category-container .news-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.category-container .category article {
    width: 50%;
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    padding: 10px;
    border-radius: 1rem;
    cursor: pointer;
}

.category-container .category article:hover {
    background-color: #eee;
}

.category-container .category img.news-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 8px;
}

.category-container .category .news-content {
    flex: 1;
}

.category-container .category .news-content h3 {
    color: #555;
    margin-bottom: 5px;
}

.category-container .category .news-content p {
    color: #777;
    margin-bottom: 10px;
}

.category-container .category .news-content a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.category-container .category .news-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .category-container .news-container {
        flex-direction: column;
    }

    .category-container .category article {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .category-container .category img.news-image {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
}