.article__page {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 160px;
}
.page__title {
    padding: 40px 0 20px;
}
.article__image {
    width: 100%;
}
.article__image img {
    width: 100%;
}
.article__date {
    font-size: 20px;
    line-height: 120%;
    color: var(--grey2);
    text-align: center;
    width: 100%;
    padding-bottom: 30px;
}
.article__text {
    color: var(--grey2);
    font-size: 18px;
    line-height: 160%;
    padding-top: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid #536794;
}
.article__text span {
    color: var(--black);
    font-size: 30px;
    font-weight: 700;
    padding: 32px 0;
    display: block;
}
.article__text ul {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}
.article__text ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 16px;
}
.article__text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #FF6D00; /* оранжевый цвет */
    border-radius: 50%; /* делаем круг */
}
.article__text h2 {
    color: var(--black);
    font-size: clamp(20px, 0.654vw + 0.873rem, 30px);
    font-weight: 700;
    margin: 32px 0;
}
.article__text h3 {
    color: var(--black);
    font-size: clamp(20px, 0.392vw + 0.924rem, 26px);
    font-weight: 700;
    margin: 32px 0;
}
.article__text p {
    color: var(--grey2);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}
.article__text img {
    max-width: 100%;
}
.article__share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    color: var(--black);
    padding: 32px 0;
    gap: 20px;
}
.module__blog {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}
.module__blog__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.module__blog__title-title {
    font-weight: 700;
    font-size: 44px;
    text-transform: uppercase;
    color: #292626;
}
.module__blog__title-blog, .module__blog__title-blog a {
    font-size: 20px;
    font-weight: 700;
    color: #F38125;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}
.module__blog__title-blog img {
    width: 15px;
    margin-left: 10px;
}
.module__blog__articles {
    display: flex;
    gap: 20px;
    width: 100%;
}
.module__blog__articles-article {
    cursor: pointer;
    width: 100%;
}
.module__blog__articles-article-name {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #292626;
}
.module__blog__articles-article-name a {
    color: #292626;
    text-decoration: none;
}
.module__blog__articles-article-image img, .module__blog__articles-article-image a {
    width: 100%;
}
.module__blog__articles-article:hover .module__blog__articles-article-name,
.module__blog__articles-article:hover .module__blog__articles-article-name a {
    color: #F38125;
    cursor: pointer;
}
@media(max-width: 768px) {
    .page__title {
        padding: 0 0 20px;
        text-align: center;
    }
    .article__page {
        padding-bottom: 28px;
    }
    .article__text {
        padding-bottom: 30px;
        padding-top: 10px;
    }
    .article__text span {
        font-size: 20px;
        line-height: 130%;
        padding: 20px 0;
    }
    .article__date {
        padding-bottom: 20px;
    }
    .article__text ul {
        padding-top: 20px;
    }
    .module__blog {
        margin: 0;
    }
    .module__blog__title-title {
        font-size: 26px;
    }
    .module__blog__title-blog {
        font-size: 18px;
    }
    .module__blog__title-blog img {
        width: 13px;
    }
    .module__blog__articles {
        flex-direction: column;
    }
    .article__share {
        flex-direction: column;
    }
}
