#posts-container {
    display: flex;
    flex-direction: column;
}

.post-card {
    background-color: #032c5e;
    border: 4px solid #d0af00;
    color: white;
    margin: 10px;
    padding: 10px;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.post-featured-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
        margin-bottom: 19px;
}

.post-featured-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: gold;
    color: darkblue;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
        margin-bottom: 19px;
}

#loading-animation {
    text-align: center;
    margin: 20px 0;
}

#post-category-filter {
    margin-bottom: 20px;
}

#pagination-numbers {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination-number {
    margin: 0 5px;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: inline-block;
}

.pagination-number.active, .pagination-number:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}


