#blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 30px 0;
    width: 100%
}

#blog-filters > div.checked {
    background-color: #c5258f;
    border: none;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 10;

}

#blog-filters > div {

    border: 1px solid #eeeeee;
    border-radius: 10px;
    text-align: center;
    padding: 10px 20px;
    width: 200px;

    cursor: pointer;
}

#search-box {
    max-width: 600px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

#blog-search {
    max-width: 600px;
    width: 100%;
    padding: 10px;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    font-size: 1.2em;

}

#articles {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

#articles div.clickable {
    cursor: pointer;
}

#articles > article {
    max-width: 433px;
    -webkit-box-shadow: 0 5px 10px 3px rgba(50, 40, 40, 0.1);
    box-shadow: 0 5px 10px 3px rgba(50, 40, 40, 0.1);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

div.article-content > a.i13.button.oe-link {
    height: 20px;
    width: 20px;
    border: none;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
}

div.article-content > a.i13.button.oe-link > i {
    color: #c5258f;
    z-index: 2;
    font-size: 1.2em;
}

div.article-content {
    padding: 20px;
    flex-grow: 1;
    position: relative;
}

/** position article footer at the bottom of the article */
#articles > article footer.entry-footer {
    margin-top: auto;
    width: 100%;
    padding: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #eeeeee;
}

#articles > article footer.entry-footer > div {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    font-weight: bold;
    color: #d6d6d6;
    font-size: 0.9rem;
}


#pagination {
    display: none;
    margin-bottom: 2em;
}

#pagination a {
    -webkit-box-shadow: 0 5px 10px 3px rgba(50, 40, 40, 0.1);
    box-shadow: 0 5px 10px 3px rgba(50, 40, 40, 0.1);
    white-space: nowrap;
}

#status {
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    padding: 5%;

}

#pageOf {
    color: #c5258f;
    /* padding: 12px; */
    font-weight: 700;
    font-size: .9rem;
    line-height: 51px;
    margin: 0 10px;
    white-space: nowrap;
}

article div.content-inner.blog-content {
    margin-bottom: 0;
    padding-bottom: 0;
}
