@charset "utf-8";
/* CSS Document */

.blog-container {
    max-width: 800px;
    margin: auto;
}

.category-filters {
    text-align: center;
    margin-bottom: 20px;
}

.filter-button {
    padding: 6px 10px;
    margin: 0 4px;
    cursor: pointer;
    border: none;
    background-color: #fff;
    border-radius: 5px;
}

.filter-button.active {
    background-color: #2eb63a;
    color: white;
}

.category-section {
    display: none;
    margin-bottom: 40px;
}

.category-section.active {
    display: block;
}

.recent-articles,
.other-articles {
    margin: 4px 0;
}

.recent-articles article,
.other-articles article {
    margin: 4px 0;
}

.recent-articles article img {
    width: 100%;
    height: auto;
}

.view-all {
    display: block;
    width: 100%;
    padding: 10px;
    border: solid 1px #CCC;
    background-color: #F1F1F1;
	color: #007bff;
    cursor: pointer;
    border-radius: 5px;
}