.block-custom-post {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
    gap: 25px 25px;
}

.block-custom-post__item {
    background: #2E333C;
    transition: 0.4s ease-in;
    box-shadow: 0 0 10px transparent;
}

.block-custom-post__item:hover {
    background: #efcbbb;
    box-shadow: 0 0 10px #efcbbb;
}

.block-custom-post__item:hover .block-custom-post__item-title,
.block-custom-post__item:hover .block-custom-post__item-desc,
.block-custom-post__item:hover .block-custom-post__item-link {
    color: #2E333C;
}

.block-custom-post__item:hover .block-custom-post__item-img img {
    opacity: 0.7;
}

.block-custom-post__item:hover .block-custom-post__item-link:after {
    opacity: 0;
}

.block-custom-post__item-img img {
    width: 100%;
    opacity: 1;
    transition: 0.4s ease-in;
}

.block-custom-post__item-title {
    font-family: 'Minion Pro', sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    padding: 20px 15px 10px 15px;
}

.block-custom-post__item-desc {
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    min-height: 85px;
    padding: 10px 14px 10px 15px;
}

.block-custom-post__item-link {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 10px 15px 20px 15px;
}

.block-custom-post__item-link:after {
    content: '';
    background: url("../png/arr-r-white.png");
    width: 8px;
    height: 14px;
    background-size: cover;
    margin-left: 20px;
    display: inline-block;
    transition: 0.4s all;
    opacity: 1;
}