.posts-list {
    margin: 32px auto 56px;
}

/* Десктоп: 2 колонки одинаковой высоты в строке */
.posts-list__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(420px, 1fr));
    gap: 24px;
    align-items: stretch;
    /* высота строки по самой высокой карточке */
}

/* карточка занимает всю высоту ячейки */
.posts-list__items>* {
    height: 100%;
}

.posts-list__items>* .post-card {
    height: 100%;
    display: flex;
}

/* превью тянется на всю высоту карточки в строке */
.posts-list__items .post-card__thumb {
    flex: 0 0 265px;
    min-width: 265px;
    width: 265px;
    height: 100%;
}

.posts-list__items .post-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Кнопка "Ещё" */
.posts-list__more {
    background: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    cursor: pointer;
    display: block;
    margin: 24px auto 0;
    padding: 10px 16px;
}

.posts-list__more[hidden] {
    display: none;
}

/* ≤1100px: одна колонка на всю ширину */
@media (max-width:1100px) {
    .posts-list__items {
        grid-template-columns: 1fr;
    }

    /* карточка в колонку; превью 16:9 по ширине */
    .posts-list__items>* .post-card {
        flex-direction: column;
    }

    .posts-list__items .post-card__thumb {
        /* flex-basis: auto; */
        width: 100%;
        min-width: 0;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .posts-list__items .post-card__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}