.wrapper-blog {
    display: grid;
    grid-template-columns: auto;
    margin: 200px auto 100px;
    min-width: 360px;
    background-color: #ffffff;
    max-width: 1010px;
    gap: 100px;
}

.blog-news {
    display: grid;
    grid-template-columns: auto;
    gap: 40px;
    width: calc(100% - 10px);
    margin: auto;
}

.blog-link-text-style {
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    color: #000000;
}

.blog-news__blog-title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 300;
    color: #000000;
    width: 100%;
}

.blog-link-text-style:hover {
    text-decoration: underline dashed;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.blog-news__image-news {
    width: 100%;
    object-fit: cover;
}

.blog-news__text {
    width: 100%;
    margin: 0px;
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
}

.blog-news__date {
    margin: 0px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-style: italic;
    color: #000000;
}

.blog-news__hr {
    width: 100%;
    margin-top: 50px;
    color: #000;
    border: none;
    border-top: 2px solid #000000;
}

.text_align_center {
    margin: 0px auto;
}

.blog-news-text__conteiner {
    display: grid;
    grid-template-columns: auto;
    gap: 30px;
    justify-content: center;
    width: calc(100% - 10px);
    margin: auto;
}

.blog-news-text__conteiner p,
img,
ul,
h3 {
    width: 100%;
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    color: #000000;
    margin: 0px;
}

.blog-news-text__conteiner ul {
    width: calc(100% - 40px);
}

.blog-news-text__conteiner h3 {
    font-weight: bold;
}

.blog-news-text__conteiner h2 {
    width: 100%;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #000000;
    margin: 10px 0 0;
}

.blog-news-text__conteiner a {
    color: #000000;
    font-size: 17px;
}

.blog-news-conteiner__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-news-conteiner__footer p {
    width: auto;
}

@media all and (min-width: 360px) and (max-width: 700px) {
    .blog-news__blog-title {
        width: 100%;
        font-size: 40px;
        line-height: 51px;
    }

    .wrapper-blog {
        margin: 150px auto 50px;
    }
}