.page-text__wrapper{
    padding: 36px 30px 36px 36px;
    border-radius: 30px;

    box-shadow: 0 0 200px 0 rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, #eaeaea 0%, #dedddd 100%);

    display: flex;
    flex-direction: column;
    gap: 16px;

    color: #000;
}

.page-text__title{
    font-size: 24px;
    text-align: justify;
}

.page-text__content{
    font-size: 14px;
    text-align: justify;
    color: #272727;
}

@media screen and (max-width: 767px) {
    .page-text__wrapper{
        padding: 16px;
        border-radius: 20px;
    }
    .page-text__title{
        font-size: 18px;
    }
    .page-text__content{
        font-size: 12px;
    }
}