.article-page__content {
    margin-top: 88px;
    display: flex;
    flex-direction: column;
    gap: 32px;

    h2, h3, figure {
        margin-top: 2px;
    }

    h2 {

        font-size: 2rem;
    }

    h1 {
        font-size: 40px;
    }

    div {
        a {
            display: block;
            border: 1px solid #0c0c0c;
            padding: 8px;
        }

        :first-child {
            margin-top: 16px;
        }

        :last-child {
            border-top: none;
        }
    }

    ol {
        padding-left: 20px;
        margin-bottom: 0;

        li {
            a {
                color: #0c0c0c;
                text-decoration: none;
                transition: all 0.5s;

                &:hover {
                    text-decoration: underline;
                    transition: all 0.5s;
                }
            }
        }
    }

    figure {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 0;

        img {
            max-width: 750px;
            width: 100%;
        }

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

            div {
                font-size: 24px;
                color: #434343;
                font-weight: 400;
                margin-bottom: 0;
                margin-top: 0;
            }
        }
    }

    p {
        max-width: 750px;
        width: 100%;
        font-size: 16px;

        span {
            font-size: 16px;
            color: #434343;
            font-weight: 400;
        }
    }

    ul {
        margin-top: 0;
        margin-bottom: 0;
        max-width: 750px;
        list-style-type: disc;
    }

    ul li {
        list-style: inside;
        display: list-item;
        margin-bottom: 8px;
        font-size: 16px !important;
        line-height: 2;
        list-style-type: disc;
    }

    ol li {
        display: list-item;
        font-size: 16px !important;
        line-height: 2;
        list-style: auto;
    }

    table {
        border-collapse: collapse;
        max-width: 950px;
        width: 100%;

        th, td {
            width: 33.3%;
            padding: 8px;
        }
    }

    table, th, td {
        border: 1px solid black;
    }
}

.article-page__title {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    h1 {
        width: calc(100% - 90px);
        font-size: 56px;
        line-height: 56px;
    }

    span {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 1;
        color: #828282;
        margin-top: 8px;
        font-family: "NTSomic-Regular";
        letter-spacing: 0.0em;
        width: 90px;
    }
}

.article-page__text {
    margin-top: 88px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.5px;
}

.article-page__author {
    display: flex;
    margin-top: 32px;
    gap: 16px;

    .img {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        letter-spacing: 0.25px;
        width: 56px;
        height: 56px;
        color: #fff;
        background: #FFCB14;
        border-radius: 6.66667px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .description {
        .name {
            font-weight: 400;
            font-size: 24px;
            line-height: 32px;
            color: #333333;
        }

        .profession {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.1px;
            color: #828282;
        }
    }
}

.article{
    padding: 15px;


}


