* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    background: #f9f9f9;
    color: #333;
}

.blog-header {
    text-align: center;
    padding: 20px;
    /*     background-color: #288008; */
    /* Зеленый цвет */
    color: white;
}

.blog-header h1 {
    font-size: 2.5em;
}

.article-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

.article-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 20px;
}

.article-img {
    width: 50%;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.article-img:hover {
    transform: scale(1.05);
}

.article-content h2 {
    margin-bottom: 20px;
}

.article-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-img-small {
    width: 30%;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.article-img-small:hover {
    transform: scale(1.05);
}

.back-to-blog {
    text-align: center;
    margin-top: 30px;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #288008;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #1e6406;
}

/* Адаптивность */
@media (max-width: 768px) {
    .article-img {
        width: 45%;
        /* Уменьшаем изображения в планшетной версии */
    }

    .article-img-small {
        width: 45%;
        /* Уменьшаем изображения в планшетной версии */
    }

    .blog-header h1 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .article-img {
        width: 90%;
        /* В мобильной версии каждое изображение на всю ширину */
    }

    .article-img-small {
        width: 80%;
        /* Уменьшаем изображения в планшетной версии */
    }


    .blog-header h1 {
        font-size: 1.5em;
    }

    .article-content p {
        font-size: 1em;
    }

    .back-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}