.posts>.container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
}

.posts article {
    width: calc(100% / 3 - 50px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 26px;
    gap: 8px;
    background: #FFFFFF;
    border-radius: 4px;
}

.posts article img {
    width: 100%;
    height: 273px;
    object-fit: cover;
}

.posts article h2 {
    margin: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 169%;
    color: #353535;
}

.posts article p {
    margin: 0;
    font-weight: 500;
    font-size: 19px;
    line-height: 169%;
    color: #353535;
}

.posts article .details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.posts article .read-more {
    display: flex;
    align-items: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #EA7945;
    display: block;
    width: 49%;
}

.posts article .time {
    display: block;
    width: 49%;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: #8E8E8E;
    padding-right: 25px;
    background-repeat: no-repeat;
    background-position: right center;
    background-image: url(../img/date.png);
    background-size: 22px;
    box-sizing: border-box;
}