/* =====================================================
   RELATED POSTCARDS
===================================================== */

.pmv2-related-section{
    margin:25px 0;
}

.pmv2-related-title{
    margin:0 0 18px;
    text-align:center;
    font-size:22px;
    font-weight:700;
    line-height:1.3;
}

.pmv2-related-grid{
    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:14px;
}

.pmv2-related-card{
    position:relative;
}

.pmv2-related-card--large{
    grid-column:1 / -1;
}

.pmv2-related-card__link{
    display:block;
    color:inherit;
    text-decoration:none;
}

.pmv2-related-card__image-wrap{
    position:relative;
    overflow:hidden;
    border-radius:5px;
    background:#f3f3f3;
}

.pmv2-related-card--large .pmv2-related-card__image-wrap{
    aspect-ratio:16 / 9;
}

.pmv2-related-card--small .pmv2-related-card__image-wrap{
    aspect-ratio:1 / 1;
}

.pmv2-related-card__image{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.pmv2-related-card__title{
    margin-top:10px;
    font-size:14px;
    font-weight:600;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* =====================================================
   КНОПКА ПОКАЗАТЬ ЕЩЁ
===================================================== */

.pmv2-related-more{
    margin-top:24px;
    text-align:center;
}

.pmv2-related-more-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 22px;
    border:none;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
}
/* Конец блока related postcards */