/* single */

.article-header{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr clamp(2rem, 6vw, 100px) clamp(120px, 15vw, 223px);
    grid-template-columns: 1fr clamp(120px, 15vw, 223px);
    gap: 0 clamp(2rem, 6vw, 100px);
}


.article-header.box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: rgba(58, 58, 58, 0.52);
    color: #fff;
    text-align: center;
    padding-block: 400px;
    margin-bottom: 40px;;
}

.article-header.box .bg-img::after{
    display: none;
}

.article--title{
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
}
.article--icon{
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
}
.article--options{
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
}
.article--info{
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
}


.box .article--headers{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    padding-inline: 3rem;
}
.article--title{
    --border: 18px;
    font-size: 112px;
    line-height: 105%;
    letter-spacing: -5.6px;
    border-bottom: none;
    padding-bottom: 2rem;
    border-bottom: var(--border) solid var(--colorLime);
    position: relative;
}

.article--title::before,
.article--title::after{
    content: "";
    height: var(--border);
    position: absolute;
    bottom:-18px;
    background-color: #000;
}

.article--title::before{
    width: 2rem;
    left: 2rem;
}
.article--title::after{
    width: 3rem;
    left: 8rem;
}

.article--title:has(+ .article--subtitle){
    border: none;
}
.article--title:has(+ .article--subtitle)::before,
.article--title:has(+ .article--subtitle)::after{
    display: none;
}

.box .article--subtitle{
    color:var(--colorLime);
    font-size: 30px;
    letter-spacing: -1.5px;
    position: absolute;
    /* bottom: -3rem; */
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    padding-inline: 1rem;
}
.article--icon{
    height: 100%;
    border: 1px solid var(--colorLime);
    display: -ms-grid;
    display: grid;
    place-content: center;
    position: relative;
}


