.posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.post-card {
    background-color: #151821;
    border-radius: 15px;
    overflow: hidden;
    width: calc((100% - 60px) / 3); /* три карточки по ширине */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.post-card h3 {
    color: #fff;
    font-size: 1.2rem;
    padding: 15px;
    text-align: center;
}

.blog-cta {
    text-align: center;
    margin-top: 20px;
}

.blog-cta .btn {
    background-color: #dd3535; /* основной зеленый цвет сайта */
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    transition: background 0.3s;
}

.blog-cta .btn:hover {
    background-color: #0f7c1b;
}

/* планшеты */
@media (max-width: 1024px) {
    .post-card {
        width: calc((100% - 30px) / 2); /* две карточки по ширине */
    }
}

/* мобильные */
@media (max-width: 768px) {
    .post-card {
        width: 100%; /* одна карточка на ширину */
    }

    .post-card img {
        height: 150px;
    }

    .post-card h3 {
        font-size: 1rem;
        padding: 10px;
    }
}

.blog-post {
    padding: 60px 20px;
}

.blog-post h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.blog-post img {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 100%;
    border-radius: 15px;
}

.post-content {
    color: #e5e5e5;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}