body {
    background: var(--Colorlite) !important;
}

.SecTitle {
    color: var(--ColorDark) !important;
}

main,
main * {
    box-sizing: border-box;
}

body>main>article {
    width: 62vw;
    height: fit-content;
    height: -moz-fit-content;
    min-height: 32px;
    min-width: 300px;
    margin: 64px auto;
    margin-bottom: 128px;
    color: var(--ColorDark);
    background: var(--bgColorArticle) !important;
}

main article>section {
    width: 100%;
    border: 3px solid var(--ColorDark);
    background: var(--ColorDark) !important;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
}

main>article>section img {
    width: 100%;
    padding: 0 !important;
}

article section section {
    padding: 48px 64px !important;
}

section .contextTitle {
    margin: 0;
    margin-bottom:16px;
    color: var(--contextTitle) !important;
}

/*.contextTitle+p {*/
/*    margin: 0;*/
/*    font-size: 22px;*/
/*    line-height: 29px;*/
/*    color: var(--contextTitle) !important;*/
/*}*/
.textParagraph{
    margin: 0;
    font-size: 22px !important;
    line-height: 29px;
    color: var(--contextTitle) !important;
}
.textParagraph > span{
    font-size :22px !important;
}
.projectInfo p {
    display: inline-block;
    text-decoration: underline;
    color: var(--contextTitle) !important;
    margin: 4px 4px 0 0;
    /* margin-right: 8px; */
}

.projectInfo ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.projectInfo ul li {
    margin: 0;
    /* border-bottom: 1px solid #000; */
    width: fit-content;
    position: relative;
}

.projectInfo ul li::after {
    display: inline-block;
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.projectInfo ul li * {
    text-decoration: none !important;
}

.projectInfo * {
    color: var(--contextTitle);
    text-transform: capitalize;
}

@media(max-width:800px) {
    body>main>article {
        width: 100%;
        min-width: unset;
    }
    article section section {
        padding: 32px 24px !important;
    }
    .contextTitle+p {
        font-size: 17px;
        line-height: normal;
    }
    .textParagraph{
    font-size: 17px !important;
    line-height: 22px;
}
.textParagraph > span{
    font-size :17px !important;
}
    main article>section {
    border-left:none;
    border-right:none;
    }
}