.post-st-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(243px, 1fr));
    gap: 25px;
    margin: 0 60px;
}

.post-st-two  .post-st-two__item {
    max-width: 243px;
}

.post-st-two__cat {
    font-family: 'Rollerscript', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    color: #E2B29A;
}

.post-st-two__title {
    font-family: 'Minion Pro', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    min-height: 45px;
    margin: 5px 0 15px 0;
}

.post-st-two__read {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000000;
    display: inline-flex;
}

.post-st-two__read:after {
    content: '';
    background-image: url(../png/ar-right.png);
    width: 8px;
    height: 14px;
    background-size: cover;
    display: inline-block;
    margin: 0 0 0 21px;
    transition: 0.3s ease;
    transform: rotate(
            0deg
    );
}

.post-st-two__read:hover:after {
    transform: rotate(
            180deg
    );
}

.post-st-two__image {
    margin: 0 0 22px 0;
}