.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Карточка на всю ширину ячейки grid */
}

.post-card a {
    /* Убираем max-width - ширина контролируется grid */
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    overflow: hidden;
    border: 1.33px solid #D5D7DA;
    text-decoration: none;
    height: 100%;
    width: 100%;
    /* На всю ширину карточки */
}

.post-card__thumbnail-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-card__thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-card__content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-grow: 1;
}

.post-card__meta .post-card__date,
.post-card__meta .post-card__separator,
.post-card__reading-time {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #6C737F;
}

.post-card__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 140%;
    color: #111927;
    text-transform: none;
    font-family: 'Manrope';
    margin: 0;
}

@media (max-width: 1835px) {
    .recent-press__section {
        padding: 80px 60px;
    }
}

@media (max-width: 1440px) {
    .posts-grid {
        gap: 20px;
    }

    .post-card__thumbnail-wrapper {
        height: 250px;
    }

    .post-card__content {
        gap: 24px;
    }

    .post-card__meta .post-card__date,
    .post-card__meta .post-card__separator,
    .post-card__reading-time {
        font-size: 16px;
    }

    .post-card__title {
        font-size: 24px;
    }
}

@media (max-width: 1200px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 1135px) {
    .recent-press__section {
        padding: 40px 24px;
    }

    .post-card__content {
        gap: 16px;
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .post-card__thumbnail-wrapper {
        height: 250px;
    }

    .post-card__content {
        padding: 24px;
        gap: 16px;
    }

    .post-card__title {
        font-size: 18px;
    }

    .post-card__meta .post-card__date,
    .post-card__meta .post-card__separator,
    .post-card__reading-time {
        font-size: 16px;
    }
}