.featured-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.featured-post:hover {
    text-decoration: none;
    color: black;
}

.featured-post {
    width: 170px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    margin: 5px;
    text-decoration: none;
    color: black;
    background: white;
}



.featured-post-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    --dot-height: 15px;
    --post-padding: 5px;
}

.featured-post-content > img {

}

.featured-post-content > .date {
    text-align: right;
    padding: var(--post-padding) var(--post-padding) 0;
    font-weight: bold;
    font-size: 0.7rem;
}

.featured-post-content > .title {
    text-align: center;
    font-weight: bold;
    padding: var(--post-padding) var(--post-padding) 0;
}

.featured-post-content > .excerpt {
    font-size: 0.7rem;
    flex: 1 1 auto;
    text-align: justify;
    padding: var(--post-padding);
}

.featured-post-content > .categories {
    display: flex;
    justify-content: flex-end;
    padding: 5px;
    min-height: var(--dot-height);
    box-sizing: content-box;
    border-top: 3px var(--color-pbt-background) solid;
}

.featured-post-content > .categories > .category-marker {
    display: inline-block;
    height: var(--dot-height);
    width: var(--dot-height);
    border-radius: 50%;
    margin-left: 5px;
}