.single-post {
    padding: 20px;
}
.single-post-assets {
    display: flex;
    justify-content: space-between;
}
.single-post-info a {
    color: #ff9100;
    font-weight: bold;
    transition: all 0.2s;
}
.single-post-info a:hover {
    color: #209000;
}
.single-post-date {
    text-align: center;
    color: #534a58;
    font-weight: bold;
}
.single-post-cats .post-categories {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: space-around;
    max-height: 285px;
    max-width: 300px;
    overflow: hidden;
    margin: 0;
}
.single-post-content {
    text-align: justify;
}
@media (max-width: 574px){
    .single-post-assets {
        justify-content: center;
        flex-wrap: wrap;
    }
}
