h1{
    font-size: 30px;
    line-height: 1.6;
}
.article-title{
text-align: center;
}

footer{
    margin-top: 40px;
}
.article-block{
    padding: 40px 20px;
}
.article-block--date-posted h4{
    margin: 0;
}
.article-block--info{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.article-block--info *{
    margin: 0;
}
.article-block--info h3{
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 25px;
}
.article-block--info h4{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}
.date-posted{
    line-height: 2.5;
}
/* .article-block--info > div:not(:last-child){
    margin-bottom: 50px;
} */
.related-product{
    display: block;
    color: #10218b;
    text-decoration: none;
}
.related-product--name{
    margin-top: 25px;
    font-size: 14px;
}
.article-block--related-products,
.article-block--related-articles{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.article-block--related-products h3,
.article-block--related-articles h3{
    grid-column: span 3;
}
.article-block--related-products:empty,
.article-block--related-articles:empty {
    display: none;
}
.back-button{
    margin-bottom: 40px;
    padding-inline: 20px;
}
.back-button--button{
    background-color: rgba(144,148,156,1);
    padding: 8px 20px 8px 35px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all .3s;
}
.back-button--button:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
    position: absolute;
    left: 15px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%) rotate(180deg) scale(1);
    transform: translateY(-50%) rotate(180deg) scale(1);
    -webkit-transform-origin: center;
    transform-origin: center;
}
.back-button--button:hover{
    background-color: rgb(175, 177, 181);
}
.article-body p:first-of-type em{
    width: 70%;
    display: block;
    margin-bottom: 60px;
}
.article-body sup {
    top: -.5em!important;
}
.article-body > p,
.article-body > div{
    line-height: 1.8;
}
.article-body img{
    max-width: 100%!important;
    width: fit-content;
}
.article-body--featured-image{
    margin-bottom: 40px;
}
.case-study-pdf, .case-study-full{
    display: flex;
    align-items: center;
    margin-top: 50px;
    text-decoration: none;
    color: #10218b;
}
.case-study-pdf:hover,
.case-study-full:hover{
    text-decoration: underline;
}
.case-study-pdf--icon{
    width: 20px;
    margin-right: 10px;
}
.case-study-pdf p{
    line-height: unset;
    margin: 0;
}
.case-study-full{
    position: relative;
    width: fit-content;
}
.case-study-full::after{
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #10218b;
    position: absolute;
    right: -20px;
    top: 44%;
    bottom: auto;
    -webkit-transform: translateY(-50%) rotate(0deg) scale(1);
    transform: translateY(-50%) rotate(0deg) scale(1);
    -webkit-transform-origin: center;
    transform-origin: center;
}
font{
    font-size: 16px!important;
}

/* update */
table{
    width: 100%;
    margin-block: 20px;
}
tbody, td, tfoot, th, thead, tr {
    border-width: 1px;
    padding: 7px;
}

@media screen and (max-width: 1199px) {
    .article-block--info {
        margin-top: 100px;
    }
}

@media screen and (min-width: 768px) {
    footer{
        margin-top: 0;
        padding-top: 40px;
    }
    
}

@media screen and (min-width: 1024px) {
    h1{
        font-size: 28px;
        line-height: unset;
    }
    .back-button{
        padding-inline: unset;
    }
}

@media screen and (min-width: 1200px) {
    .article-block{
        display: flex;
        padding: 40px 0;
        justify-content: space-between;
    }
    .article-block--article{
        width: 68%;
    }
    .article-block--info{
        width: 28%;
    }
    
    .related-product--image {
        width: 60%;
    }
}

@media screen and (min-width: 1280px) {
    
}