.news_img {
    margin-top: 1.5rem !important;
    text-align: center;
}
.news-post-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.news-post-content p {
    font-size: 19px;
    line-height: 26px;
    color: var(--primary-blue);
}
.news-post-content p strong {
    font-weight: 700;
}
.news-post-content ul, .news-post-content ol {    
    padding-left: 30px;
    color: var(--primary-blue);
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 19px;
    line-height: 26px;
}
.news-post-content ul li strong, .news-post-content ol li strong {
    font-weight: 700;
}
.news-post-content ul {
    list-style: disc;
}
.news-post-content ol {
    list-style: decimal;
}
.news-post-content ul ul {
    padding-top: 15px;
}
.news-post-content h2 {
    font-size: 29px;
    line-height: 33px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-top: 10px;
}
.news-post-content h3 {
    font-size: 25px;
    line-height: 33px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-top: 10px;
}
.news-post-content p:has(img) {
    margin-top: 20px;
}

.news-post-content .three_col_row {
    display: flex;
    gap: 20px;
}
.news-post-content .three_col_row .one_by_three_col {
    width: 30%;
}

.news-post-content .aligncenter {
    display: block;
    margin: 0 auto;
}

@media(max-width:767px) {
    .news-post-content .three_col_row {
        flex-direction: column;
    }
    .news-post-content .three_col_row .one_by_three_col {
        width: 100%;
    }
}