.article--icon::after{
    content: "";
    --size: 3rem;
    width: var(--size);
    height: var(--size);
    position: absolute;
    top: calc(var(--size) / -2); right: calc(var(--size) / -2);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: #000;
    border-bottom: 1px solid var(--colorLime);
}
.article--options ul{
    gap: 16px;
    margin-top: 24px;
}
.article--options li{
    border: 1px solid #fff;
    text-align: center;
    padding: 15px 1rem 10px; 
    -webkit-box-flex : 1; 
        -ms-flex : 1; 
            flex : 1;
    cursor: pointer;
    font-family: 'Diatype-Light';
}
.article--info{
    gap: clamp(2rem, 6vw, 74px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-block: clamp(100px, 15vw, 288px) clamp(60px, 10vw, 172px) ;
}
.article--info .info-col{
    border-top: 1px solid var(--colorLime);
    padding-top: 23px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.info-col,
.info-header,
.info-header--title{
    font-size: 30px;
    line-height: 39px;
    letter-spacing: -1.5px;
    color: #838383;
    font-weight: 400;
}

.info-col{
    color: #fff;
}

.info-header--title{
    margin-top: 40px;
    color: #fff;
}
.info-header--title span{
    display: block;
}

.article-footer .title{
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    text-align: right;
    padding-top: 3px;  
    color: var(--colorLime);  
    font-family: 'Diatype-Light';
}
.article-footer .footer-btn{
    font-size: 30px;
    font-family: 'Diatype-Light';
    line-height: 100%;
    letter-spacing: -.2px;
    text-transform: lowercase;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 78px auto 150px;
    color: #838383; 
    border-bottom: 1px solid; 
    cursor: pointer;
    position: relative;
}

.article-footer .footer-btn.arrow::after{
    content: url(../assets/icons/caret.svg);
    position: absolute;
    left: 50%;
    bottom:0;
    width: 50px;
    -webkit-transform: translate(-50%, 150%) rotate(180deg);
        -ms-transform: translate(-50%, 150%) rotate(180deg);
            transform: translate(-50%, 150%) rotate(180deg);
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

.article-footer .footer-btn .icon{
    width: 45px;
    height: 45px;
    margin: 0 auto 8px;
    display: none;
}

.article-body p{
    text-wrap: pretty;
}

.box{
    border-radius: 50px;    
    padding: 123px 100px 80px 80px;
    font-size: 40px;
    letter-spacing: -2px;
    background-color: #f1f1f1;
    margin-bottom: 24px;
    color: #000;
    position: relative;
    overflow: hidden;
}

.case-body .box{
    line-height: 59px;
}

.box.light{
    background-color: #D9D9D9;
}
.box.grey{
    color: #fff;
    background-color: #585858;
}

.box--title{
    border-top: 1px solid;
    padding-top: 23px;
    margin-bottom: 86px;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -1.5px;
    font-family: 'Diatype-Light';
}
.box--title.lg{
    font-size: 50px;
    letter-spacing: -2.5px;
    font-family: 'Diatype-Regular';
    margin-bottom: 35px;
}


/* .box--title.lg + .para > p{
    font-family: 'Diatype-Light';
} */

.box--lead{
    font-size: 97px;
    line-height: 107px;
    letter-spacing: -4.85px;
    padding-bottom: 100px;
}

.box--lead.sm{
    padding-right: clamp(80px, 20vw, 350px);
}

.box--lead > a{
    text-decoration: underline;
}

.box--lead:has(+ .para-image){
    border-bottom: 1px solid;
    padding-bottom : 100px;
    margin-bottom: 53px;
}

.stat{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 101px;
    /* font-size: 40px;
    line-height: 59px;
    letter-spacing: -2px; */
    position: relative;
}

.stat .num{
    font-size: 300px;
    line-height: 100%;
    letter-spacing: -15px;
    margin-top: 80px;
}
.stat .result{
    border-radius: 100px;
    background-color: var(--colorLime);
    padding: 0;
    margin-block: 70px 86px;
    font-size: 40px;
    line-height: 100%;
    text-align: center;
    width: 278px;
    height: 82px;
    display: -ms-grid;
    display: grid;
    place-content: center;
    position: relative;
}

.stat .result::after{
    content: "";
    position: absolute;
    height: 54px;
    border-left: 2px solid #000;
    top: calc(100% + 16px);
    left: 50%;
}

.stat:not(:last-of-type)::after{
    content: "";
    width: 100%;
    position: absolute;
    left: 0; bottom: 0;
    border-top: 1px dashed  #000;
}

.para-image{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 100px;  
      
}


.para-image.img-right{
    /* display: flex; */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;    
}
.para-image > .text{
    /* flex: 0 0 66%;    */
}
.para-image > .image{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
            flex: 0 0 33%;
    /* height: 200px; */
    /* background-color: var(--colorLime);   */
}
.para-image > .image img{
    margin-inline: auto;
}

.para-image .image video{
    -webkit-transform: scale(1.25);
        -ms-transform: scale(1.25);
            transform: scale(1.25);
}

.para-image > .text h3 span{
    font-family: 'Diatype-Bold';
    color: var(--colorLime);
}
.para-image > .text span{
    color: var(--colorLime);
}

.para-image > .text  a{
    text-decoration: underline;
}

.para span.bold{
    font-family: 'Diatype-Bold';
}

.image-group{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}
.image-group .logo{
    width: 125px;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}
.image-group .arrow{
    width: 56px;
}
.image-group .map{
    width: 183px;
}

.image-group img{
    width: 100%;;
}

.para-image.border-p > .text{
    border-top:1px solid var(--colorLime);   
    border-bottom:1px solid var(--colorLime);   
    padding-block: 58px;
}
.para-header{
    font-size: 25px;
    letter-spacing: -1.25px;
    text-align: right;
    border-top: 1px solid;
    padding-top: 1rem;
    margin-top: 16px;
}

.para + .box--lead{
    margin-top: 100px;    
}

.para:has(+ .box-list){
    line-height: 47px;
}


.para:has(+ .box--lead){
    border-top:1px solid;
    padding-top: 38px;
}

.box-list{
    margin-top: 100px;
}
.box-list-item{
    gap: 34px;
    margin-bottom: 33px;
    --size: 112px;
}
.box-list-item--header{
    width: 556px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.box-list-item .index{
    font-size: 100px;
    border:1px solid;
    padding: 6px;
    display: -ms-grid;
    display: grid;
    place-content: center;   
    aspect-ratio: 1; 
    width: var(--size);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: var(--size);
    font-family: 'Diatype-Light';
}

.box-list-item h2{
    background-color: var(--colorLime);
    font-size: 50px;
    line-height: 42px;
    letter-spacing: -2.5px;
    padding: 14px 39px;
    height: var(--size);
    display: -ms-grid;
    display: grid;
    place-content: center;
    font-family: 'Diatype-Light';
}

.box-list-item--text{
    font-size: 50px;
    line-height: 58px;
    letter-spacing: -2.5px;
    padding-bottom: 58px;
    border-bottom: 2px solid #000;
}

.para-image h3{
    font-size: 75px;
    line-height: 82px;
    letter-spacing: -3.75px;
    margin-bottom: 85px;
}

.para-image h3 span{
    color: var(--colorLime);
}

.para-image:has(.text h3){
    padding-top: 38px;
    border-top:1px solid var(--colorLime);
}

.box .tab-image{display: none;}


@media screen and (max-width: 1580px) {
    .article--title{
        font-size: 100px;
        letter-spacing: -5px;
    }
    .image-group .logo {
        width: 100px;
    }
}
@media screen and (max-width: 1520px) {
    .box{
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -1.6px;
    }
    .case-body .box{
        line-height: 40px;
    }
    .box .article--headers{
        padding-inline: 2rem;
    }
    .para-image h3{
        font-size: 60px;
        line-height: 68px;
        letter-spacing: -3px;
        margin-bottom: 50px;
    }
    .box--title{
        margin-bottom: 2.5rem;
    }
    .box-list-item--text{
        font-size: 40px;
        line-height: 46px;
        letter-spacing: -2px;
    }
    .box-list-item h2{
        font-size: 40px;
        line-height: 35px;
        letter-spacing: -2px;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }
    .article-header.box{
        padding-block: 350px;
    }
}
@media screen and (max-width: 1420px) {
    .para-image{gap: 4rem;}
    .para-image.mob-col{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .box-list{
        margin-top: 60px;
    }
    .box-list-item{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        --size: 92px;
    }
    .box-list-item--text{
        border-bottom: none;
        padding-bottom: 0;    
    }
    .box-list-item .index{
        font-size: 80px;
    }
    .box--lead{
        font-size: 75px;
        line-height: 85px;
        letter-spacing: -3.75px;
    }
    .box--lead.sm{
        padding-right: 15%;
    }
    .stat .num{
        font-size: 200px;
        letter-spacing: -10px;
    }
    .stat{
        font-size: 30px;
        letter-spacing: -1.5px;
    }
    .para-image .image video{
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1);
    }
    .box .tab-image{
        display: block;
        /* width: 45%; */
        /* max-width: 250px; */
        margin-bottom: 10;
    }

    .box:has( .tab-image) .para-image.img-right .image{
        display: none;
    }
}
@media screen and (max-width: 1380px) {
    .article--title{
        font-size: 85px;
        letter-spacing: -4.2px;
        border-width: 10px;
    }
    .box .article--subtitle{
        font-size: 26px;
        letter-spacing: -1.3px;
    }
}
@media screen and (max-width: 1320px) {
    .article-footer .footer-btn{
        font-size: 26px;
        margin-block: 60px 100px
    }
}
@media screen and (max-width: 1180px) {
    .box{
        padding: 100px 80px 60px 60px;
        border-radius: 30px;
    }
}
@media screen and (max-width: 1120px) {
    .article--title{
        font-size: 70px;
        letter-spacing: -2px;
    }
    .box--lead{
        font-size: 60px;
        line-height: 70px;
        letter-spacing: -3px;
    }
    .box,
    .box-list-item--text,
    .box-list-item h2{
        font-size: 35px;
        line-height: 40px;
        letter-spacing: -1.75px;
    }
    .stat .num{
        font-size: 150px;
        letter-spacing: -8px;
    }
    .stat{
        font-size: 26px;
        letter-spacing: -1.3px;
        padding-bottom: 80px;
    }
    .stat .result{
        width: 220px;
        height: 70px;
        margin-block: 2rem 4rem;
    }
    .info-header--title{
        margin-top: 2rem;
    }
    .article--options li{
        font-size: 12px;
    }
    .box--title{
        margin-bottom: 40px;
    }
    .box--title h2{
        font-size: 24px;
        line-height: 40px;
    }
    .box--lead:has(+ .para-image){
        padding-bottom: 4rem;
        margin-bottom: 2.5rem;    
    }
    .article-footer .title{
        font-size: 22px;
        letter-spacing: -1.1px;
    }
}
@media screen and (max-width: 1020px) {
    .article-header{
        -ms-grid-columns: 1fr 160px;
        grid-template-columns: 1fr 160px;
    }
    .box .article--subtitle{
        font-size: 22px;
        letter-spacing: -1.1px;
    }
    .info-col.length{display: none;} 
    .article--title{
        font-size: 60px;
        line-height: 65px;
        letter-spacing: -3px;
        border-width: 6px;
        padding-bottom: 1rem;
    }
    .box-list-item{
        --size: 72px;
    }
    
    .box-list-item .index{
        font-size: 60px;
    }
    .box{
        padding-inline: 4rem;   
    }
    .box--title.lg{
        font-size: 40px;
        line-height: 45px;
    }
    .para-header{
        font-size: 18px;
        margin-top: 12px;
        padding-top: 12px;
        letter-spacing: -.9px;
    }
    .article-footer .footer-btn{
        font-size: 22px;
    }
    .article--title::before{
        width: 1.25rem;
        left: 1.25rem;
    }
    .article--title::after{
        width: 1.5rem;
        left: 5rem;
    }
}
@media screen and (max-width: 980px) {
    .box,
    .box-list-item--text,
    .box-list-item h2{
        font-size: 30px;    
        line-height: 35px;
        letter-spacing: -1.5px;
    }
    .case-body .box{
        line-height: 35px;
    }
    .para + .box--lead{
        margin-top: 60px;
    }
    .para:has(+ .box-list){
        line-height: 35px;
    }
    .box{
        padding: 80px 70px 50px 50px;
    }
    .info-col, .info-header, .info-header--title{
        font-size: 24px;
        line-height: 26px;
        letter-spacing: -1px;
    }
    .info-header--title{
        margin-top: 1.5rem;
    }
    .para-image h3{
        font-size: 45px;
        line-height: 50px;
        letter-spacing: -2.25px;
    }
    .para-image{
        gap: 4rem;
    }
    .para-image.border-p > .text{
        padding-block: 2rem;
    }
    .stat .result{
        margin-bottom: 50px;
    }
    .stat .result::after{
        height: 28px;
    }
}
@media screen and (max-width: 820px) {
    .box .article--headers{
        padding-inline: 1rem;
    }
    .article--title{
        font-size: 50px;
        line-height: 55px;
        letter-spacing: -1px;
    }
    .box-list-item{
        gap: 24px;
        margin-bottom: 28px;
    }
    .box-list-item--text{
        font-size: 30px;
        line-height: 35px;
        letter-spacing: -1.5px;
    }
    .box{
        padding-inline: 2rem;  
        margin-bottom: 1rem; 
        border-radius: 30px;
    }
    .box-list{
        margin-top: 3rem;
    }
    .box-list-item{
        --size: 62px;
    }
    .box,
    .box-list-item--text,
    .box-list-item h2{
        font-size: 24px;
        line-height: 30px;
    }
    .box-list-item h2{
        padding-inline: 20px;
    }
    .box-list-item .index{
        font-size: 50px;
    }
    .box--lead{
        font-size: 45px;
        line-height: 50px;
        letter-spacing: -2.25px;
        padding-bottom: 2rem; 
    }
    .para + .box--lead{
        margin-top: 3rem;
    }
    .para:has(+ .box--lead){
        padding-top: 1.5rem;
    }
    .stat .num{
        font-size: 100px;
        letter-spacing: -5px;
        margin-top: 60px;
    }
    .stat{
        font-size: 20px;
        letter-spacing: -1px;
        padding-bottom: 60px;
        line-height: 100%;
    }
    .stat .result{
        margin-block: 1rem 3rem;
        font-size: 30px;
        height: 48px;
        width: 170px;
    }
    .info-col, .info-header, .info-header--title{
        font-size: 20px;
        line-height: 21px;
    }
    .info-header--title{
        margin-top: 1rem;
    }
    .article--info .info-col{
        padding-top: 1rem;
    }
    .para-header{
        font-size: 14px;
        margin-top: 10px;
        padding-top: 10px;
        letter-spacing: -.7px;
    }
    .para-image.border-p > .text{
        padding-block: 1rem;
    }
    .box--title{
        margin-bottom: 30px;
        font-size: 22px;
        letter-spacing: -1.1px;
        padding-top: 12px;
    }
    .box--title h2{
        font-size: 20px;
        line-height: 35px;
    }
    .box--lead:has(+ .para-image){
        padding-bottom: 3rem;
        margin-bottom: 1.5rem;    
    }
    .article--title::before{
        width: 1rem;
        left: 1rem;
    }
    .article--title::after{
        width: 1rem;
        left: 3rem;
    }
}
@media screen and (max-width: 680px) {
    .para-image h3{
        font-size: 36px;
        line-height: 40px;
        letter-spacing: -1.8px;
        margin-bottom: 1.5rem;
    }
    .article--icon img{
        width: 80%;
        margin-inline: auto;
    }
    .para-image{
        gap: 2rem;
    }
    .para-image.mob-col{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .para-image.mob-col > .image{
        -webkit-box-flex: unset;
            -ms-flex: unset;
                flex: unset;
        justify-content: center;
        height: 200px;
        width: 100%;
    }
    .box{
        padding-block: 40px;
        font-size: 20px;
        line-height: 24px;
        border-radius: 20px;
    }
    .box-list{
        margin-top: 2rem;
    }
    .case-body .box{
        line-height: 24px;
    }
    .article-footer .footer-btn .icon{
        display: block;
    }
    .article-footer .footer-btn.arrow::after{display: none;}

}
@media screen and (max-width: 620px) {
    .article-header.box{
        padding-block: 0;
        width: calc(100% + 2 * var(--padding));
        margin-left: calc(-1 * var(--padding));
        aspect-ratio: 1.58;
        border-radius: 0;
    }
    .article-header{
        -ms-grid-columns: 1fr 120px;
        grid-template-columns: 1fr 120px;
    }
    .article--title{
        font-size: 35px;
        line-height: 37px;
        letter-spacing: -0.2px;
        border-width: 3px;
        padding-bottom: .5rem;
    }
    .box-list-item--header{
        width: 100%;
    }
    .article-footer .title{
        display: none;
    }
    .article--info .info-col.scroll{
        -webkit-box-ordinal-group:3;
            -ms-flex-order:2;
                order:2;
    }
    .article--options li{
        font-size: 9px;
        padding: 8px 13px 6px;
    }
    .article-footer .footer-btn{
        font-size: 15px;
        margin-block: 45px 60px;
    }
    .para-image > .image {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 20%;
                flex: 0 0 20%;
    }
    .article--icon::after{
        --size: 2rem;   
    }
    .stat .result{
        margin-bottom: 38px;
    }
    .stat .result::after{
        height: 16px;
    }
}
@media screen and (max-width: 520px) {
    .box .article--subtitle{
        font-size: 16px;
        letter-spacing: -0.78px;
        max-width: 240px;
        margin-inline: auto;
    }
    .article--icon img{
        width: 60%;
    }
    .article--info{
        margin-block: 26px 13px;
    }
    .article--options ul{
        gap: 8px;
    }
    .info-col,
    .info-header,
    .info-header--title{
        font-size: 14px;
        line-height: 15px;
        letter-spacing: -0.75px;
    }
    .info-header--title{
        margin-top: 3px;
    }
    .article--info .info-col{
        padding-top: 6px;
    }
    .box-list{
        margin-top: 1rem;
    }
    .box-list-item--text{
        font-size: 21px;
        line-height: 26px;
        letter-spacing: -1px;
    }
    .box-list-item{
        --size: 50px;
        gap: 18px;
        margin-bottom: 22px;
    }
    .box-list-item h2{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -1px;
        padding: 9px 12px;
    }
    .box-list-item .index{
        font-size: 37px;
    }
    .box{
        padding: 21px 23px 35px 20px;
        font-size: 16px; 
        line-height: 19px;  
        letter-spacing: -.8px;
        border-radius: 14px; 
        margin-bottom: 11px;
    }
    .box--title.lg{
        margin-bottom: 0;
    }
    .box--title.lg,
    .box--title{
        font-size: 16px;
        letter-spacing: -0.8px;
        padding-top: 0;
    }

    .case-body .box{
        line-height: 19px;  
    }
    .box--lead{
        font-size: 30px;
        line-height: 31px;
        letter-spacing: -1.5px;
    }
    .para + .box--lead{
        margin-top: 2rem;
        padding-right: 10px;
        padding-bottom: 1rem;
    }
    .para:has(+ .box--lead){
        padding-top: 9px;
    }
    .para:has(+ .box-list){
        line-height: 20px;
    }
    .para-image h3{
        font-size: 25px;
        line-height: 30px;
        letter-spacing: -1.25px;
        margin-bottom: 1rem;
    }
    .para-image:has(.text h3){
        padding-top: 22px;
    }
    .stat .num{
        font-size: 70px;
        letter-spacing: -3.5px;
        margin-top: 43px;
    }
    .stat{
        font-size: 15px;
        letter-spacing: -0.75px;
        padding-bottom: 42px;
    }
    .stat:not(:last-of-type)::after,
    .stat:not(:last-of-type)::before{
        content: "";
        border:none;
        width: 4px;
        aspect-ratio: 1;
        background-color: #000;
        bottom: -2px;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        position: absolute;
    }
    .stat:not(:last-of-type)::before{
        left: 0;
    }
    .stat:not(:last-of-type)::after{
        right: 0;
        left: unset
    }
    .stat:not(:last-of-type){
        border-bottom: 1px dashed #000;
    }
    .para-header{
        font-size: 10px;
        margin-top: 6px;
        padding-top: 6px;
        letter-spacing: -.5px;
    }
    .para-image.border-p > .text{
        padding-block: 11px;
    }
    .box--title{
        margin-bottom: 13px;
    }
    .box--title h2{
        font-size: 16px;
        line-height: 30px;
    }
    .box--lead:has(+ .para-image){
        padding-bottom: 36px;
        margin-bottom: 13px;    
    }
    .article--title::before{
        width: .5rem;
        left: .75rem;
    }
    .article--title::after{
        width: .5rem;
        left: 2rem;
    }
}

@media screen and (max-width: 420px) {
    .box .article--subtitle{
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -.6px;
    }
}

@media screen and (max-width: 390px) {
    .article--title{
        font-size: 30px;
        line-height: 32px;
    }
    .para-image{
        gap: 1rem;
    }
}