.article {
    padding: 60px 0;
    font-family: 'Tilda';
}

.article__header h1 {
    font-size: 48px;
    line-height: 41px;
    margin-bottom: 15px;
    text-align: center;
    max-width: 555px;
    font-weight: 700;
    color: #1B1F27;
}

.article__image img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 40px;
}

.article {
    padding: 80px 0;
}

.article__content {
    max-width: 785px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article__description {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 33px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 40px;
    text-align: center;
}

.article__description p {
    margin: 0;
}

.article__description::after {
    content: "";
    position: absolute;
    padding-bottom: 40px;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px dashed #686464;
}

.article__subtitle {
    font-size: 30px;
    line-height: 33px;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
}

.article__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 33px;
    margin-bottom: 40px;
}

.article__header {
    align-items: center;
    display: flex;
    justify-content: center;
}

@media(max-width: 768px) {
    .article {
        padding: 10px 0;
    }

    .article__header h1 {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 10px;
        max-width: none;
        text-align: left;
    }

    .article__content {
        max-width: none;
    }

    .article__description {
        font-size: 16px;
        line-height: 23px;
        text-align: left;
    }

    .article__subtitle {
        font-size: 20px;
        line-height: 23px;
        margin-bottom: 10px;
    }

    .article__text {
        font-size: 16px;
        line-height: 24px;
    }
}