/**
START SHORTCODE
*/
.post-sho {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(243px, 1fr));
    gap: 30px 25px;
}

.post-sho__item a {
    background: #2E333C;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 8%);
    box-sizing: border-box;
    display: block;
    color: #fff;
}

.post-sho__title {
    font-family: 'Minion Pro', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 20px;
    color: #FFFFFF;
    padding: 12px 15px 3px 15px;
    height: 40px;
}

.post-sho__excerpt {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    color: #E2B29A;
    padding: 15px;
}

.post-sho__image {
    position: relative;
    height: 100%;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
}

.post-sho__image img {
    width: 243px;
    height: 243px;
    object-fit: cover;
    transition: 0.6s;
    transform: rotate(0deg) scale(1);
    opacity: 1;
    will-change: transform;
}

.post-sho__item a:hover img {
    opacity: 0.7;
}

.post-sho__item {
    width: 234px;
}

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

.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;
    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;
}

h2.has-text-align-center {
    font-family: 'Minion Pro', sans-serif;
    text-transform: none;
}

/**
END SHORTCODE
*/