.post-item img {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
}
.post-item .title {
    color: var(--text-main);
    font-size: 18px;
    font-weight: 500;
    display: block;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}
.post-item .title:hover > p.post-title {
    color: #f5a504;
}
.post-item .created-at {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-button-chart);
}